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 |
|
|
|
49 |
|
|
* edges of the sensitive areas, in X and Y |
50 |
|
|
parameter (edgeX_l=731.5) ! X side |
51 |
|
|
parameter (edgeX_r=731.5) ! |
52 |
|
|
parameter (edgeX_u=900.) ! |
53 |
|
|
parameter (edgeX_d=1117.) ! |
54 |
|
|
parameter (edgeY_l=985.) ! Y side |
55 |
|
|
parameter (edgeY_r=985.5) ! |
56 |
|
|
parameter (edgeY_u=1221.) ! |
57 |
|
|
parameter (edgeY_d=894.) ! |
58 |
|
|
|
59 |
|
|
|
60 |
|
|
parameter (edgeX=edgeX_l) !distance of the first strip from the Si sensor |
61 |
|
|
parameter (edgeY=edgeY_l) ! edge in um. NB while X strips a simmetrically |
62 |
|
|
! arranged respect to the Si sensor centre |
63 |
|
|
! (731.5 um on both sides), Y strips are not |
64 |
|
|
! centered: 985.5 um is the distance of the first |
65 |
|
|
! strip on the hybrid side, 985 um is the one on |
66 |
|
|
! the other side |
67 |
|
|
parameter (glue=30.) !distance between the two sensors in a ladder in um |
68 |
|
|
|
69 |
pam-fi |
1.4 |
parameter (RESYAV=14.5e-4) |
70 |
|
|
parameter (RESXAV=4.e-4) |
71 |
mocchiut |
1.1 |
|
72 |
pam-fi |
1.2 |
c-------------------------------------------------------------------------- |
73 |
|
|
c common to control messages on standard output |
74 |
|
|
c-------------------------------------------------------------------------- |
75 |
|
|
c INTEGER DBUG |
76 |
|
|
c INTEGER VRBS |
77 |
|
|
LOGICAL DEBUG |
78 |
|
|
LOGICAL VERBOSE |
79 |
|
|
LOGICAL WARNING |
80 |
|
|
COMMON/DBG/DEBUG,VERBOSE,WARNING |
81 |
|
|
SAVE/DBG/ |