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
82305cf5
Commit
82305cf5
authored
Feb 04, 2017
by
Muzalevsky I.A
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://er.jinr.ru:90/vratislav.chudoba/NeuRad_tests
Conflicts: macros/histCorr.C
parents
3a8df41e
5ebbb653
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
243 additions
and
17 deletions
+243
-17
analyse.cpp
convertRawToAnalyzed/analyse.cpp
+1
-1
LOGBOOK.md
data/rawDataDSR4/LOGBOOK.md
+16
-14
AEvent.cpp
dataClasses/AEvent.cpp
+44
-0
AEvent.h
dataClasses/AEvent.h
+6
-0
histCorr.C
macros/histCorr.C
+0
-2
histCorrNew.C
macros/histCorrNew.C
+176
-0
No files found.
convertRawToAnalyzed/analyse.cpp
View file @
82305cf5
...
@@ -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
...
...
data/rawDataDSR4/LOGBOOK.md
View file @
82305cf5
...
@@ -2,20 +2,22 @@ Raw data. Both in binary and root format.
...
@@ -2,20 +2,22 @@ Raw data. Both in binary and root format.
Logbook
Logbook
PMT amplification: HV = -900 V, threshold ~ -10 mV
File name | Num of events | Comment
File name | Num of events | Comment
------------------------|---------------|---------------------------------------------------------------------|
------------------------|---------------|---------------------------------------------------------------------
-----------------------------------------------
|
NeuRad_test_071216_1.dat| 500 | collimated gamma source; ch0 and ch1 have coincidence; trigger ch0 |
NeuRad_test_071216_1.dat| 500 | collimated gamma source; ch0 and ch1 have coincidence; trigger ch0
; 2 PMT H9500; periphery PMT pixels
|
NeuRad_test_071216_2.dat| 5000 | collimated gamma source; ch0 and ch1 have coincidence; trigger ch0 |
NeuRad_test_071216_2.dat| 5000 | collimated gamma source; ch0 and ch1 have coincidence; trigger ch0
; 2 PMT H9500; periphery PMT pixels
|
NeuRad_test_071216_3.dat| 1039 | n
eutron source Cf
|
NeuRad_test_071216_3.dat| 1039 | n
on-collimated neutron source Cf; 2 PMT H9500; periphery PMT pixels
|
NeuRad_test_071216_4.dat| 2000 | source 60Co; trigger ch0; ch0-front, ch1,ch2,ch3 - back
|
NeuRad_test_071216_4.dat| 2000 | source 60Co; trigger ch0; ch0-front, ch1,ch2,ch3 - back
; internal PMT pixels
|
NeuRad_test_071216_5.dat| 2000 | source 60Co; trigger ch0; ch0-front, ch1,ch2,ch3 - back
|
NeuRad_test_071216_5.dat| 2000 | source 60Co; trigger ch0; ch0-front, ch1,ch2,ch3 - back
; internal PMT pixels
|
NeuRad_test_071216_6.dat| 2000 | source 60Co; trigger ch0; ch0-front, ch1,ch2,ch3 - back
|
NeuRad_test_071216_6.dat| 2000 | source 60Co; trigger ch0; ch0-front, ch1,ch2,ch3 - back
; internal PMT pixels
|
NeuRad_test_071216_7.dat| 2000 | source 60Co; trigger ch0; ch0-front, ch1,ch2,ch3 - back
|
NeuRad_test_071216_7.dat| 2000 | source 60Co; trigger ch0; ch0-front, ch1,ch2,ch3 - back
; internal PMT pixels
|
------------------------|---------------|---------------------------------------------------------------------|
------------------------|---------------|---------------------------------------------------------------------
-----------------------------------------------
|
Change of PMT amplification: increasing
voltage up to 1100 mV, threshold
25 mV
Change of PMT amplification: increasing
HV up to -1100 V, threshold -
25 mV
------------------------|---------------|---------------------------------------------------------------------|
------------------------|---------------|---------------------------------------------------------------------
-----------------------------------------------
|
NeuRad_test_071216_8.dat| 10000 | source 60Co; trigger ch0; ch0-front, ch1,ch2,ch3 - back
|
NeuRad_test_071216_8.dat| 10000 | source 60Co; trigger ch0; ch0-front, ch1,ch2,ch3 - back
; internal PMT pixels !!!!
|
NeuRad_test_081216_1.dat| 2204 | trigger ch2
?????
|
NeuRad_test_081216_1.dat| 2204 | trigger ch2
; internal PMT pixels ?????
|
NeuRad_test_081216_2.dat| 10000 | collimated gamma source; two channels only: ch0 and ch1
|
NeuRad_test_081216_2.dat| 10000 | collimated gamma source; two channels only: ch0 and ch1
; changed PMT H9500 -ch0, H10966 - ch1 ; internal PMT pixels
|
dataClasses/AEvent.cpp
View file @
82305cf5
...
@@ -57,6 +57,7 @@ void AEvent::ProcessEvent() {
...
@@ -57,6 +57,7 @@ void AEvent::ProcessEvent() {
SetCFD
();
SetCFD
();
SetChargeCFD
();
SetChargeCFD
();
SetChargeLED
();
SetChargeLED
();
SetChargeTF
();
return
;
return
;
...
@@ -81,6 +82,7 @@ void AEvent::Reset() {
...
@@ -81,6 +82,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 +175,7 @@ void AEvent::FindFrontProperties() {
...
@@ -173,6 +175,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 +199,28 @@ void AEvent::FindFrontProperties() {
...
@@ -196,9 +199,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
;
}
}
...
@@ -276,6 +298,28 @@ void AEvent::SetChargeLED(Int_t tmin, Int_t tmax) { // tmin = -3, tmax = 17
...
@@ -276,6 +298,28 @@ void AEvent::SetChargeLED(Int_t tmin, Int_t tmax) { // tmin = -3, tmax = 17
}
}
void
AEvent
::
SetChargeTF
(
Int_t
tmin
,
Int_t
tmax
)
{
// tmin = -3, tmax = 17
Double_t
integral
=
0.
;
//voltage
Double_t
time_sig
=
0
;
//approximate signal duration in seconds
const
Double_t
res
=
50.
;
//resistance 50 Om
time_sig
=
(
double
)(
-
tmin
+
tmax
)
*
(
1e-9
);
Int_t
imin
=
0
,
imax
=
0
;
Int_t
i
=
0
;
while
(
fTime
[
i
]
<
(
fTimeFront
+
tmin
)
&&
(
i
<
(
fGraphSignal
->
GetN
()
-
1
))
)
{
imin
=
i
;
i
++
;
}
// i = 0;
while
(
fTime
[
i
]
<
(
fTimeFront
+
tmax
)
&&
(
i
<
(
fGraphSignal
->
GetN
()
-
1
))
)
{
imax
=
i
;
i
++
;
}
integral
=
fGraphSignal
->
Integral
(
imin
,
imax
);
fChargeTF
=
integral
*
time_sig
/
res
;
return
;
}
Double_t
AEvent
::
GetfCFD
()
{
Double_t
AEvent
::
GetfCFD
()
{
return
fTimeCFD
;
return
fTimeCFD
;
}
}
...
...
dataClasses/AEvent.h
View file @
82305cf5
...
@@ -48,8 +48,10 @@ private:
...
@@ -48,8 +48,10 @@ private:
Double_t
fTimeCFD
;
//zero-crossing time
Double_t
fTimeCFD
;
//zero-crossing time
Double_t
fChargeCFD
;
//!
Double_t
fChargeCFD
;
//!
Double_t
fChargeLED
;
//charge of the signal in Coulomb
Double_t
fChargeLED
;
//charge of the signal in Coulomb
Double_t
fChargeTF
;
//
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
;
...
@@ -127,6 +129,10 @@ public:
...
@@ -127,6 +129,10 @@ public:
void
SetChargeLED
(
Int_t
tmin
=
-
3
,
Int_t
tmax
=
17
);
void
SetChargeLED
(
Int_t
tmin
=
-
3
,
Int_t
tmax
=
17
);
void
SetChargeTF
(
Int_t
tmin
=
-
3
,
Int_t
tmax
=
17
);
//calculates charge of the signal (i.e. its integral
//in range of (tmin,tmax) in ns)
//time of front fit crossing zero is taken as a start point
//void SetLED(Double_t threshold = 0.001);
//void SetLED(Double_t threshold = 0.001);
...
...
macros/histCorr.C
View file @
82305cf5
...
@@ -19,8 +19,6 @@ void histCorr(
...
@@ -19,8 +19,6 @@ void histCorr(
const
Bool_t
can3
=
0
,
const
Bool_t
can4
=
0
,
const
Bool_t
can3
=
0
,
const
Bool_t
can4
=
0
,
const
Bool_t
can5
=
0
,
const
Bool_t
can6
=
0
)
// tLEd and CFD for colollinated and NONcollimated data
const
Bool_t
can5
=
0
,
const
Bool_t
can6
=
0
)
// tLEd and CFD for colollinated and NONcollimated data
{
{
Double_t
rMin
[
4
];
Double_t
rMin
[
4
];
Double_t
rMax
[
4
];
Double_t
rMax
[
4
];
...
...
macros/histCorrNew.C
0 → 100644
View file @
82305cf5
#include "TH2F.h"
#include "TH3F.h"
#include "TStyle.h"
void
histCorrNew
(
const
char
*
filename
=
"analysis_07_8.root"
,
// const char *foldername = "report",
const
char
*
foldername
=
"8_2"
,
// const char *ext = ".eps",
const
char
*
ext
=
".gif"
,
const
Bool_t
can1
=
0
,
const
Bool_t
can2
=
0
,
const
Bool_t
can3
=
1
,
const
Bool_t
can4
=
0
,
const
Bool_t
can5
=
0
,
const
Bool_t
can6
=
0
)
{
using
std
::
cout
;
using
std
::
endl
;
gSystem
->
Load
(
"../libData.so"
);
TFile
*
f
=
new
TFile
(
Form
(
"../data/dataDSR4/%s"
,
filename
));
TTree
*
t
=
(
TTree
*
)
f
->
Get
(
"atree"
);
//gStyle->SetCanvasDefH(900);
//gStyle->SetCanvasDefW(1500);
if
(
can1
){
TCanvas
*
c1
=
new
TCanvas
(
"c1"
,
"Correlation pictures for collimated data: Integrals and amplitudes"
);
c1
->
Divide
(
2
,
2
);
c1
->
cd
(
1
);
TH2F
*
h1
=
new
TH2F
(
"h1"
,
"front time tau vs charge TF 0 "
,
200
,
0
,
0.5e-9
,
100
,
5
,
15
);
t
->
Draw
(
" Ach0.fTimeFront - Ach1.fTimeFront : Ach0.fChargeTF >> h1"
,
""
,
"col"
);
//x
h1
->
GetXaxis
()
->
SetTitle
(
"Charge [C]"
);
h1
->
GetXaxis
()
->
CenterTitle
();
//y
h1
->
GetYaxis
()
->
SetTitle
(
"tau_TF [ns]"
);
h1
->
GetYaxis
()
->
CenterTitle
();
c1
->
Update
();
c1
->
cd
(
2
);
TH2F
*
h2
=
new
TH2F
(
"h2"
,
"front time tau vs charge TF 1 "
,
200
,
0
,
0.5e-9
,
200
,
5
,
15
);
t
->
Draw
(
" Ach0.fTimeFront - Ach1.fTimeFront : Ach1.fChargeTF >> h2"
,
""
,
"col"
);
//x
h2
->
GetXaxis
()
->
SetTitle
(
"Charge [C]"
);
h2
->
GetXaxis
()
->
CenterTitle
();
//y
h2
->
GetYaxis
()
->
SetTitle
(
"tau_TF [V]"
);
h2
->
GetYaxis
()
->
CenterTitle
();
c1
->
Update
();
c1
->
cd
(
3
);
TH2F
*
h3
=
new
TH2F
(
"h3"
,
"charge TF 1 vs charge TF 0"
,
200
,
0
,
0.5e-9
,
200
,
0
,
0.5e-9
);
t
->
Draw
(
" Ach0.fChargeTF : Ach1.fChargeTF >> h3"
,
""
,
"col"
);
//x
h3
->
GetXaxis
()
->
SetTitle
(
"Charge_0 [C]"
);
h3
->
GetXaxis
()
->
CenterTitle
();
//y
h3
->
GetYaxis
()
->
SetTitle
(
"Charge_1 [C]"
);
h3
->
GetYaxis
()
->
CenterTitle
();
c1
->
Update
();
// c1->Print(Form("../macros/picsDRS4/file%s/time_front_corr1%s", foldername, ext));
}
if
(
can2
)
{
TCanvas
*
c2
=
new
TCanvas
(
"c2"
,
"Correlation pictures for collimated data: Integrals and amplitudes"
);
c2
->
Divide
(
2
,
2
);
c2
->
cd
(
1
);
TH2F
*
h4
=
new
TH2F
(
"h4"
,
"front time tau vs amplitude 0"
,
200
,
0
,
0
.
5
,
200
,
5
,
15
);
t
->
Draw
(
"Ach0.fTimeFront - Ach1.fTimeFront : Ach0.fAmpMax >> h4"
,
""
,
"col"
);
//x
h4
->
GetXaxis
()
->
SetTitle
(
"Max_ampl_{0} [V]"
);
h4
->
GetXaxis
()
->
CenterTitle
();
//y
h4
->
GetYaxis
()
->
SetTitle
(
"tau_TF"
);
h4
->
GetYaxis
()
->
CenterTitle
();
c2
->
cd
(
2
);
TH2F
*
h5
=
new
TH2F
(
"h5"
,
"front time tau vs amplitude 1"
,
200
,
0
,
0
.
5
,
200
,
5
,
15
);
t
->
Draw
(
"Ach0.fTimeFront - Ach1.fTimeFront : Ach1.fAmpMax >> h5"
,
""
,
"col"
);
//x
h5
->
GetXaxis
()
->
SetTitle
(
"Max_ampl_{1} [V]"
);
h5
->
GetXaxis
()
->
CenterTitle
();
//y
h5
->
GetYaxis
()
->
SetTitle
(
"tau_TF"
);
h5
->
GetYaxis
()
->
CenterTitle
();
c2
->
Update
();
c2
->
cd
(
3
);
TH2F
*
h6
=
new
TH2F
(
"h6"
,
"amplitude 0 vs amplitude 1"
,
200
,
0
,
0
.
1
,
200
,
0
,
0
.
2
);
t
->
Draw
(
"Ach0.fAmpMax : Ach1.fAmpMax >> h6"
,
""
,
"col"
);
//x
h6
->
GetXaxis
()
->
SetTitle
(
"Max_ampl_{1} [V]"
);
h6
->
GetXaxis
()
->
CenterTitle
();
//y
h6
->
GetYaxis
()
->
SetTitle
(
"Max_ampl_{0} [V]"
);
h6
->
GetYaxis
()
->
CenterTitle
();
// c2->Print(Form("../macros/picsDRS4/file%s/time_front_corr2%s", foldername, ext));
}
if
(
can3
)
{
TCanvas
*
c3
=
new
TCanvas
(
"c3"
,
"Correlation pictures for collimated data: time difference"
);
c3
->
Divide
(
2
,
2
);
c3
->
cd
(
1
);
TH1F
*
h10
=
new
TH1F
(
"h10"
,
"delta t (front edge fit)"
,
100
,
-
5
,
25
);
t
->
Draw
(
"Ach0.fTimeFront - Ach1.fTimeFront >> h10"
,
"Ach0.fTimeFront>100. && Ach0.fTimeFront < 150 && Ach1.fTimeFront>100 && Ach1.fTimeFront < 150"
,
""
);
h10
->
Fit
(
"gaus"
,
""
,
""
,
-
5
,
5
);
gStyle
->
SetOptFit
();
h10
->
GetXaxis
()
->
SetTitle
(
"delta t [ns]"
);
h10
->
GetXaxis
()
->
CenterTitle
();
c3
->
cd
(
2
);
TH1F
*
h7
=
new
TH1F
(
"h7"
,
"delta t (front edge fit) with edge slope correction"
,
100
,
-
5
,
25
);
// t->Draw("Ach0.fTimeFront - Ach1.fTimeFront >> h7",
// "Ach0.fTimeFront>100. && Ach0.fTimeFront < 150 && Ach1.fTimeFront>100 && Ach1.fTimeFront < 150 && Ach0.fEdgeSlope > 0.01 && Ach1.fEdgeSlope > 0.01","");
t
->
Draw
(
"Ach0.fTimeFront - Ach1.fTimeFront >> h7"
,
"Ach0.fTimeFront>100. && Ach0.fTimeFront < 150 && Ach1.fTimeFront>100 && Ach1.fTimeFront < 150 && Ach0.fEdgeSlope > 0.005 && Ach1.fEdgeSlope > 0.001"
,
""
);
h7
->
Fit
(
"gaus"
,
""
,
""
,
-
5
,
5
);
gStyle
->
SetOptFit
();
h7
->
GetXaxis
()
->
SetTitle
(
"delta t [ns]"
);
h7
->
GetXaxis
()
->
CenterTitle
();
c3
->
cd
(
3
);
TH1F
*
h8
=
new
TH1F
(
"h8"
,
"delta t (front edge fit) with charge correction"
,
100
,
-
5
,
25
);
t
->
Draw
(
"Ach0.fTimeFront - Ach1.fTimeFront >> h8"
,
"Ach0.fTimeFront>100. && Ach0.fTimeFront < 150 && Ach1.fTimeFront>100 && Ach1.fTimeFront < 150 && Ach0.fChargeTF > 0.05e-9 && Ach1.fChargeTF > 0.025e-9"
,
""
);
h8
->
Fit
(
"gaus"
,
""
,
""
,
-
5
,
5
);
gStyle
->
SetOptFit
();
h8
->
GetXaxis
()
->
SetTitle
(
"delta t [ns]"
);
h8
->
GetXaxis
()
->
CenterTitle
();
c3
->
cd
(
4
);
TH1F
*
h9
=
new
TH1F
(
"h9"
,
"delta t (front edge fit) with rise time correction"
,
100
,
-
5
,
25
);
t
->
Draw
(
"Ach0.fTimeFront - Ach1.fTimeFront >> h9"
,
"Ach0.fTimeFront> 100 && Ach0.fTimeFront<150 && Ach1.fTimeFront> 100 && Ach1.fTimeFront<150 && (Ach0.fTime90 - Ach0.fTime10) > 1.5 && (Ach0.fTime90 - Ach0.fTime10)<3 && (Ach1.fTime90 - Ach1.fTime10) > 1.5 && (Ach1.fTime90 - Ach1.fTime10)<3"
,
""
);
h9
->
Fit
(
"gaus"
,
""
,
""
,
-
5
,
5
);
gStyle
->
SetOptFit
();
h9
->
GetXaxis
()
->
SetTitle
(
"delta t [ns]"
);
h9
->
GetXaxis
()
->
CenterTitle
();
// c3->Print(Form("../macros/picsDRS4/file%s/time_front_corr3%s", foldername, ext));
}
if
(
can4
)
{
TCanvas
*
c4
=
new
TCanvas
(
"c4"
,
"Correlation pictures for collimated data: time difference"
);
c4
->
Divide
(
2
,
2
);
c4
->
cd
(
1
);
TH1F
*
h11
=
new
TH1F
(
"h11"
,
"rise time"
,
100
,
0
,
5
);
t
->
Draw
(
"Ach0.fTime90 - Ach0.fTime10 >> h11"
,
""
,
""
);
//gStyle->SetLineColor(kRed);
c4
->
cd
(
2
);
TH1F
*
h12
=
new
TH1F
(
"h12"
,
"rise time"
,
100
,
0
,
5
);
t
->
Draw
(
"Ach1.fTime90 - Ach1.fTime10 >> h12"
,
""
,
""
);
// h10->Fit("gaus", "","",7,14);
// gStyle->SetOptFit();
// h10->GetXaxis()->SetTitle("delta t [ns]");
// h10->GetXaxis()->CenterTitle();
c4
->
cd
(
3
);
TH1F
*
h13
=
new
TH1F
(
"h13"
,
"rise time"
,
100
,
-
10
,
10
);
t
->
Draw
(
"( Ach0.fTime10 + (Ach0.fTime90 - Ach0.fTime10)*0.5 ) - ( Ach1.fTime10 + (Ach1.fTime90 - Ach1.fTime10)*0.5 )>> h13"
,
"Ach0.fEdgeSlope > 0.03 && Ach1.fEdgeSlope > 0.006"
,
""
);
h13
->
Fit
(
"gaus"
,
""
,
""
,
-
5
,
5
);
gStyle
->
SetOptFit
();
}
}
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