Difference between revisions of "MainPage:Nuclear:KaonDetector:FullDetector"
Jump to navigation
Jump to search
(Moving Stuff from SHMSAerogel) |
|||
Line 4: | Line 4: | ||
| <font size="2">'''[[MainPage:Nuclear|⇐ Back to the Main_Page]]'''</font> | | <font size="2">'''[[MainPage:Nuclear|⇐ Back to the Main_Page]]'''</font> | ||
|} | |} | ||
+ | |||
+ | |||
+ | ==Setting up JLab account== | ||
+ | |||
+ | ===Information you should read=== | ||
+ | |||
+ | * [https://hallcweb.jlab.org/DocDB/0008/000868/001/Counting_House_TipsTricks-Jun2017.pdf Do and Don't do] Start from slide 8 (Go to a Data Analysis Workshop if you have the chance, it is around the same date of JLab user meetings). | ||
+ | * [https://scicomp.jlab.org/docs/node/17 Filesystem explanation] You will need to read it you don't know where you are (if <code>$pwd</code> and <code>$whoami</code> are not enough) | ||
+ | * [https://hallcweb.jlab.org/wiki/index.php/Summer_2017_Analysis_Workshop Analysis workshop slides] Go through these slides | ||
+ | |||
+ | ===hcana How-To (IFarm version)=== | ||
+ | |||
+ | All the analysis can be done from ifarm, no need to use <code>cdaql*</code> computers | ||
+ | |||
+ | <pre> | ||
+ | # JLab Login | ||
+ | ssh -Y username@login.jlab.org | ||
+ | ssh ifarm | ||
+ | |||
+ | # On Ifarm | ||
+ | mkdir $HOME/Analysis | ||
+ | cd $HOME/Analysis | ||
+ | |||
+ | # Build hcana from source code | ||
+ | git clone https://github.com/JeffersonLab/hcana | ||
+ | cd hcana | ||
+ | git submodule init #hcana depends on podd (HallA Analyzer) | ||
+ | git submodule update #so we also need podd's source code | ||
+ | scons #compile | ||
+ | |||
+ | # Get HallC_Replay scripts | ||
+ | cd $HOME/Analysis | ||
+ | git clone https://github.com/JeffersonLab/hallc_replay | ||
+ | cd hallc_replay | ||
+ | ln -s /cache/hallc/spring17/raw/ ./ #Change Spring17 if needed | ||
+ | |||
+ | #Ask Brad Sawatzky <brads@jlab.org> to create a directory | ||
+ | #in the /volatile file system and grant you access to it | ||
+ | |||
+ | mkdir /lustre/expphy/volatile/hallc/spring17/$USER/ROOTfiles #Change Spring17 if needed | ||
+ | ln -s /lustre/expphy/volatile/hallc/spring17/$USER/ROOTfiles ./ #Change Spring17 if needed | ||
+ | |||
+ | cd $HOME/Analysis | ||
+ | source hcana/setup.csh | ||
+ | source hallc_replay/setup.csh | ||
+ | alias hcana='$HOME/Analysis/hcana/hcana' | ||
+ | </pre> | ||
+ | |||
+ | Now that you can execute <code>$hcana</code> You are ready to go! | ||
+ | |||
+ | ==SHMS Aerogel Detector== | ||
+ | |||
+ | The following set of slides shows aspects of the development and design concept of the SHMS Aerogel detector: | ||
+ | |||
+ | * [https://www.jlab.org/Hall-C/talks/01_13_12/carmignotto.pdf SHMS Aerogel Overview] | ||
+ | * [https://www.jlab.org/Hall-C/talks/01_13_12/rothgeb.pdf SHMS Aerogel Construction Details] | ||
+ | * [https://www.jlab.org/Hall-C/talks/01_24_13/carmignotto2.pdf SHMS Aerogel Detector Update] | ||
+ | * [http://www.vsl.cua.edu/cua_phy/index.php/MainPage:Nuclear:KaonDetector Kaon Detector Wiki Page ] | ||
+ | |||
+ | [https://logbooks.jlab.org/entry/3466671 HallC Logbook - Run 464] | ||
+ | |||
+ | {| | ||
+ | | | ||
+ | | [[File:xyNpe_r464.png|thumbnail|X-Y-Npe Distribution Run:464 (Production Run) Most of the single track events generate less than 25Pe and are centered at <code>(0,0)</code>]] | ||
+ | | [[File:SpacialAerogelDistribution_r464.png|thumbnail|SpacialAerogelDistribution Run:464]] | ||
+ | | [[File:SignalVsY r464_COL.png|thumbnail|SignalvsY COL Run:464]] | ||
+ | |} | ||
+ | |||
+ | |||
+ | [https://logbooks.jlab.org/entry/3467029 HallC Logbook - Run 488] | ||
+ | |||
+ | {| | ||
+ | | | ||
+ | | [[File:xyNpe_r488.png|thumbnail|X-Y-Npe Distribution Run:488 (Production Run)]] | ||
+ | | [[File:SpacialAerogelDistribution_r488.png|thumbnail|SpacialAerogelDistribution Run:488]] | ||
+ | | [[File:SignalVsY r488_COL.png|thumbnail|SignalvsY COL Run:488]] | ||
+ | |} | ||
+ | |||
+ | [https://logbooks.jlab.org/entry/3478965 HallC Logbook - Run 929] | ||
+ | |||
+ | {| | ||
+ | | | ||
+ | | [[File:xyNpe_r929.png|thumbnail|X-Y-Npe Distribution Run:929 (Cosmics Run) Most of the events generate less than 10Pe and are not centered 929]] | ||
+ | | [[File:SpacialAerogelDistribution_r929.png|thumbnail|SpacialAerogelDistribution Run:929]] | ||
+ | | [[File:SignalVsY r929_COL.png|thumbnail|SignalvsY COL Run:929]] | ||
+ | |} | ||
+ | |||
== Checks of KPP run 464 (and 488) == | == Checks of KPP run 464 (and 488) == |
Revision as of 11:16, 26 September 2017
⇐ Back to Kaon Aerogel Detector |
⇐ Back to the Main_Page |
Setting up JLab account
Information you should read
- Do and Don't do Start from slide 8 (Go to a Data Analysis Workshop if you have the chance, it is around the same date of JLab user meetings).
- Filesystem explanation You will need to read it you don't know where you are (if
$pwd
and$whoami
are not enough) - Analysis workshop slides Go through these slides
hcana How-To (IFarm version)
All the analysis can be done from ifarm, no need to use cdaql*
computers
# JLab Login ssh -Y username@login.jlab.org ssh ifarm # On Ifarm mkdir $HOME/Analysis cd $HOME/Analysis # Build hcana from source code git clone https://github.com/JeffersonLab/hcana cd hcana git submodule init #hcana depends on podd (HallA Analyzer) git submodule update #so we also need podd's source code scons #compile # Get HallC_Replay scripts cd $HOME/Analysis git clone https://github.com/JeffersonLab/hallc_replay cd hallc_replay ln -s /cache/hallc/spring17/raw/ ./ #Change Spring17 if needed #Ask Brad Sawatzky <brads@jlab.org> to create a directory #in the /volatile file system and grant you access to it mkdir /lustre/expphy/volatile/hallc/spring17/$USER/ROOTfiles #Change Spring17 if needed ln -s /lustre/expphy/volatile/hallc/spring17/$USER/ROOTfiles ./ #Change Spring17 if needed cd $HOME/Analysis source hcana/setup.csh source hallc_replay/setup.csh alias hcana='$HOME/Analysis/hcana/hcana'
Now that you can execute $hcana
You are ready to go!
SHMS Aerogel Detector
The following set of slides shows aspects of the development and design concept of the SHMS Aerogel detector:
- SHMS Aerogel Overview
- SHMS Aerogel Construction Details
- SHMS Aerogel Detector Update
- Kaon Detector Wiki Page