| 1 |
mocchiut |
1.1 |
************************************************************************ |
| 2 |
|
|
* |
| 3 |
|
|
* Common commontracker.f |
| 4 |
|
|
* |
| 5 |
|
|
* contains tracker general variables definitions |
| 6 |
|
|
* |
| 7 |
|
|
* to be included in: |
| 8 |
|
|
* - ../readraw/readraw.F |
| 9 |
|
|
* - ../reduction/reduction.f |
| 10 |
|
|
* - ../reduction/fillpedsig.f |
| 11 |
|
|
* - ../reduction/filladc.f |
| 12 |
|
|
* - ../reduction/cncomp.f |
| 13 |
|
|
* - ../reduction/cnoise.f |
| 14 |
|
|
* - ../reduction/cutcn.f |
| 15 |
|
|
* - ../analysis/preanalysis.f |
| 16 |
|
|
* - ../analysis/analysis.f |
| 17 |
|
|
* - ../align/align.f |
| 18 |
|
|
* - ../magnet/read_B.f |
| 19 |
|
|
* - !??? |
| 20 |
|
|
* |
| 21 |
|
|
* parameters: |
| 22 |
|
|
* - !??? |
| 23 |
|
|
* |
| 24 |
|
|
************************************************************************* |
| 25 |
|
|
c------------------------------------------------------------------------ |
| 26 |
|
|
c |
| 27 |
|
|
c spectrometer parameters |
| 28 |
|
|
c |
| 29 |
|
|
c------------------------------------------------------------------------ |
| 30 |
|
|
|
| 31 |
|
|
parameter (nviews=12) !number of views |
| 32 |
|
|
parameter (nplanes=nviews/2) !number of planes |
| 33 |
|
|
parameter (nladders_view=3) !number of ladders per view |
| 34 |
|
|
parameter (nva1_ladder=8) !number of VA1s per ladder (per side) |
| 35 |
|
|
parameter (nstrips_va1=128) !number of strips per VA1 |
| 36 |
|
|
|
| 37 |
|
|
parameter (nstrips_ladder=nstrips_va1*nva1_ladder) !number of strips per ladder |
| 38 |
|
|
parameter (nva1_view=nva1_ladder*nladders_view) !number of VA1s per view |
| 39 |
|
|
parameter (nstrips_view=nstrips_va1*nva1_view) !number of strips per view |
| 40 |
|
|
parameter (nva1=nva1_view*nviews) !number of VA1s |
| 41 |
|
|
parameter (nstrips=nstrips_va1*nva1) !number of strips |
| 42 |
|
|
|
| 43 |
|
|
parameter (pitchX=51.) !strip pitch in um |
| 44 |
|
|
parameter (pitchY=66.5) |
| 45 |
|
|
|
| 46 |
|
|
parameter (SiDimX=53330.) !Si sensor dimensions in um |
| 47 |
|
|
parameter (SiDimY=70000.) |
| 48 |
pam-fi |
1.5 |
parameter (SiDimZ=300.) |
| 49 |
mocchiut |
1.1 |
|
| 50 |
|
|
* edges of the sensitive areas, in X and Y |
| 51 |
|
|
parameter (edgeX_l=731.5) ! X side |
| 52 |
|
|
parameter (edgeX_r=731.5) ! |
| 53 |
|
|
parameter (edgeX_u=900.) ! |
| 54 |
|
|
parameter (edgeX_d=1117.) ! |
| 55 |
|
|
parameter (edgeY_l=985.) ! Y side |
| 56 |
|
|
parameter (edgeY_r=985.5) ! |
| 57 |
|
|
parameter (edgeY_u=1221.) ! |
| 58 |
|
|
parameter (edgeY_d=894.) ! |
| 59 |
|
|
|
| 60 |
|
|
|
| 61 |
|
|
parameter (edgeX=edgeX_l) !distance of the first strip from the Si sensor |
| 62 |
|
|
parameter (edgeY=edgeY_l) ! edge in um. NB while X strips a simmetrically |
| 63 |
|
|
! arranged respect to the Si sensor centre |
| 64 |
|
|
! (731.5 um on both sides), Y strips are not |
| 65 |
|
|
! centered: 985.5 um is the distance of the first |
| 66 |
|
|
! strip on the hybrid side, 985 um is the one on |
| 67 |
|
|
! the other side |
| 68 |
|
|
parameter (glue=30.) !distance between the two sensors in a ladder in um |
| 69 |
|
|
|
| 70 |
pam-fi |
1.4 |
parameter (RESYAV=14.5e-4) |
| 71 |
|
|
parameter (RESXAV=4.e-4) |
| 72 |
mocchiut |
1.1 |
|
| 73 |
pam-fi |
1.5 |
parameter (pmuH_h=297.61) ! Hall mobility - holes - cm**2 V-1 s-1 |
| 74 |
|
|
parameter (pmuH_e=1258.18) ! Hall mobility - electrons - cm**2 V-1 s-1 |
| 75 |
|
|
|
| 76 |
pam-fi |
1.2 |
c-------------------------------------------------------------------------- |
| 77 |
|
|
c common to control messages on standard output |
| 78 |
|
|
c-------------------------------------------------------------------------- |
| 79 |
|
|
c INTEGER DBUG |
| 80 |
|
|
c INTEGER VRBS |
| 81 |
|
|
LOGICAL DEBUG |
| 82 |
|
|
LOGICAL VERBOSE |
| 83 |
|
|
LOGICAL WARNING |
| 84 |
|
|
COMMON/DBG/DEBUG,VERBOSE,WARNING |
| 85 |
|
|
SAVE/DBG/ |