]>
Commit | Line | Data |
---|---|---|
b3d9d240 | 1 | #!/bin/sh |
2 | ||
3 | # delete eventual old files from the last run | |
4 | ./AliITSDeleteOldFiles.sh | |
5 | ||
6 | # do everything for the TPC | |
7 | aliroot -q -b "$ALICE_ROOT/TPC/AliTPCtest.C" | |
8 | ||
9 | # create summable digits for the ITS | |
10 | aliroot -q -b "$ALICE_ROOT/ITS/AliITSHits2SDigits.C" | |
11 | ||
12 | # go from summable digits to digits for the ITS | |
13 | aliroot -q -b "$ALICE_ROOT/ITS/AliITSSDigits2Digits.C" | |
14 | ||
15 | # create reconstructed points for the ITS | |
16 | aliroot -q -b "$ALICE_ROOT/ITS/AliITSDigits2RecPoints.C" | |
17 | ||
18 | # do the tracking V1 | |
19 | aliroot -q -b "$ALICE_ROOT/ITS/AliITSTrackingV1.C" | |
20 | ||
21 | # prepare results of tracking V1 for comparison | |
22 | aliroot -q -b "$ALICE_ROOT/ITS/AliITSStoreFindableTracks.C" | |
23 | ||
24 | # do ITS tracking V1 comparison | |
25 | aliroot -q -b "$ALICE_ROOT/ITS/AliITSComparisonV1.C" | |
26 | ||
27 | # | |
28 | # after all of the above you can run AliITSPlotTracksV1.C macro under | |
29 | # aliroot to see plots of the efficiency and track parameter resolution | |
30 | # or AliITSDisplayTracksV1.C to display found tracks on top of the | |
31 | # ITS detailed geometry |