]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HBTP/common_sec_track2.inc
fix in Gain
[u/mrichter/AliRoot.git] / HBTP / common_sec_track2.inc
1 CCC   common/sec_trk_map2/
2 C
3 CCC   Second Track-to-Sector Mapping data structure:
4 CCC   (Used for building the reference spectrum from the
5 CCC    input event text file.)
6 CCC   (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
19 CCC   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
24 CCC                               !  max_trk_sec tracks could have been 
25 CCC                               !  assigned to this sector, however the
26 CCC                               !  maximum number that can be assigned is
27 CCC                               !  max_trk_sec.
28       Integer*4 stm2_track_id     !  Foreign keys to tracks in /track/ that
29 CCC                               !  are assigned to this sector.
30
31 CCC   END common/sec_trk_map2/