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
Compare Revisions
master...revert-ce93b2dc
Source
revert-ce93b2dc
Select Git revision
...
Target
master
Select Git revision
Compare
Commits (1)
Revert "fuction names in RawEvent changed"
· 035d54d9
Vratislav Chudoba
authored
Jan 11, 2017
This reverts commit
ce93b2dc
035d54d9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
RawEvent.cpp
dataClasses/RawEvent.cpp
+2
-2
RawEvent.h
dataClasses/RawEvent.h
+2
-2
No files found.
dataClasses/RawEvent.cpp
View file @
035d54d9
...
@@ -65,11 +65,11 @@ void RawEvent::SetTime(Double_t t, Int_t i) {
...
@@ -65,11 +65,11 @@ void RawEvent::SetTime(Double_t t, Int_t i) {
return
;
return
;
}
}
double
RawEvent
::
Get
One
Time
(
Int_t
i
)
{
double
RawEvent
::
GetTime
(
Int_t
i
)
{
return
fTime
[
i
];
return
fTime
[
i
];
}
}
double
RawEvent
::
Get
One
Amp
(
Int_t
i
)
{
double
RawEvent
::
GetAmp
(
Int_t
i
)
{
return
fAmp
[
i
];
return
fAmp
[
i
];
}
}
//void RawEvent::SetGraphs() {
//void RawEvent::SetGraphs() {
...
...
dataClasses/RawEvent.h
View file @
035d54d9
...
@@ -62,9 +62,9 @@ public:
...
@@ -62,9 +62,9 @@ public:
void
PrintTime
(
Int_t
i
);
void
PrintTime
(
Int_t
i
);
double
Get
One
Time
(
Int_t
i
);
double
GetTime
(
Int_t
i
);
double
Get
One
Amp
(
Int_t
i
);
double
GetAmp
(
Int_t
i
);
// void InvertAmp(Double_t a, Int_t i);
// void InvertAmp(Double_t a, Int_t i);
//Inverts the amplitudes i.e. makes from negative singals
//Inverts the amplitudes i.e. makes from negative singals
...
...