]>
Commit | Line | Data |
---|---|---|
e0589e74 | 1 | #!/bin/sh |
2 | # This script processes the ITS PID for n events | |
3 | # (use the parameter n): | |
4 | # - the AliTPCtest.C and AliITStest.C should be processed befor | |
5 | # (Dubnna version) | |
6 | # | |
7 | # Do the PID procedure for the ITS. The output file AliITStrackV2Pid.root is | |
8 | # created with the information for each track: | |
9 | # the ITS ADC trancated mean signal, the particle reconstructed momentum, | |
10 | # the probable weights for the different particle kinds (electron, pion, kaon, | |
11 | # proton). These weights are under study now. | |
12 | # | |
13 | rm -f AliITStrackingV2Pid.root | |
14 | # | |
15 | aliroot -q -b "$ALICE_ROOT/ITS/save_pidV2.C(0,$[$1-1])" | |
16 | # | |
17 | # This last line checks the ITS PID only, i.e. creates and draws | |
18 | #the dEdx-momentum plot (comment if it's not necessary) | |
19 | aliroot "$ALICE_ROOT/ITS/scan_pidV2.C(0,$[$1-1])" | |
20 | ||
21 | ||
22 |