| 1 |
This directory contains some very simple macros, just to show how to use the PamLevel2 class. |
| 2 |
The macros need as input the name of a Level2 .root file produced by DarthVader. |
| 3 |
|
| 4 |
Class implementation is under development and some problems still need to be fixed. |
| 5 |
However this simple examples should allow to start working with Pamela data and to test the |
| 6 |
general environment. |
| 7 |
|
| 8 |
In order to run the scripts: |
| 9 |
|
| 10 |
1) Copy the magnetic field maps into the magnetic-field/ directory. |
| 11 |
You can find them in the CVS repository, inside DarthVader/param/trk-param/field_param-0/ |
| 12 |
|
| 13 |
2) Add the path of the directory containing the DarthVader libraries and the PamLevel2 library to the |
| 14 |
shell variable LD_LIBRARY_PATH |
| 15 |
|
| 16 |
3) Open a root session and execute the following commands: |
| 17 |
|
| 18 |
[] .x load.C |
| 19 |
[] .L example1.C |
| 20 |
[] example1("level2-data-path/level2-file.root") |
| 21 |
Tracker : set branch address TrkLevel2 |
| 22 |
Calorimeter : set branch address CaloLevel2 |
| 23 |
ToF : set branch address ToFLevel2 |
| 24 |
Trigger : set branch address TrigLevel2 |
| 25 |
S4 : set branch address S4Level2 |
| 26 |
NeutronD : set branch address NDLevel2 |
| 27 |
Anticounter : set branch address AcLevel2 |
| 28 |
|
| 29 |
Start loop over events |
| 30 |
|
| 31 |
Done |
| 32 |
|
| 33 |
4) The macro creates some histograms, which you can list and plot as follows: |
| 34 |
|
| 35 |
[].ls |
| 36 |
TROOT* Rint The ROOT of EVERYTHING |
| 37 |
OBJ: TH1F qtot Total energy in the calorimeter : 0 at: 0xb3f7400 |
| 38 |
OBJ: TH1F npaddle Total number of hit ToF paddles : 0 at: 0xb3f8768 |
| 39 |
OBJ: TH1F ntr Number of fitted tracks : 0 at: 0xb3f8b60 |
| 40 |
OBJ: TH1F rig Particle rigidity : 0 at: 0xb3f8f30 |
| 41 |
OBJ: TH1F resxs Spatial residual (X) on the 1^ calo plane (sorted tracks) : 0 at: 0xb3f94a0 |
| 42 |
OBJ: TH1F resys Spatial residual (Y) on the 1^ calo plane (sorted tracks) : 0 at: 0xb3f9a00 |
| 43 |
OBJ: TH1F resxi Spatial residual (X) on the 1^ calo plane (image tracks) : 0 at: 0xb3f9f70 |
| 44 |
OBJ: TH1F resyi Spatial residual (Y) on the 1^ calo plane (image tracks) : 0 at: 0xb3fa4e0 |
| 45 |
[]rig->Draw() |