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
182bd869
Commit
182bd869
authored
Feb 01, 2017
by
Kostyleva D.A
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
In AEvent class the point where front fit crosses zero level (fTimeFront) is added
parent
2553b20f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
1 deletion
+23
-1
analyse.cpp
convertRawToAnalyzed/analyse.cpp
+1
-1
AEvent.cpp
dataClasses/AEvent.cpp
+21
-0
AEvent.h
dataClasses/AEvent.h
+1
-0
No files found.
convertRawToAnalyzed/analyse.cpp
View file @
182bd869
...
@@ -86,7 +86,7 @@ int main(int argc, char* argv[])
...
@@ -86,7 +86,7 @@ int main(int argc, char* argv[])
for
(
Long64_t
i
=
0
;
i
<
nentries
;
i
++
)
{
for
(
Long64_t
i
=
0
;
i
<
nentries
;
i
++
)
{
tr
->
GetEntry
(
i
);
tr
->
GetEntry
(
i
);
//cout<<"
i
"<<i<<endl;
//cout<<"
Event
"<<i<<endl;
for
(
Int_t
j
=
0
;
j
<
noBranches
;
j
++
)
{
for
(
Int_t
j
=
0
;
j
<
noBranches
;
j
++
)
{
wevent
[
j
]
->
Reset
();
wevent
[
j
]
->
Reset
();
wevent
[
j
]
->
ProcessEvent
();
//here all the analysis is going on so far
wevent
[
j
]
->
ProcessEvent
();
//here all the analysis is going on so far
...
...
dataClasses/AEvent.cpp
View file @
182bd869
...
@@ -81,6 +81,7 @@ void AEvent::Reset() {
...
@@ -81,6 +81,7 @@ void AEvent::Reset() {
fZeroLevel
=
0.
;
fZeroLevel
=
0.
;
fChargeCFD
=
-
10.
;
fChargeCFD
=
-
10.
;
fChargeLED
=
-
10.
;
fChargeLED
=
-
10.
;
fTimeFront
=
-
100.
;
}
}
void
AEvent
::
SetInputEvent
(
RawEvent
**
event
)
{
void
AEvent
::
SetInputEvent
(
RawEvent
**
event
)
{
...
@@ -173,6 +174,7 @@ void AEvent::FindFrontProperties() {
...
@@ -173,6 +174,7 @@ void AEvent::FindFrontProperties() {
const
Double_t
timeStep
=
0.05
;
//in ns
const
Double_t
timeStep
=
0.05
;
//in ns
Double_t
time
=
0
;
//in ns
Double_t
time
=
0
;
//in ns
Double_t
mytime
=
0.
;
if
(
!
fGraphSignal
)
{
if
(
!
fGraphSignal
)
{
Warning
(
"AEvent::FindFrontProperties"
,
"Graph was not set"
);
Warning
(
"AEvent::FindFrontProperties"
,
"Graph was not set"
);
...
@@ -196,9 +198,28 @@ void AEvent::FindFrontProperties() {
...
@@ -196,9 +198,28 @@ void AEvent::FindFrontProperties() {
fit1
->
SetRange
(
fTime10
,
fTime90
);
fit1
->
SetRange
(
fTime10
,
fTime90
);
fGraphSignal
->
Fit
(
fit1
,
"RQN"
,
"goff"
);
fGraphSignal
->
Fit
(
fit1
,
"RQN"
,
"goff"
);
fEdgeSlope
=
fit1
->
GetParameter
(
1
);
fEdgeSlope
=
fit1
->
GetParameter
(
1
);
fEdgeXi
=
fit1
->
GetChisquare
();
fEdgeXi
=
fit1
->
GetChisquare
();
//adding point where fit function crosses zero
Double_t
a
=
0
,
b
=
0
;
TF1
*
line
=
new
TF1
(
"line"
,
"[1]*x + [0]"
);
a
=
fit1
->
GetParameter
(
1
);
b
=
fit1
->
GetParameter
(
0
);
line
->
SetParameter
(
0
,
b
);
line
->
SetParameter
(
1
,
a
);
//cout<<"par 0 "<<b<<endl;
//cout<<"par 1 "<<a<<endl;
if
(
a
!=
0.
&&
b
!=
0.
)
{
//in case of fit data is empty
while
(
line
->
Eval
(
mytime
)
<=
0
&&
mytime
<=
200.
)
{
//cout<< "mytime "<<mytime<<endl;
fTimeFront
=
mytime
;
mytime
=
mytime
+
timeStep
;
}
}
delete
fit1
;
delete
fit1
;
}
}
...
...
dataClasses/AEvent.h
View file @
182bd869
...
@@ -50,6 +50,7 @@ private:
...
@@ -50,6 +50,7 @@ private:
Double_t
fChargeLED
;
//charge of the signal in Coulomb
Double_t
fChargeLED
;
//charge of the signal in Coulomb
Double_t
fTimeLED
;
//time of LED threshold crossing
Double_t
fTimeLED
;
//time of LED threshold crossing
Double_t
fTimeFront
;
//time of front fit crossing zero level
TGraph
*
fGraphSignal
;
TGraph
*
fGraphSignal
;
TGraph
*
fGraphCFD
;
TGraph
*
fGraphCFD
;
...
...
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