Difference between revisions of "UnderGraduate Neutron Correlations Lab"
Jump to navigation
Jump to search
(Created page with "https://wiki.iac.isu.edu/index.php/Main_Page NaI detector setup https://wiki.iac.isu.edu/index.php/Main_Page") |
|||
Line 4: | Line 4: | ||
NaI detector setup | NaI detector setup | ||
+ | |||
+ | |||
+ | Creating ROOT data files | ||
+ | |||
+ | |||
+ | |||
+ | source ~/CODA/setup | ||
+ | |||
+ | /home/daq/CODA/CODAreader/ROOT_V5.34/PAA/evio2nt -fr6815.dat > /dev/null | ||
+ | |||
+ | Analyzing ROOT data file | ||
+ | |||
+ | root -l r8735.root | ||
+ | |||
+ | to draw a histogram for Peak ADC channel 4 | ||
+ | |||
+ | PAA->Draw("PADC.PADC785N[4]>>(4096,0,4096)") | ||
+ | |||
+ | To scale the histogram using an energy calibration of 0.45 keV/channel | ||
+ | |||
+ | PAA->Draw("PADC.PADC785N[4]*0.45>>(4096,0,4096)") | ||
+ | |||
+ | To normalize the histogram by a run time of 2600 seconds | ||
+ | |||
+ | |||
+ | |||
+ | |||
Revision as of 21:43, 22 April 2021
[[1]]
NaI detector setup
Creating ROOT data files
source ~/CODA/setup
/home/daq/CODA/CODAreader/ROOT_V5.34/PAA/evio2nt -fr6815.dat > /dev/null
Analyzing ROOT data file
root -l r8735.root
to draw a histogram for Peak ADC channel 4
PAA->Draw("PADC.PADC785N[4]>>(4096,0,4096)")
To scale the histogram using an energy calibration of 0.45 keV/channel
PAA->Draw("PADC.PADC785N[4]*0.45>>(4096,0,4096)")
To normalize the histogram by a run time of 2600 seconds
[[2]]