]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - HBTP/common_sec_track2.inc
HBTP code imported (P.Skowronski)
[u/mrichter/AliRoot.git] / HBTP / common_sec_track2.inc
... / ...
CommitLineData
1CCC common/sec_trk_map2/
2C
3CCC Second Track-to-Sector Mapping data structure:
4CCC (Used for building the reference spectrum from the
5CCC input event text file.)
6CCC (Converted to common block for ALICE application, 12/1/2000)
7
8 Integer*4 max_trk_sec2
9 Integer*4 sec_maxlen2
10 Parameter (max_trk_sec2 = 150)
11 Parameter (sec_maxlen2 = 28000)
12
13 common/sec_trk_map2/
14 1 stm2_sec_id(sec_maxlen2),
15 2 stm2_n_trk_sec(sec_maxlen2),
16 3 stm2_flag(sec_maxlen2),
17 4 stm2_track_id(max_trk_sec2,sec_maxlen2)
18
19CCC Variable Type Declarations:
20
21 Integer*4 stm2_sec_id ! unique sector ID number
22 Integer*4 stm2_n_trk_sec ! Number of tracks assigned to sector
23 Integer*4 stm2_flag ! normally=0, if = 1 then more than
24CCC ! max_trk_sec tracks could have been
25CCC ! assigned to this sector, however the
26CCC ! maximum number that can be assigned is
27CCC ! max_trk_sec.
28 Integer*4 stm2_track_id ! Foreign keys to tracks in /track/ that
29CCC ! are assigned to this sector.
30
31CCC END common/sec_trk_map2/