1 |
mocchiut |
1.1 |
************************************************************************* |
2 |
|
|
* |
3 |
|
|
* Common calib.f |
4 |
|
|
* |
5 |
|
|
* contains CALIB variables definitions |
6 |
|
|
* |
7 |
|
|
* |
8 |
|
|
************************************************************************* |
9 |
|
|
|
10 |
|
|
c------------------------------------------------------------------------ |
11 |
|
|
c |
12 |
|
|
c pedestal, sigma and badstrip variables |
13 |
|
|
c |
14 |
|
|
c------------------------------------------------------------------------ |
15 |
|
|
|
16 |
|
|
real pedestal(nviews,nva1_view,nstrips_va1) !pedestal value |
17 |
|
|
real pedestal_t(nviews,nva1_view,nstrips_va1) !pedestal truncated value |
18 |
|
|
|
19 |
|
|
real sigma(nviews,nva1_view,nstrips_va1) !sigma value |
20 |
|
|
real sigma_t(nviews,nva1_view,nstrips_va1) !sigma truncated value |
21 |
|
|
|
22 |
|
|
integer bad(nviews,nva1_view,nstrips_va1) !bad strip flag matrix |
23 |
|
|
! (bad=0 --> good strip, bad=1 --> bad strip) |
24 |
|
|
! NB this is different in 2003 test with respect |
25 |
|
|
! to previous analysis |
26 |
|
|
|
27 |
|
|
common/pedsigbad/pedestal,pedestal_t,sigma,sigma_t,bad |
28 |
|
|
save/pedsigbad/ |
29 |
|
|
|
30 |
|
|
|
31 |
|
|
parameter (clcutx=7.) !cluster seed cut |
32 |
pam-fi |
1.3 |
parameter (clcuty=6.) |
33 |
mocchiut |
1.1 |
parameter (incutx=4.) !cut to include strips in cluster definition |
34 |
|
|
parameter (incuty=4.) |
35 |
|
|
|
36 |
pam-fi |
1.4 |
c------------------------------------------------------------------------ |
37 |
|
|
c |
38 |
|
|
c VA1-mask |
39 |
|
|
c |
40 |
|
|
c------------------------------------------------------------------------ |
41 |
|
|
c VA1 mask, from the DB |
42 |
|
|
c 0 = force mask |
43 |
|
|
c 1 = ---> run-by-run mask ---> event-by-event mask |
44 |
|
|
c -1 = ---> event-by-event mask |
45 |
|
|
c ------------------------------------- |
46 |
|
|
integer mask_vk(nviews,nva1_view) |
47 |
|
|
c ------------------------------------- |
48 |
|
|
c VA1 mask run-by-run (set to 0 if <SIG> < SIG_min) |
49 |
|
|
c 0 = force mask |
50 |
|
|
c 1 = ---> event-by-event mask |
51 |
|
|
c ------------------------------------- |
52 |
|
|
integer mask_vk_run(nviews,nva1_view) |
53 |
|
|
c ------------------------------------- |
54 |
|
|
c VA1 mask event-by-event (set to 0 if CN computation fails) |
55 |
|
|
c 0 = force mask |
56 |
|
|
c 1 = search clusters |
57 |
|
|
c ------------------------------------- |
58 |
|
|
integer mask_vk_ev(nviews,nva1_view) |
59 |
mocchiut |
1.1 |
|
60 |
pam-fi |
1.4 |
integer mask(nviews,nva1_view,nstrips_va1) !effective mask |
61 |
mocchiut |
1.1 |
|
62 |
pam-fi |
1.4 |
* set from outside F77 routines |
63 |
|
|
common/mask/mask_vk,mask_vk_run |
64 |
mocchiut |
1.1 |
save/mask/ |
65 |
pam-fi |
1.4 |
* set event-by-event |
66 |
|
|
common/maskev/mask_vk_ev,mask |
67 |
mocchiut |
1.1 |
|
68 |
|
|
c------------------------------------------------------------------------ |
69 |
|
|
c |
70 |
|
|
c eta2, eta3, eta4 pfa correction parameters |
71 |
|
|
c |
72 |
|
|
c------------------------------------------------------------------------ |
73 |
|
|
* angular binning |
74 |
|
|
* NB the angular binning is defined in common_preanalysis.f |
75 |
pam-fi |
1.4 |
* here are defned variables to retrieve calibration info |
76 |
mocchiut |
1.1 |
* (for processing levels next to 1) |
77 |
|
|
parameter (nangmax=21) !maximum number of angular bins |
78 |
|
|
integer nangbin |
79 |
|
|
real angL(nangmax),angR(nangmax) !Left and Right bin limits |
80 |
|
|
|
81 |
|
|
parameter (netavalmax=150) !eta2 points |
82 |
|
|
integer netaval |
83 |
|
|
real eta2(netavalmax,nangmax) |
84 |
|
|
real feta2(netavalmax,nviews,nladders_view,nangmax) |
85 |
|
|
real eta3(netavalmax,nangmax) |
86 |
|
|
real feta3(netavalmax,nviews,nladders_view,nangmax) |
87 |
|
|
real eta4(netavalmax,nangmax) |
88 |
|
|
real feta4(netavalmax,nviews,nladders_view,nangmax) |
89 |
|
|
|
90 |
|
|
common/angbinning/nangbin,angL,angR |
91 |
|
|
save/angbinning/ |
92 |
|
|
common/pfa/netaval,eta2,feta2,eta3,feta3,eta4,feta4 |
93 |
|
|
save/pfa/ |
94 |
|
|
c------------------------------------------------------------------------ |
95 |
|
|
c |
96 |
|
|
c CHARGE CORRELATION |
97 |
|
|
c |
98 |
|
|
c------------------------------------------------------------------------ |
99 |
|
|
|
100 |
|
|
c parameter (chcut=3.) !cut to associate two clusters |
101 |
pam-fi |
1.2 |
c parameter (chcut=4.) !cut to associate two clusters |
102 |
pam-fi |
1.3 |
parameter (chcut=50.) !cut to associate two clusters |
103 |
|
|
parameter (chsatx=1700.) !saturation limit |
104 |
pam-fi |
1.2 |
parameter (chsaty=2500.) !saturation limit |
105 |
pam-fi |
1.3 |
parameter (chmipx=200.) !mip limit |
106 |
|
|
parameter (chmipy=200.) !mip limit |
107 |
pam-fi |
1.2 |
* above saturation limit correlation conditions are not applied |
108 |
mocchiut |
1.1 |
real kch(nplanes,nladders_view) !angular coeff |
109 |
|
|
real cch(nplanes,nladders_view) !const |
110 |
|
|
real sch(nplanes,nladders_view) !sigma |
111 |
|
|
common/chargeco/kch,cch,sch |
112 |
|
|
save/chargeco/ |
113 |
|
|
c------------------------------------------------------------------------ |
114 |
|
|
c |
115 |
|
|
c MIP |
116 |
|
|
c |
117 |
|
|
c (mip signal, scaled to 300 micron, in ADC channels) |
118 |
|
|
c |
119 |
|
|
c------------------------------------------------------------------------ |
120 |
|
|
real mip(nviews,nladders_view) |
121 |
|
|
common/adc2mip/mip |
122 |
|
|
save/adc2mip/ |