| 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 |
|
|
parameter (nviews=12) !number of views |
| 31 |
|
|
parameter (nplanes=nviews/2) !number of planes |
| 32 |
|
|
parameter (nladders_view=3) !number of ladders per view |
| 33 |
|
|
parameter (nva1_ladder=8) !number of VA1s per ladder (per side) |
| 34 |
|
|
parameter (nstrips_va1=128) !number of strips per VA1 |
| 35 |
|
|
|
| 36 |
|
|
parameter (nstrips_ladder=nstrips_va1*nva1_ladder) !number of strips per ladder |
| 37 |
|
|
parameter (nva1_view=nva1_ladder*nladders_view) !number of VA1s per view |
| 38 |
|
|
parameter (nstrips_view=nstrips_va1*nva1_view) !number of strips per view |
| 39 |
|
|
parameter (nva1=nva1_view*nviews) !number of VA1s |
| 40 |
|
|
parameter (nstrips=nstrips_va1*nva1) !number of strips |
| 41 |
|
|
|
| 42 |
bongi |
1.8 |
double precision pitchX |
| 43 |
mocchiut |
1.1 |
parameter (pitchX=51.) !strip pitch in um |
| 44 |
bongi |
1.8 |
double precision pitchY |
| 45 |
mocchiut |
1.1 |
parameter (pitchY=66.5) |
| 46 |
|
|
|
| 47 |
bongi |
1.8 |
double precision SiDimX |
| 48 |
mocchiut |
1.1 |
parameter (SiDimX=53330.) !Si sensor dimensions in um |
| 49 |
bongi |
1.8 |
double precision SiDimY |
| 50 |
mocchiut |
1.1 |
parameter (SiDimY=70000.) |
| 51 |
bongi |
1.8 |
double precision SiDimZ |
| 52 |
pam-fi |
1.5 |
parameter (SiDimZ=300.) |
| 53 |
mocchiut |
1.1 |
|
| 54 |
|
|
* edges of the sensitive areas, in X and Y |
| 55 |
bongi |
1.8 |
double precision edgeX_l |
| 56 |
mocchiut |
1.1 |
parameter (edgeX_l=731.5) ! X side |
| 57 |
bongi |
1.8 |
double precision edgeX_r |
| 58 |
mocchiut |
1.1 |
parameter (edgeX_r=731.5) ! |
| 59 |
bongi |
1.8 |
double precision edgeX_u |
| 60 |
mocchiut |
1.1 |
parameter (edgeX_u=900.) ! |
| 61 |
bongi |
1.8 |
double precision edgeX_d |
| 62 |
mocchiut |
1.1 |
parameter (edgeX_d=1117.) ! |
| 63 |
bongi |
1.8 |
double precision edgeY_l |
| 64 |
mocchiut |
1.1 |
parameter (edgeY_l=985.) ! Y side |
| 65 |
bongi |
1.8 |
double precision edgeY_r |
| 66 |
mocchiut |
1.1 |
parameter (edgeY_r=985.5) ! |
| 67 |
bongi |
1.8 |
double precision edgeY_u |
| 68 |
mocchiut |
1.1 |
parameter (edgeY_u=1221.) ! |
| 69 |
bongi |
1.8 |
double precision edgeY_d |
| 70 |
mocchiut |
1.1 |
parameter (edgeY_d=894.) ! |
| 71 |
|
|
|
| 72 |
|
|
|
| 73 |
bongi |
1.8 |
double precision edgeX |
| 74 |
mocchiut |
1.1 |
parameter (edgeX=edgeX_l) !distance of the first strip from the Si sensor |
| 75 |
bongi |
1.8 |
double precision edgeY |
| 76 |
mocchiut |
1.1 |
parameter (edgeY=edgeY_l) ! edge in um. NB while X strips a simmetrically |
| 77 |
|
|
! arranged respect to the Si sensor centre |
| 78 |
|
|
! (731.5 um on both sides), Y strips are not |
| 79 |
|
|
! centered: 985.5 um is the distance of the first |
| 80 |
|
|
! strip on the hybrid side, 985 um is the one on |
| 81 |
|
|
! the other side |
| 82 |
bongi |
1.8 |
double precision glue |
| 83 |
mocchiut |
1.1 |
parameter (glue=30.) !distance between the two sensors in a ladder in um |
| 84 |
|
|
|
| 85 |
bongi |
1.8 |
double precision RESYAV |
| 86 |
pam-fi |
1.4 |
parameter (RESYAV=14.5e-4) |
| 87 |
bongi |
1.8 |
double precision RESXAV |
| 88 |
pam-fi |
1.4 |
parameter (RESXAV=4.e-4) |
| 89 |
mocchiut |
1.1 |
|
| 90 |
pam-fi |
1.6 |
parameter (ADCsatx=80) !saturation limit x-side |
| 91 |
|
|
parameter (ADCsaty=2980) !saturation limit y-side |
| 92 |
|
|
c parameter (ADCsatx=2000) !saturation limit x-side |
| 93 |
|
|
c parameter (ADCsaty=2000) !saturation limit y-side |
| 94 |
|
|
|
| 95 |
|
|
|
| 96 |
bongi |
1.8 |
double precision pmuH_h |
| 97 |
pam-fi |
1.5 |
parameter (pmuH_h=297.61) ! Hall mobility - holes - cm**2 V-1 s-1 |
| 98 |
bongi |
1.8 |
double precision pmuH_e |
| 99 |
pam-fi |
1.5 |
parameter (pmuH_e=1258.18) ! Hall mobility - electrons - cm**2 V-1 s-1 |
| 100 |
|
|
|
| 101 |
pam-fi |
1.2 |
c-------------------------------------------------------------------------- |
| 102 |
|
|
c common to control messages on standard output |
| 103 |
|
|
c-------------------------------------------------------------------------- |
| 104 |
|
|
c INTEGER DBUG |
| 105 |
|
|
c INTEGER VRBS |
| 106 |
pam-fi |
1.7 |
c$$$ LOGICAL DEBUG |
| 107 |
|
|
c$$$ LOGICAL VERBOSE |
| 108 |
|
|
c$$$ LOGICAL WARNING |
| 109 |
|
|
INTEGER debug |
| 110 |
|
|
INTEGER verbose |
| 111 |
|
|
INTEGER warning |
| 112 |
|
|
COMMON/dbg/debug,verbose,warning |
| 113 |
|
|
SAVE/dbg/ |