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
20aa21b3
Commit
20aa21b3
authored
Jan 16, 2017
by
Kostyleva D.A
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Script for drawing correlations ia added
parent
89696c5a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
0 deletions
+56
-0
LOGBOOK.md
data/rawDataDSR4/LOGBOOK.md
+21
-0
histCorr.C
macros/histCorr.C
+35
-0
No files found.
data/rawDataDSR4/LOGBOOK.md
0 → 100644
View file @
20aa21b3
Raw data. Both in binary and root format.
Logbook
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_2.dat| 5000 | collimated gamma source; ch0 and ch1 have coincidence; trigger ch0 |
NeuRad_test_071216_3.dat| | neutron source Cf |
NeuRad_test_071216_4.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 |
NeuRad_test_071216_6.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 |
------------------------|---------------|---------------------------------------------------------------------|
Change of PMT amplification: increasing voltage up to 1100 mV, threshold 25 mV
------------------------|---------------|---------------------------------------------------------------------|
NeuRad_test_071216_8.dat| 10000 | source 60Co; trigger ch0; ch0-front, ch1,ch2,ch3 - back |
NeuRad_test_081216_1.dat| | trigger ch2 ????? |
NeuRad_test_081216_2.dat| 10000 | collimated gamma source; two channels only: ch0 and ch1 |
macros/histCorr.C
0 → 100644
View file @
20aa21b3
void
histCorr
()
{
gSystem
->
Load
(
"../libData.so"
);
TFile
*
f
=
new
TFile
(
"../data/dataDSR4/analysis_07_8.root"
);
TTree
*
t
=
(
TTree
*
)
f
->
Get
(
"atree"
);
TCanvas
*
c1
=
new
TCanvas
(
"canvas"
,
"Correlation pictures"
);
c1
->
Divide
(
2
,
2
);
TH2F
*
h1
=
new
TH2F
(
"h1"
,
"Time difference between two channels vs an integral of the first channel"
,
500
,
10
,
1e-10
,
500
,
-
300
,
300
);
TH2F
*
h2
=
new
TH2F
(
"h2"
,
"Time difference between two channels vs an integral of the second channel"
,
100
,
10
,
1e-10
,
100
,
-
300
,
300
);
TH2F
*
h3
=
new
TH2F
(
"h3"
,
"Integral of the first channel vs integral of the second channel"
,
100
,
10
,
1e-10
,
100
,
-
300
,
300
);
TH2F
*
h4
=
new
TH2F
(
"h4"
,
"Time difference between two channels vs amplitude of the first channel"
,
100
,
10
,
1e-10
,
100
,
-
300
,
300
);
c1
->
cd
(
1
);
t
->
Draw
(
"( Ach0.fTimeCFD - Ach2.fTimeCFD ) : Ach0.fChargeCFD >> h1"
,
""
,
"col"
);
c1
->
cd
(
2
);
t
->
Draw
(
"( Ach0.fTimeCFD - Ach2.fTimeCFD ) : Ach2.fChargeCFD >> h2"
,
""
,
"col"
);
c1
->
cd
(
3
);
t
->
Draw
(
"Ach0.fChargeCFD:Ach2.fChargeCFD >> h3"
,
""
,
"col"
);
c1
->
cd
(
4
);
//TCanvas *c2 = new TCanvas("Correlations 2");
//c2->Divide(1,2);
}
/*Time difference between two channels vs an integral of the first channel,
2. Time difference between two channels vs an integral of the second channel,
3. Integral of the first channel vs integral of the second channel,
4. Time difference between two channels vs amplitude of the first channel,
5. Time difference between two channels vs amplitude of the second channel,
6. Amplitude of the first channel vs amplitude of the second channel
*/
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