Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
NeuRad_tests
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vratislav Chudoba
NeuRad_tests
Commits
d5758504
Commit
d5758504
authored
Jan 11, 2017
by
Muzalevsky I.A
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
functions GetTime and GetAmp in class RawEvent added
parent
e3cb29b2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
RawEvent.cpp
dataClasses/RawEvent.cpp
+7
-0
RawEvent.h
dataClasses/RawEvent.h
+4
-0
No files found.
dataClasses/RawEvent.cpp
View file @
d5758504
...
...
@@ -65,6 +65,13 @@ void RawEvent::SetTime(Double_t t, Int_t i) {
return
;
}
double
RawEvent
::
GetTime
(
Int_t
i
)
{
return
fTime
[
i
];
}
double
RawEvent
::
GetAmp
(
Int_t
i
)
{
return
fAmp
[
i
];
}
//void RawEvent::SetGraphs() {
//
// gAmp->Set(fNPoints);
...
...
dataClasses/RawEvent.h
View file @
d5758504
...
...
@@ -62,6 +62,10 @@ public:
void
PrintTime
(
Int_t
i
);
double
GetTime
(
Int_t
i
);
double
GetAmp
(
Int_t
i
);
// void InvertAmp(Double_t a, Int_t i);
//Inverts the amplitudes i.e. makes from negative singals
//posititve signals and vise versa.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment