/[PAMELA software]/DarthVader/ToFLevel2/src/tofl2com.for
ViewVC logotype

Diff of /DarthVader/ToFLevel2/src/tofl2com.for

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.5 by mocchiut, Wed Feb 7 08:17:17 2007 UTC revision 1.14 by mocchiut, Wed Feb 17 11:50:53 2010 UTC
# Line 1  Line 1 
1  ******************************************************************************  
2  *  C******************************************************************************
3  *  08-12-06 WM: adc_c-bug :  The raw ADc value was multiplied with cos(theta)  C
4  *  and AFTER that there was an if statement "if tof32(right,i,iadc) < 4095"  C  08-12-06 WM: adc_c-bug :  The raw ADc value was multiplied with cos(theta)
5  *  C  and AFTER that there was an if statement "if tof32(right,i,iadc) < 4095"
6  *  jan-07 GF: ADCflags(4,12) inserted to flag artificial ADC values  C
7  *  jan-07 WM: artificial ADC values created using attenuation calibration  C  jan-07 GF: ADCflags(4,12) inserted to flag artificial ADC values
8  *  jan-07 WM: modified xtofpos flag "101". xtofpos must be inside physical  C  jan-07 WM: artificial ADC values created using attenuation calibration
9  *             dimension of the paddle +/- 10 cm  C  jan-07 WM: modified xtofpos flag "101". xtofpos must be inside physical
10  *  jan-07 WM: if xtofpos=101 then this paddle is not used for beta  C             dimension of the paddle +/- 10 cm
11  *             calculation  C  jan-07 WM: if xtofpos=101 then this paddle is not used for beta
12  *  jan-07 WM: the definition for a "hit" is changed: Now we must have a  C             calculation
13  *             valid TDC signal on both sides  C  jan-07 WM: the definition for a "hit" is changed: Now we must have a
14  *  jan-07 WM: flag for PMTs #10 and #35 added, TDC=819 due to bit-shift  C             valid TDC signal on both sides
15  *  jan-07 WM: bug removed: in some cases tdc_tw was calculated due to a  C  jan-07 WM: flag for PMTs #10 and #35 added, TDC=819 due to bit-shift
16  *             leftover "xhelp" value  C  jan-07 WM: bug removed: in some cases tdc_tw was calculated due to a
17  ******************************************************************************  C             leftover "xhelp" value
18    C  apr-07 WM: attenuation fit curve is now a double exponential fit
19    C             conversion from raw ADC to pC using calibration function
20    C             variables xtr_tof and ytr_tof inserted (filled with default)
21    C  jan-08 WM: Major Update: Time Walk correction introduced
22    C             Additionalyl we use the information from the "check_charge"
23    C             function to fill artificial ADC values and make small corrections
24    C             to the k1-parameter (for Z>2)
25    C  feb-08 WM: Calculation of beta(13) changed: First a mean beta is calculated,
26    C             then in a second step we check the residuals of the single
27    C             measurements, reject if > 10 sigma, calculate chi2 and "quality"
28    C             beta is taken as good if chi2<20 and quality>10
29    C  mar-08 WM: Call to "newbeta" changed, now a flag tells the function if the
30    C             call comes from "tofl2com" or form "toftrack"
31    C  mar-08 WM: Bug found in dEdx if check_charge>1
32    C  oct-08 WM: Calculation of zenith angle debugged, sometimes strange values
33    C             were possible
34    C  nov-09 WM: the dEdx part ("adctof_c") moved to the new dEdx routine from Napoli
35    C  feb-10 WM: k1 values now for Z=1, Z=2, Z>2, k2 values are fix
36    C******************************************************************************
37    
38        INTEGER FUNCTION TOFL2COM()        INTEGER FUNCTION TOFL2COM()
39  c      c    
# Line 30  C     Line 49  C    
49        LOGICAL check        LOGICAL check
50        REAL secure        REAL secure
51    
52        INTEGER j        INTEGER j,hitvec(6)
       REAL xhelp_a,xhelp_t  
53    
54        REAL dx,dy,dr,ds        REAL dx,dy,dr,ds
55        REAL yhelp,xhelp,xhelp1,xhelp2        REAL yhelp,yhelp1,yhelp2,xhelp,xhelp1,xhelp2
56        REAL c1,c2,sw,sxw,w_i        REAL c1,c2
57        INTEGER icount        REAL dist
58    
59  c      REAL xdummy  C      REAL sw,sxw,w_i
60    C      INTEGER icount
61    C      REAL beta_mean
62    
63        INTEGER tof11_j,tof21_j,tof31_j        INTEGER tof11_j,tof21_j,tof31_j
64        INTEGER tof12_j,tof22_j,tof32_j        INTEGER tof12_j,tof22_j,tof32_j
65    
   
       REAL beta_mean  
   
   
66  c     value for status of each PM-data  c     value for status of each PM-data
67  c     first index  : 1 = left, 2 = right  c     first index  : 1 = left, 2 = right
68  c     second index : 1... number of paddle  c     second index : 1... number of paddle
# Line 54  c     second index : 1... number of padd Line 70  c     second index : 1... number of padd
70        INTEGER tof21_event(2,2),tof22_event(2,2)        INTEGER tof21_event(2,2),tof22_event(2,2)
71        INTEGER tof31_event(2,3),tof32_event(2,3)        INTEGER tof31_event(2,3),tof32_event(2,3)
72    
73    
74          REAL y_coor_lin11c(8,2),x_coor_lin12c(6,2)
75          REAL x_coor_lin21c(2,2),y_coor_lin22c(2,2)
76          REAL y_coor_lin31c(3,2),x_coor_lin32c(3,2)
77    
78          DATA y_coor_lin11c(1,1),y_coor_lin11c(1,2) /-20.66,-2.497/
79          DATA y_coor_lin11c(2,1),y_coor_lin11c(2,2) /-9.10, -2.52/
80          DATA y_coor_lin11c(3,1),y_coor_lin11c(3,2) /-24.07,-2.12/
81          DATA y_coor_lin11c(4,1),y_coor_lin11c(4,2) /-13.40,-2.47/
82          DATA y_coor_lin11c(5,1),y_coor_lin11c(5,2) /-31.07,-2.32/
83          DATA y_coor_lin11c(6,1),y_coor_lin11c(6,2) /-21.69,-2.63/
84          DATA y_coor_lin11c(7,1),y_coor_lin11c(7,2) /-12.37,-2.65/
85          DATA y_coor_lin11c(8,1),y_coor_lin11c(8,2) /-10.81,-3.15/
86    
87          DATA x_coor_lin12c(1,1),x_coor_lin12c(1,2) /12.96, -2.65/
88          DATA x_coor_lin12c(2,1),x_coor_lin12c(2,2) /17.12,-2.44/
89          DATA x_coor_lin12c(3,1),x_coor_lin12c(3,2) /7.26, -1.98/
90          DATA x_coor_lin12c(4,1),x_coor_lin12c(4,2) /-22.52,-2.27/
91          DATA x_coor_lin12c(5,1),x_coor_lin12c(5,2) /-18.54,-2.28/
92          DATA x_coor_lin12c(6,1),x_coor_lin12c(6,2) /-7.67,-2.15/
93    
94          DATA x_coor_lin21c(1,1),x_coor_lin21c(1,2) /22.56,-1.56/
95          DATA x_coor_lin21c(2,1),x_coor_lin21c(2,2) /13.94,-1.56/
96    
97          DATA y_coor_lin22c(1,1),y_coor_lin22c(1,2) /-24.24,-2.23/
98          DATA y_coor_lin22c(2,1),y_coor_lin22c(2,2) /-45.99,-1.68/
99    
100          DATA y_coor_lin31c(1,1),y_coor_lin31c(1,2) /-22.99,-3.54/
101          DATA y_coor_lin31c(2,1),y_coor_lin31c(2,2) /-42.28,-4.10/
102          DATA y_coor_lin31c(3,1),y_coor_lin31c(3,2) /-41.29,-3.69/
103    
104          DATA x_coor_lin32c(1,1),x_coor_lin32c(1,2) /0.961, -3.22/
105          DATA x_coor_lin32c(2,1),x_coor_lin32c(2,2) /4.98,-3.48/
106          DATA x_coor_lin32c(3,1),x_coor_lin32c(3,2) /-22.08,-3.37/
107    
108                
109        REAL theta13        REAL theta13
110  C--   DATA ZTOF/53.74,53.04,23.94,23.44,-23.49,-24.34/ !Sergio 9.05.2006  
111          DOUBLE PRECISION ZTOF(6)
112          DATA ZTOF/53.74,53.04,23.94,23.44,-23.49,-24.34/ !Sergio 9.05.2006
113    
114        REAL tofarm12        REAL tofarm12
115        PARAMETER (tofarm12 = 29.70) ! from 53.39 to 23.69        PARAMETER (tofarm12 = 29.70) ! from 53.39 to 23.69
116        REAL tofarm23                REAL tofarm23        
117        PARAMETER (tofarm23 = 47.61)  ! from 23.69 to -23.92        PARAMETER (tofarm23 = 47.61)  ! from 23.69 to -23.92
118        REAL tofarm13        REAL tofarm13
119        PARAMETER (tofarm13 = 77.31)  ! from 53.39 to -23.92        PARAMETER (tofarm13 = 77.31)  ! from 53.39 to -23.92
# Line 67  C--   DATA ZTOF/53.74,53.04,23.94,23.44, Line 121  C--   DATA ZTOF/53.74,53.04,23.94,23.44,
121        REAL hepratio              REAL hepratio      
122    
123        INTEGER ihelp        INTEGER ihelp
124        REAL xkorr        REAL xkorr,btemp(12)
125    
126          REAL atten,pc_adc,check_charge,newbeta
127    
128          INTEGER IZ
129    
130    
131          INTEGER ifst
132          DATA  ifst /0/
133    
134  C---------------------------------------  C---------------------------------------
135  C      C    
# Line 77  C     Line 139  C    
139  C      C    
140  C     CALCULATE COMMON VARIABLES  C     CALCULATE COMMON VARIABLES
141  C      C    
142    C-------------------------------------------------------------------
143    
144  *******************************************************************          if (ifst.eq.0) then
145        icounter = icounter + 1  
146            ifst=1
147    
148  *     amplitude has to be 'secure' higher than pedestal for an adc event  C     amplitude has to be 'secure' higher than pedestal for an adc event
149        secure = 2.         secure = 2.
150    
151  C     ratio between helium and proton ca. 4  C     ratio between helium and proton ca. 4
152        hepratio = 4.5  !         hepratio = 4.  !
153        offset = 1         offset = 1
154        slope = 2         slope = 2
155        left = 1         left = 1
156        right = 2         right = 2
157        none_ev = 0         none_ev = 0
158        none_find = 0         none_find = 0
159        tdc_ev = 1         tdc_ev = 1
160        adc_ev = 1         adc_ev = 1
161        itdc = 1         itdc = 1
162        iadc = 2         iadc = 2
163    
164            ENDIF
165    C---------------------------------------------------------------------
166    
167          icounter = icounter + 1
168    
169    
170        do i=1,13        do i=1,13
171           betatof_a(i) = 100.          ! As in "troftrk.for"           betatof_a(i) = 100.          ! As in "troftrk.for"
172        enddo        enddo
173    
174          do i=1,6
175             hitvec(i) = -1
176          enddo
177    
178        do i=1,4        do i=1,4
179           do j=1,12           do j=1,12
180              adctof_c(i,j) = 1000.              adctof_c(i,j) = 1000.
# Line 136  c gf tdc falg: Line 210  c gf tdc falg:
210           enddo           enddo
211        enddo        enddo
212    
 c the calibration files are read in the main program from xxx_tofcalib.rz  
213    
214    C---  Fill xtr_tof and ytr_tof: positions from tracker at ToF layers
215    C---  since this is standalone ToF fill with default values
216          do j=1,6
217          xtr_tof(j) = 101.
218          ytr_tof(j) = 101.
219          enddo
220    
221    c the calibration files are read in the main program from xxx_tofcalib.rz
222    
223  c-------------------------get ToF data --------------------------------  c-------------------------get ToF data --------------------------------
224    
225  c     put the adc and tdc values from ntuple into tofxx(i,j,k) variables  c     put the adc and tdc values from ntuple into tofxx(i,j,k) variables
226    c     adc valueas are then pC
227    
228        do j=1,8        do j=1,8
229           tof11(1,j,2) = adc(ch11a(j),hb11a(j))           tof11(1,j,2) = pc_adc(adc(ch11a(j),hb11a(j)))
230           tof11(2,j,2) = adc(ch11b(j),hb11b(j))           tof11(2,j,2) = pc_adc(adc(ch11b(j),hb11b(j)))
231           tof11(1,j,1) = tdc(ch11a(j),hb11a(j))           tof11(1,j,1) = (tdc(ch11a(j),hb11a(j)))
232           tof11(2,j,1) = tdc(ch11b(j),hb11b(j))           tof11(2,j,1) = (tdc(ch11b(j),hb11b(j)))
233        enddo        enddo
234    
235    
236        do j=1,6        do j=1,6
237           tof12(1,j,2) = adc(ch12a(j),hb12a(j))           tof12(1,j,2) = pc_adc(adc(ch12a(j),hb12a(j)))
238           tof12(2,j,2) = adc(ch12b(j),hb12b(j))           tof12(2,j,2) = pc_adc(adc(ch12b(j),hb12b(j)))
239           tof12(1,j,1) = tdc(ch12a(j),hb12a(j))           tof12(1,j,1) = (tdc(ch12a(j),hb12a(j)))
240           tof12(2,j,1) = tdc(ch12b(j),hb12b(j))           tof12(2,j,1) = (tdc(ch12b(j),hb12b(j)))
241        enddo        enddo
242    
243        do j=1,2        do j=1,2
244           tof21(1,j,2) = adc(ch21a(j),hb21a(j))           tof21(1,j,2) = pc_adc(adc(ch21a(j),hb21a(j)))
245           tof21(2,j,2) = adc(ch21b(j),hb21b(j))           tof21(2,j,2) = pc_adc(adc(ch21b(j),hb21b(j)))
246           tof21(1,j,1) = tdc(ch21a(j),hb21a(j))           tof21(1,j,1) = (tdc(ch21a(j),hb21a(j)))
247           tof21(2,j,1) = tdc(ch21b(j),hb21b(j))           tof21(2,j,1) = (tdc(ch21b(j),hb21b(j)))
248        enddo        enddo
249    
250        do j=1,2        do j=1,2
251           tof22(1,j,2) = adc(ch22a(j),hb22a(j))           tof22(1,j,2) = pc_adc(adc(ch22a(j),hb22a(j)))
252           tof22(2,j,2) = adc(ch22b(j),hb22b(j))           tof22(2,j,2) = pc_adc(adc(ch22b(j),hb22b(j)))
253           tof22(1,j,1) = tdc(ch22a(j),hb22a(j))           tof22(1,j,1) = (tdc(ch22a(j),hb22a(j)))
254           tof22(2,j,1) = tdc(ch22b(j),hb22b(j))           tof22(2,j,1) = (tdc(ch22b(j),hb22b(j)))
255        enddo        enddo
256    
257        do j=1,3        do j=1,3
258           tof31(1,j,2) = adc(ch31a(j),hb31a(j))           tof31(1,j,2) = pc_adc(adc(ch31a(j),hb31a(j)))
259           tof31(2,j,2) = adc(ch31b(j),hb31b(j))           tof31(2,j,2) = pc_adc(adc(ch31b(j),hb31b(j)))
260           tof31(1,j,1) = tdc(ch31a(j),hb31a(j))           tof31(1,j,1) = (tdc(ch31a(j),hb31a(j)))
261           tof31(2,j,1) = tdc(ch31b(j),hb31b(j))           tof31(2,j,1) = (tdc(ch31b(j),hb31b(j)))
262        enddo        enddo
263    
264        do j=1,3        do j=1,3
265           tof32(1,j,2) = adc(ch32a(j),hb32a(j))           tof32(1,j,2) = pc_adc(adc(ch32a(j),hb32a(j)))
266           tof32(2,j,2) = adc(ch32b(j),hb32b(j))           tof32(2,j,2) = pc_adc(adc(ch32b(j),hb32b(j)))
267           tof32(1,j,1) = tdc(ch32a(j),hb32a(j))           tof32(1,j,1) = (tdc(ch32a(j),hb32a(j)))
268           tof32(2,j,1) = tdc(ch32b(j),hb32b(j))           tof32(2,j,1) = (tdc(ch32b(j),hb32b(j)))
269        enddo        enddo
270    
271  C----------------------------------------------------------------------  C----------------------------------------------------------------------
# Line 289  C---- S222B TDC=819 Line 370  C---- S222B TDC=819
370               tdcflagtof(ch22b(2),hb22b(2))=2               tdcflagtof(ch22b(2),hb22b(2))=2
371         endif         endif
372    
   
373  C----------------------------------------------------------------  C----------------------------------------------------------------
374  C------------   Check Paddles for hits    -----------------------  C------------   Check Paddles for hits    -----------------------
375  C------  a "hit" means TDC values<4095 on both sides ------------  C------  a "hit" means TDC values<4095 on both sides ------------
# Line 471  c     check if an other paddle has also Line 551  c     check if an other paddle has also
551                 ENDIF                 ENDIF
552              ENDIF              ENDIF
553           ENDIF           ENDIF
554        ENDDO         ENDDO
555    
556        do i=1,6         do i=1,6
557           tof_i_flag(i)=0           tof_i_flag(i)=0
558           tof_j_flag(i)=0           tof_j_flag(i)=0
559        enddo         enddo
560    
561           tof_i_flag(1)=tof11_i
562           tof_i_flag(2)=tof12_i
563           tof_i_flag(3)=tof21_i
564           tof_i_flag(4)=tof22_i
565           tof_i_flag(5)=tof31_i
566           tof_i_flag(6)=tof32_i
567    
568           tof_j_flag(1)=tof11_j
569           tof_j_flag(2)=tof12_j
570           tof_j_flag(3)=tof21_j
571           tof_j_flag(4)=tof22_j
572           tof_j_flag(5)=tof31_j
573           tof_j_flag(6)=tof32_j
574    
575           hitvec(1)=tof11_i
576           hitvec(2)=tof12_i
577           hitvec(3)=tof21_i
578           hitvec(4)=tof22_i
579           hitvec(5)=tof31_i
580           hitvec(6)=tof32_i
581    
       tof_i_flag(1)=tof11_i  
       tof_i_flag(2)=tof12_i  
       tof_i_flag(3)=tof21_i  
       tof_i_flag(4)=tof22_i  
       tof_i_flag(5)=tof31_i  
       tof_i_flag(6)=tof32_i  
   
       tof_j_flag(1)=tof11_j  
       tof_j_flag(2)=tof12_j  
       tof_j_flag(3)=tof21_j  
       tof_j_flag(4)=tof22_j  
       tof_j_flag(5)=tof31_j  
       tof_j_flag(6)=tof32_j  
582    
           
583  C------------------------------------------------------------------  C------------------------------------------------------------------
584  C---  calculate track position in paddle using timing difference  C--  calculate track position in paddle using timing difference
585    C--  this calculation is preliminary and uses some standard
586    C--  calibration values, but we need to find a rough position to
587    C--  be able to calculate artificial ADC values (needed for the
588    C--  timewalk...
589  C------------------------------------------------------------------  C------------------------------------------------------------------
590    
591        do i=1,3         do i=1,3
592           xtofpos(i)=100.           xtofpos(i)=100.
593           ytofpos(i)=100.           ytofpos(i)=100.
594        enddo         enddo
595    
596  C-----------------------------S1 --------------------------------  C-----------------------------S1 --------------------------------
597    
598        IF (tof11_i.GT.none_find) THEN        IF (tof11_i.GT.none_find) THEN
599           ytofpos(1)  = ((tof11(1,tof11_i,itdc)-tof11(2,tof11_i,itdc))/2.           ytofpos(1)  = ((tof11(1,tof11_i,itdc)-tof11(2,tof11_i,itdc))/2.
600       +        -y_coor_lin11(tof11_i,offset))/y_coor_lin11(tof11_i,slope)       +   -y_coor_lin11c(tof11_i,offset))/y_coor_lin11c(tof11_i,slope)
601        endif        endif
602    
603        IF (tof12_i.GT.none_find) THEN        IF (tof12_i.GT.none_find) THEN
604           xtofpos(1)  = ((tof12(1,tof12_i,itdc)-tof12(2,tof12_i,itdc))/2.           xtofpos(1)  = ((tof12(1,tof12_i,itdc)-tof12(2,tof12_i,itdc))/2.
605       +        -x_coor_lin12(tof12_i,offset))/x_coor_lin12(tof12_i,slope)       +   -x_coor_lin12c(tof12_i,offset))/x_coor_lin12c(tof12_i,slope)
606        endif        endif
607    
608    
# Line 518  C-----------------------------S2 ------- Line 610  C-----------------------------S2 -------
610    
611        IF (tof21_i.GT.none_find) THEN        IF (tof21_i.GT.none_find) THEN
612           xtofpos(2) = ((tof21(1,tof21_i,itdc)-tof21(2,tof21_i,itdc))/2.           xtofpos(2) = ((tof21(1,tof21_i,itdc)-tof21(2,tof21_i,itdc))/2.
613       +        -x_coor_lin21(tof21_i,offset))/x_coor_lin21(tof21_i,slope)       +    -x_coor_lin21c(tof21_i,offset))/x_coor_lin21c(tof21_i,slope)
614        endif        endif
615    
616        IF (tof22_i.GT.none_find) THEN        IF (tof22_i.GT.none_find) THEN
617           ytofpos(2) = ((tof22(1,tof22_i,itdc)-tof22(2,tof22_i,itdc))/2.           ytofpos(2) = ((tof22(1,tof22_i,itdc)-tof22(2,tof22_i,itdc))/2.
618       +        -y_coor_lin22(tof22_i,offset))/y_coor_lin22(tof22_i,slope)       +    -y_coor_lin22c(tof22_i,offset))/y_coor_lin22c(tof22_i,slope)
619        endif        endif
620                
621    
# Line 531  C-----------------------------S3 ------- Line 623  C-----------------------------S3 -------
623    
624        IF (tof31_i.GT.none_find) THEN        IF (tof31_i.GT.none_find) THEN
625           ytofpos(3)  = ((tof31(1,tof31_i,itdc)-tof31(2,tof31_i,itdc))/2.           ytofpos(3)  = ((tof31(1,tof31_i,itdc)-tof31(2,tof31_i,itdc))/2.
626       +        -y_coor_lin31(tof31_i,offset))/y_coor_lin31(tof31_i,slope)       +    -y_coor_lin31c(tof31_i,offset))/y_coor_lin31c(tof31_i,slope)
627        endif        endif
628    
629        IF (tof32_i.GT.none_find) THEN        IF (tof32_i.GT.none_find) THEN
630           xtofpos(3)  = ((tof32(1,tof32_i,itdc)-tof32(2,tof32_i,itdc))/2.           xtofpos(3)  = ((tof32(1,tof32_i,itdc)-tof32(2,tof32_i,itdc))/2.
631       +        -x_coor_lin32(tof32_i,offset))/x_coor_lin32(tof32_i,slope)       +    -x_coor_lin32c(tof32_i,offset))/x_coor_lin32c(tof32_i,slope)
632        endif        endif
633    
634    
635  c      do i=1,3  C----------------------------------------------------------------------
636  c         if (abs(xtofpos(i)).gt.100.) then  C---------------------  zenith angle theta  ---------------------------
637  c            xtofpos(i)=101.  C----------------------------------------------------------------------
 c         endif  
 c         if (abs(ytofpos(i)).gt.100.) then  
 c            ytofpos(i)=101.  
 c         endif  
 c      enddo  
638    
639  C--  restrict TDC measurements to physical paddle dimensions +/- 10 cm         xhelp1=0.
640  C--  this cut is now stronger than in the old versions         if (tof11_i.GT.none_find) xhelp1=tof11_x(tof11_i)
641           if (xtofpos(1).lt.100)  xhelp1=xtofpos(1)
642    
643          if (abs(xtofpos(1)).gt.31.)  xtofpos(1)=101.         yhelp1=0.
644          if (abs(xtofpos(2)).gt.19.)  xtofpos(2)=101.         if (tof12_i.GT.none_find) yhelp1=tof12_y(tof12_i)
645          if (abs(xtofpos(3)).gt.19.)  xtofpos(3)=101.         if (ytofpos(1).lt.100)  yhelp1=ytofpos(1)
646    
         if (abs(ytofpos(1)).gt.26.)  ytofpos(1)=101.  
         if (abs(ytofpos(2)).gt.18.)  ytofpos(2)=101.  
         if (abs(ytofpos(3)).gt.18.)  ytofpos(3)=101.  
647    
648           yhelp2=0.
649           if (tof32_i.GT.none_find) yhelp2=tof32_y(tof32_i)
650           if (ytofpos(3).lt.100)  yhelp2=ytofpos(3)
651    
652  C----------------------------------------------------------------------         xhelp2=0.
653  C---------------------  zenith angle theta  ---------------------------         if (tof31_i.GT.none_find) xhelp2=tof31_x(tof31_i)
654  C----------------------------------------------------------------------         if (xtofpos(3).lt.100)  xhelp2=xtofpos(3)
655    
       dx=0.  
       dy=0.  
       dr=0.  
       theta13 = 0.  
   
          IF ((tof12_i.GT.none_find).AND.(tof32_i.GT.none_find))  
      &        dx  = xtofpos(1) - xtofpos(3)  
          IF ((tof11_i.GT.none_find).AND.(tof31_i.GT.none_find))  
      &        dy  = ytofpos(1) - ytofpos(3)  
          dr = sqrt(dx*dx+dy*dy)  
          theta13 = atan(dr/tofarm13)  
656    
657  C------------------------------------------------------------------         dx=0.
658  c      dx=0.         dy=0.
659  c      dy=0.         dr=0.
660  c      dr=0.         theta13 = 0.
661  c      theta12 = 0.  
662  c         dx  = xhelp1 - xhelp2
663  c         IF ((tof12_i.GT.none_find).AND.(tof21_i.GT.none_find))         dy  = yhelp1 - yhelp2
664  c     &        dx  = xtofpos(1) - xtofpos(2)         dr = sqrt(dx*dx+dy*dy)
665  c         IF ((tof11_i.GT.none_find).AND.(tof22_i.GT.none_find))         theta13 = atan(dr/tofarm13)
666  c     &        dy  = ytofpos(1) - ytofpos(2)  
667  c         dr = sqrt(dx*dx+dy*dy)  
668  c         theta12 = atan(dr/tofarm12)  C----------------------------------------------------------------------
669  c          C--- check charge:
670  c      dx=0.  C--- if Z=2 we should use the attenuation curve for helium to
671  c      dy=0.  C--- fill the artificail ADC values and NOT divide by "hepratio"
672  c      dr=0.  C--- if Z>2 we should do a correction to
673  c      theta23 = 0.  C--- the k1 constants in the beta calculation
674  c  C----------------------------------------------------------------------
 c         IF ((tof21_i.GT.none_find).AND.(tof32_i.GT.none_find))  
 c     &        dx  = xtofpos(2) - xtofpos(3)  
 c         IF ((tof22_i.GT.none_find).AND.(tof31_i.GT.none_find))  
 c     &        dy  = ytofpos(2) - ytofpos(3)  
 c         dr = sqrt(dx*dx+dy*dy)  
 c         theta23 = atan(dr/tofarm23)  
 c          
 C---------------------------------------------------------------------  
675    
676             iz = int(check_charge(theta13,hitvec))
677    C         write(*,*) 'charge in tofl2com',iz
678    
679  C--------------------------------------------------------------------  C--------------------------------------------------------------------
680  C---- if TDCleft.and.TDCright and NO ADC insert artificial ADC  C---- if TDCleft.and.TDCright and NO ADC insert artificial ADC
# Line 620  c       DATA tof32_y/ -5.0,0.0,5.0/ Line 691  c       DATA tof32_y/ -5.0,0.0,5.0/
691    
692  C----------------------------  S1 -------------------------------------  C----------------------------  S1 -------------------------------------
693    
694         yhelp=0.  c       yhelp=0.
695           yhelp=100.  ! WM
696         if (tof12_i.GT.none_find) yhelp=tof12_y(tof12_i)         if (tof12_i.GT.none_find) yhelp=tof12_y(tof12_i)
697         if (ytofpos(1).lt.100)  yhelp=ytofpos(1)         if (ytofpos(1).lt.100)  yhelp=ytofpos(1)
698    
699         IF (tof11_i.GT.none_find.AND.abs(yhelp).lt.100) THEN         IF (tof11_i.GT.none_find.AND.abs(yhelp).lt.100) THEN
700           i = tof11_i           i = tof11_i
701           if (tof11(left,i,iadc).eq.4095) then           if (adc(ch11a(i),hb11a(i)).eq.4095) then
702              xkorr=adcx11(left,i,1)*exp(-yhelp/adcx11(left,i,2))              xkorr = atten(left,11,i,yhelp)
703              xkorr=xkorr/hepratio              if (iz.le.1) xkorr=xkorr/hepratio
704              tof11(left,i,iadc)=xkorr/cos(theta13)              tof11(left,i,iadc)=xkorr/cos(theta13)
 c            write(*,*) 'tofl2 left ',i, tof11(left,i,iadc)  
705              adcflagtof(ch11a(i),hb11a(i)) = 1              adcflagtof(ch11a(i),hb11a(i)) = 1
706           endif           endif
707           if (tof11(right,i,iadc).eq.4095) then           if (adc(ch11b(i),hb11b(i)).eq.4095) then
708              xkorr=adcx11(right,i,1)*exp(yhelp/adcx11(right,i,2))              xkorr = atten(right,11,i,yhelp)
709              xkorr=xkorr/hepratio              if (iz.le.1) xkorr=xkorr/hepratio
710              tof11(right,i,iadc)=xkorr/cos(theta13)              tof11(right,i,iadc)=xkorr/cos(theta13)
 c            write(*,*) 'tofl2 right ',i, tof11(right,i,iadc)  
711              adcflagtof(ch11b(i),hb11b(i)) = 1              adcflagtof(ch11b(i),hb11b(i)) = 1
712           endif           endif
713         ENDIF         ENDIF
714    
715         xhelp=0.  c       xhelp=0.
716           xhelp=100.  ! WM
717         if (tof11_i.GT.none_find) xhelp=tof11_x(tof11_i)         if (tof11_i.GT.none_find) xhelp=tof11_x(tof11_i)
718         if (xtofpos(1).lt.100)  xhelp=xtofpos(1)         if (xtofpos(1).lt.100)  xhelp=xtofpos(1)
719    
720         IF (tof12_i.GT.none_find.AND.abs(xhelp).lt.100) THEN         IF (tof12_i.GT.none_find.AND.abs(xhelp).lt.100) THEN
721           i = tof12_i           i = tof12_i
722           if (tof12(left,i,iadc).eq.4095) then           if (adc(ch12a(i),hb12a(i)).eq.4095) then
723              xkorr=adcx12(left,i,1)*exp(-xhelp/adcx12(left,i,2))              xkorr = atten(left,12,i,xhelp)
724              xkorr=xkorr/hepratio              if (iz.le.1) xkorr=xkorr/hepratio
725              tof12(left,i,iadc) = xkorr/cos(theta13)              tof12(left,i,iadc) = xkorr/cos(theta13)
726              adcflagtof(ch12a(i),hb12a(i)) = 1              adcflagtof(ch12a(i),hb12a(i)) = 1
727           endif           endif
728           if (tof12(right,i,iadc).eq.4095) then           if (adc(ch12b(i),hb12b(i)).eq.4095) then
729              xkorr=adcx12(right,i,1)*exp(xhelp/adcx12(right,i,2))              xkorr = atten(right,12,i,xhelp)
730              xkorr=xkorr/hepratio              if (iz.le.1) xkorr=xkorr/hepratio
731              tof12(right,i,iadc) = xkorr/cos(theta13)              tof12(right,i,iadc) = xkorr/cos(theta13)
732              adcflagtof(ch12b(i),hb12b(i)) = 1              adcflagtof(ch12b(i),hb12b(i)) = 1
733           endif           endif
# Line 664  c            write(*,*) 'tofl2 right ',i Line 735  c            write(*,*) 'tofl2 right ',i
735    
736  C-----------------------------S2 --------------------------------  C-----------------------------S2 --------------------------------
737    
738         xhelp=0.  c       xhelp=0.
739           xhelp=100.   ! WM
740         if (tof22_i.GT.none_find) xhelp=tof22_x(tof22_i)         if (tof22_i.GT.none_find) xhelp=tof22_x(tof22_i)
741         if (xtofpos(2).lt.100)  xhelp=xtofpos(2)         if (xtofpos(2).lt.100)  xhelp=xtofpos(2)
742    
743         IF (tof21_i.GT.none_find.AND.abs(xhelp).lt.100) THEN         IF (tof21_i.GT.none_find.AND.abs(xhelp).lt.100) THEN
744           i = tof21_i           i = tof21_i
745           if (tof21(left,i,iadc).eq.4095) then           if (adc(ch21a(i),hb21a(i)).eq.4095) then
746              xkorr=adcx21(left,i,1)*exp(-xhelp/adcx21(left,i,2))              xkorr = atten(left,21,i,xhelp)
747              xkorr=xkorr/hepratio              if (iz.le.1) xkorr=xkorr/hepratio
748              tof21(left,i,iadc) = xkorr/cos(theta13)              tof21(left,i,iadc) = xkorr/cos(theta13)
749              adcflagtof(ch21a(i),hb21a(i)) = 1              adcflagtof(ch21a(i),hb21a(i)) = 1
750           endif           endif
751           if (tof21(right,i,iadc).eq.4095) then           if (adc(ch21b(i),hb21b(i)).eq.4095) then
752              xkorr=adcx21(right,i,1)*exp(xhelp/adcx21(right,i,2))              xkorr = atten(right,21,i,xhelp)
753              xkorr=xkorr/hepratio              if (iz.le.1) xkorr=xkorr/hepratio
754              tof21(right,i,iadc) = xkorr/cos(theta13)              tof21(right,i,iadc) = xkorr/cos(theta13)
755              adcflagtof(ch21b(i),hb21b(i)) = 1              adcflagtof(ch21b(i),hb21b(i)) = 1
756           endif           endif
757         ENDIF         ENDIF
758    
759    
760         yhelp=0.  c       yhelp=0.
761           yhelp=100.   ! WM
762         if (tof21_i.GT.none_find) yhelp=tof21_y(tof21_i)         if (tof21_i.GT.none_find) yhelp=tof21_y(tof21_i)
763         if (ytofpos(2).lt.100)  yhelp=ytofpos(2)         if (ytofpos(2).lt.100)  yhelp=ytofpos(2)
764    
765         IF (tof22_i.GT.none_find.AND.abs(yhelp).lt.100) THEN         IF (tof22_i.GT.none_find.AND.abs(yhelp).lt.100) THEN
766           i = tof22_i           i = tof22_i
767           if (tof22(left,i,iadc).eq.4095) then           if (adc(ch22a(i),hb22a(i)).eq.4095) then
768              xkorr=adcx22(left,i,1)*exp(-yhelp/adcx22(left,i,2))              xkorr = atten(left,22,i,yhelp)
769              xkorr=xkorr/hepratio              if (iz.le.1) xkorr=xkorr/hepratio
770              tof22(left,i,iadc) = xkorr/cos(theta13)              tof22(left,i,iadc) = xkorr/cos(theta13)
771              adcflagtof(ch22a(i),hb22a(i)) = 1              adcflagtof(ch22a(i),hb22a(i)) = 1
772           endif           endif
773           if (tof22(right,i,iadc).eq.4095) then           if (adc(ch22b(i),hb22b(i)).eq.4095) then
774              xkorr=adcx22(right,i,1)*exp(yhelp/adcx22(right,i,2))              xkorr = atten(right,22,i,yhelp)
775              xkorr=xkorr/hepratio              if (iz.le.1) xkorr=xkorr/hepratio
776              tof22(right,i,iadc) = xkorr/cos(theta13)              tof22(right,i,iadc) = xkorr/cos(theta13)
777              adcflagtof(ch22b(i),hb22b(i)) = 1              adcflagtof(ch22b(i),hb22b(i)) = 1
778           endif           endif
# Line 707  C-----------------------------S2 ------- Line 780  C-----------------------------S2 -------
780    
781  C-----------------------------S3 --------------------------------  C-----------------------------S3 --------------------------------
782    
783         yhelp=0.  c       yhelp=0.
784           yhelp=100.  ! WM
785         if (tof32_i.GT.none_find) yhelp=tof32_y(tof32_i)         if (tof32_i.GT.none_find) yhelp=tof32_y(tof32_i)
786         if (ytofpos(3).lt.100)  yhelp=ytofpos(3)         if (ytofpos(3).lt.100)  yhelp=ytofpos(3)
787    
788         IF (tof31_i.GT.none_find.AND.abs(yhelp).lt.100) THEN         IF (tof31_i.GT.none_find.AND.abs(yhelp).lt.100) THEN
789           i = tof31_i           i = tof31_i
790           if (tof31(left,i,iadc).eq.4095) then           if (adc(ch31a(i),hb31a(i)).eq.4095) then
791              xkorr=adcx31(left,i,1)*exp(-yhelp/adcx31(left,i,2))              xkorr = atten(left,31,i,yhelp)
792              xkorr=xkorr/hepratio              if (iz.le.1) xkorr=xkorr/hepratio
793              tof31(left,i,iadc) = xkorr/cos(theta13)              tof31(left,i,iadc) = xkorr/cos(theta13)
794              adcflagtof(ch31a(i),hb31a(i)) = 1              adcflagtof(ch31a(i),hb31a(i)) = 1
795           endif           endif
796           if (tof31(right,i,iadc).eq.4095) then           if (adc(ch31b(i),hb31b(i)).eq.4095) then
797              xkorr=adcx31(right,i,1)*exp(yhelp/adcx31(right,i,2))              xkorr = atten(right,31,i,yhelp)
798              xkorr=xkorr/hepratio              if (iz.le.1) xkorr=xkorr/hepratio
799              tof31(right,i,iadc) = xkorr/cos(theta13)              tof31(right,i,iadc) = xkorr/cos(theta13)
800              adcflagtof(ch31b(i),hb31b(i)) = 1              adcflagtof(ch31b(i),hb31b(i)) = 1
801           endif           endif
802         ENDIF         ENDIF
803    
804         xhelp=0.  c       xhelp=0.
805           xhelp=100.   ! WM
806         if (tof31_i.GT.none_find) xhelp=tof31_x(tof31_i)         if (tof31_i.GT.none_find) xhelp=tof31_x(tof31_i)
807         if (xtofpos(3).lt.100)  xhelp=xtofpos(3)         if (xtofpos(3).lt.100)  xhelp=xtofpos(3)
808    
809         IF (tof32_i.GT.none_find.AND.abs(xhelp).lt.100) THEN         IF (tof32_i.GT.none_find.AND.abs(xhelp).lt.100) THEN
810           i = tof32_i           i = tof32_i
811           if (tof32(left,i,iadc).eq.4095) then           if (adc(ch32a(i),hb32a(i)).eq.4095) then
812              xkorr=adcx32(left,i,1)*exp(-xhelp/adcx32(left,i,2))              xkorr = atten(left,32,i,xhelp)
813              xkorr=xkorr/hepratio              if (iz.le.1) xkorr=xkorr/hepratio
814              tof32(left,i,iadc) = xkorr/cos(theta13)              tof32(left,i,iadc) = xkorr/cos(theta13)
815              adcflagtof(ch32a(i),hb32a(i)) = 1              adcflagtof(ch32a(i),hb32a(i)) = 1
816           endif           endif
817           if (tof32(right,i,iadc).eq.4095) then           if (adc(ch32b(i),hb32b(i)).eq.4095) then
818              xkorr=adcx32(right,i,1)*exp(xhelp/adcx32(right,i,2))              xkorr = atten(right,32,i,xhelp)
819              xkorr=xkorr/hepratio              if (iz.le.1) xkorr=xkorr/hepratio
820              tof32(right,i,iadc) = xkorr/cos(theta13)              tof32(right,i,iadc) = xkorr/cos(theta13)
821              adcflagtof(ch32b(i),hb32b(i)) = 1              adcflagtof(ch32b(i),hb32b(i)) = 1
822           endif           endif
823         ENDIF         ENDIF
824    
825    
826  C--------------------------------------------------------------------  C-------------------------------------------------------------------
827  C--------------------Time walk correction  -------------------------  C--------------------Time walk correction  -------------------------
828  C--------------------------------------------------------------------  C-------------------------------------------------------------------
829    C-------------------------------------------------------------------
830    C Now there is for each hitted paddle a TDC and ADC value, if the
831    C TDC was < 4095.
832    C There might be also TDC-ADC pairs in paddles not hitted
833    
834    C-------------------------------------------------------------------
835    C If we have multiple paddles hit, so that no artificial ADC value
836    C is created, we set the raw TDC value as "tdc_c"
837    C-------------------------------------------------------------------
838    c
839    c       do i=1,4
840    c         do j=1,12
841    c            tdc_c(i,j) = tdc(i,j)
842    c         enddo
843    c       enddo
844    c
845    C----  Let's correct the raw TDC value with the time walk  ---------
846    
847        DO i=1,8        DO i=1,8
848         xhelp= 0.           if ((tdc(ch11a(i),hb11a(i)).lt.4095).and.
849         xhelp_a = tof11(left,i,iadc)       &             (tof11(left,i,iadc).lt.3786)) THEN
850         xhelp_t = tof11(left,i,itdc)           xhelp = tw11(left,i)/(tof11(left,i,iadc)**0.5)
851         if(xhelp_a<4095) xhelp = tw11(left,i)/sqrt(xhelp_a)           tof11(left,i,itdc) = tof11(left,i,itdc) + xhelp
852         tof11(left,i,itdc) = xhelp_t  + xhelp           tdc_c(ch11a(i),hb11a(i))=tof11(left,i,itdc)
853         tdc_c(ch11a(i),hb11a(i))=tof11(left,i,itdc)                                                ENDIF
854         xhelp_a = tof11(right,i,iadc)  
855         xhelp_t = tof11(right,i,itdc)           if ((tdc(ch11b(i),hb11b(i)).lt.4095).and.
856         if(xhelp_a<4095) xhelp = tw11(right,i)/sqrt(xhelp_a)       &             (tof11(right,i,iadc).lt.3786)) THEN
857         tof11(right,i,itdc) = xhelp_t  + xhelp           xhelp = tw11(right,i)/(tof11(right,i,iadc)**0.5)
858         tdc_c(ch11b(i),hb11b(i))=tof11(right,i,itdc)           tof11(right,i,itdc) = tof11(right,i,itdc) + xhelp
859             tdc_c(ch11b(i),hb11b(i))=tof11(right,i,itdc)
860                                                 ENDIF
861        ENDDO        ENDDO
862    
863    
864        DO i=1,6        DO i=1,6
865         xhelp= 0.           if ((tdc(ch12a(i),hb12a(i)).lt.4095).and.
866         xhelp_a = tof12(left,i,iadc)       &             (tof12(left,i,iadc).lt.3786)) THEN
867         xhelp_t = tof12(left,i,itdc)           xhelp = tw12(left,i)/(tof12(left,i,iadc)**0.5)
868         if(xhelp_a<4095) xhelp = tw12(left,i)/sqrt(xhelp_a)           tof12(left,i,itdc) = tof12(left,i,itdc) + xhelp
869         tof12(left,i,itdc) = xhelp_t  + xhelp           tdc_c(ch12a(i),hb12a(i))=tof12(left,i,itdc)
870         tdc_c(ch12a(i),hb12a(i))=tof12(left,i,itdc)                                                ENDIF
871         xhelp_a = tof12(right,i,iadc)  
872         xhelp_t = tof12(right,i,itdc)           if ((tdc(ch12b(i),hb12b(i)).lt.4095).and.
873         if(xhelp_a<4095) xhelp = tw12(right,i)/sqrt(xhelp_a)       &             (tof12(right,i,iadc).lt.3786)) THEN
874         tof12(right,i,itdc) = xhelp_t  + xhelp           xhelp = tw12(right,i)/(tof12(right,i,iadc)**0.5)
875         tdc_c(ch12b(i),hb12b(i))=tof12(right,i,itdc)           tof12(right,i,itdc) = tof12(right,i,itdc) + xhelp
876             tdc_c(ch12b(i),hb12b(i))=tof12(right,i,itdc)
877                                                 ENDIF
878        ENDDO        ENDDO
879    
880  C----  C----
881        DO i=1,2        DO I=1,2
882         xhelp= 0.           if ((tdc(ch21a(i),hb21a(i)).lt.4095).and.
883         xhelp_a = tof21(left,i,iadc)       &             (tof21(left,i,iadc).lt.3786)) THEN
884         xhelp_t = tof21(left,i,itdc)           xhelp = tw21(left,i)/(tof21(left,i,iadc)**0.5)
885         if(xhelp_a<4095) xhelp = tw21(left,i)/sqrt(xhelp_a)           tof21(left,i,itdc) = tof21(left,i,itdc) + xhelp
886         tof21(left,i,itdc) = xhelp_t  + xhelp           tdc_c(ch21a(i),hb21a(i))=tof21(left,i,itdc)
887         tdc_c(ch21a(i),hb21a(i))=tof21(left,i,itdc)                                                ENDIF
888         xhelp_a = tof21(right,i,iadc)  
889         xhelp_t = tof21(right,i,itdc)           if ((tdc(ch21b(i),hb21b(i)).lt.4095).and.
890         if(xhelp_a<4095) xhelp = tw21(right,i)/sqrt(xhelp_a)       &             (tof21(right,i,iadc).lt.3786)) THEN
891         tof21(right,i,itdc) = xhelp_t  + xhelp           xhelp = tw21(right,i)/(tof21(right,i,iadc)**0.5)
892         tdc_c(ch21b(i),hb21b(i))=tof21(right,i,itdc)           tof21(right,i,itdc) = tof21(right,i,itdc) + xhelp
893        ENDDO           tdc_c(ch21b(i),hb21b(i))=tof21(right,i,itdc)
894                                                 ENDIF
895        DO i=1,2        ENDDO
896         xhelp= 0.  
897         xhelp_a = tof22(left,i,iadc)        DO I=1,2
898         xhelp_t = tof22(left,i,itdc)           if ((tdc(ch22a(i),hb22a(i)).lt.4095).and.
899         if(xhelp_a<4095) xhelp = tw22(left,i)/sqrt(xhelp_a)       &             (tof22(left,i,iadc).lt.3786)) THEN
900         tof22(left,i,itdc) = xhelp_t  + xhelp           xhelp = tw22(left,i)/(tof22(left,i,iadc)**0.5)
901         tdc_c(ch22a(i),hb22a(i))=tof22(left,i,itdc)           tof22(left,i,itdc) = tof22(left,i,itdc) + xhelp
902         xhelp_a = tof22(right,i,iadc)           tdc_c(ch22a(i),hb22a(i))=tof22(left,i,itdc)
903         xhelp_t = tof22(right,i,itdc)                                                ENDIF
904         if(xhelp_a<4095) xhelp = tw22(right,i)/sqrt(xhelp_a)  
905         tof22(right,i,itdc) = xhelp_t  + xhelp           if ((tdc(ch22b(i),hb22b(i)).lt.4095).and.
906         tdc_c(ch22b(i),hb22b(i))=tof22(right,i,itdc)       &             (tof22(right,i,iadc).lt.3786)) THEN
907             xhelp = tw22(right,i)/(tof22(right,i,iadc)**0.5)
908             tof22(right,i,itdc) = tof22(right,i,itdc) + xhelp
909             tdc_c(ch22b(i),hb22b(i))=tof22(right,i,itdc)
910                                                 ENDIF
911        ENDDO        ENDDO
 C----  
912    
913        DO i=1,3  C----
914         xhelp= 0.        DO I=1,3
915         xhelp_a = tof31(left,i,iadc)           if ((tdc(ch31a(i),hb31a(i)).lt.4095).and.
916         xhelp_t = tof31(left,i,itdc)       &             (tof31(left,i,iadc).lt.3786)) THEN
917         if(xhelp_a<4095) xhelp = tw31(left,i)/sqrt(xhelp_a)           xhelp = tw31(left,i)/(tof31(left,i,iadc)**0.5)
918         tof31(left,i,itdc) = xhelp_t  + xhelp           tof31(left,i,itdc) = tof31(left,i,itdc) + xhelp
919         tdc_c(ch31a(i),hb31a(i))=tof31(left,i,itdc)           tdc_c(ch31a(i),hb31a(i))=tof31(left,i,itdc)
920         xhelp_a = tof31(right,i,iadc)                                                ENDIF
921         xhelp_t = tof31(right,i,itdc)  
922         if(xhelp_a<4095) xhelp = tw31(right,i)/sqrt(xhelp_a)           if ((tdc(ch31b(i),hb31b(i)).lt.4095).and.
923         tof31(right,i,itdc) = xhelp_t  + xhelp       &             (tof31(right,i,iadc).lt.3786)) THEN
924         tdc_c(ch31b(i),hb31b(i))=tof31(right,i,itdc)           xhelp = tw31(right,i)/(tof31(right,i,iadc)**0.5)
925        ENDDO           tof31(right,i,itdc) = tof31(right,i,itdc) + xhelp
926             tdc_c(ch31b(i),hb31b(i))=tof31(right,i,itdc)
927        DO i=1,3                                               ENDIF
928         xhelp= 0.        ENDDO
929         xhelp_a = tof32(left,i,iadc)  
930         xhelp_t = tof32(left,i,itdc)        DO I=1,3
931         if(xhelp_a<4095) xhelp = tw32(left,i)/sqrt(xhelp_a)           if ((tdc(ch32a(i),hb32a(i)).lt.4095).and.
932         tof32(left,i,itdc) = xhelp_t  + xhelp       &             (tof32(left,i,iadc).lt.3786)) THEN
933         tdc_c(ch32a(i),hb32a(i))=tof32(left,i,itdc)           xhelp = tw32(left,i)/(tof32(left,i,iadc)**0.5)
934         xhelp_a = tof32(right,i,iadc)           tof32(left,i,itdc) = tof32(left,i,itdc) + xhelp
935         xhelp_t = tof32(right,i,itdc)           tdc_c(ch32a(i),hb32a(i))=tof32(left,i,itdc)
936         if(xhelp_a<4095) xhelp = tw32(right,i)/sqrt(xhelp_a)                                                ENDIF
937         tof32(right,i,itdc) = xhelp_t  + xhelp  
938         tdc_c(ch32b(i),hb32b(i))=tof32(right,i,itdc)           if ((tdc(ch32b(i),hb32b(i)).lt.4095).and.
939         &             (tof32(right,i,iadc).lt.3786)) THEN
940             xhelp = tw32(right,i)/(tof32(right,i,iadc)**0.5)
941             tof32(right,i,itdc) = tof32(right,i,itdc) + xhelp
942             tdc_c(ch32b(i),hb32b(i))=tof32(right,i,itdc)
943                                                 ENDIF
944        ENDDO        ENDDO
945          
946    
947  C----------------------------------------------------------------------  C---------------------------------------------------------------
948  C------------------angle and ADC(x) correction  C--- calculate track position in paddle using timing difference
949  C----------------------------------------------------------------------  C--- now using the time-walk corrected TDC values
950  C-----------------------------S1 --------------------------------  C---------------------------------------------------------------
 c middle y (or x) position of the upper and middle ToF-Paddle  
 c       DATA tof11_x/ -17.85,-12.75,-7.65,-2.55,2.55,7.65,12.75,17.85/  
 c       DATA tof12_y/ -13.75,-8.25,-2.75,2.75,8.25,13.75/  
 c       DATA tof21_y/  3.75,-3.75/     ! paddles in different order  
 c       DATA tof22_x/ -4.5,4.5/  
 c       DATA tof31_x/ -6.0,0.,6.0/  
 c       DATA tof32_y/ -5.0,0.0,5.0/  
   
       yhelp=0.  
       if (tof12_i.GT.none_find) yhelp=tof12_y(tof12_i)  
       if (ytofpos(1).lt.100)  yhelp=ytofpos(1)  
   
       IF (tof11_i.GT.none_find.AND.abs(yhelp).lt.100) THEN  
951    
952           i = tof11_i        do i=1,3
953           if (tof11(left,i,iadc).lt.4095) then           xtofpos(i)=100.
954              tof11(left,i,iadc) = tof11(left,i,iadc)*cos(theta13)           ytofpos(i)=100.
955              xkorr=adcx11(left,i,1)*exp(-yhelp/adcx11(left,i,2))        enddo
             xkorr=xkorr/hepratio  
             adctof_c(ch11a(i),hb11a(i))=tof11(left,i,iadc)/xkorr  
          endif  
   
          if (tof11(right,i,iadc).lt.4095) then  
             tof11(right,i,iadc) = tof11(right,i,iadc)*cos(theta13)  
             xkorr=adcx11(right,i,1)*exp(yhelp/adcx11(right,i,2))  
             xkorr=xkorr/hepratio  
             adctof_c(ch11b(i),hb11b(i))=tof11(right,i,iadc)/xkorr  
          endif  
       ENDIF  
956    
957        xhelp=0.  C-----------------------------S1 --------------------------------
       if (tof11_i.GT.none_find) xhelp=tof11_x(tof11_i)  
       if (xtofpos(1).lt.100)  xhelp=xtofpos(1)  
958    
959        IF (tof12_i.GT.none_find.AND.abs(xhelp).lt.100) THEN        IF (tof11_i.GT.none_find) THEN
960             ytofpos(1)  = ((tof11(1,tof11_i,itdc)-tof11(2,tof11_i,itdc))/2.
961         +        -y_coor_lin11(tof11_i,offset))/y_coor_lin11(tof11_i,slope)
962           i=tof11_i
963          endif
964    
965           i = tof12_i        IF (tof12_i.GT.none_find) THEN
966           if (tof12(left,i,iadc).lt.4095) then           xtofpos(1)  = ((tof12(1,tof12_i,itdc)-tof12(2,tof12_i,itdc))/2.
967              tof12(left,i,iadc) = tof12(left,i,iadc)*cos(theta13)       +        -x_coor_lin12(tof12_i,offset))/x_coor_lin12(tof12_i,slope)
968              xkorr=adcx12(left,i,1)*exp(-xhelp/adcx12(left,i,2))        i=tof12_i
969              xkorr=xkorr/hepratio        endif
             adctof_c(ch12a(i),hb12a(i))=tof12(left,i,iadc)/xkorr  
          endif  
970    
          if (tof12(right,i,iadc).lt.4095) then  
             tof12(right,i,iadc) = tof12(right,i,iadc)*cos(theta13)  
             xkorr=adcx12(right,i,1)*exp(xhelp/adcx12(right,i,2))  
             xkorr=xkorr/hepratio  
             adctof_c(ch12b(i),hb12b(i))=tof12(right,i,iadc)/xkorr  
          endif  
       ENDIF  
971    
972  C-----------------------------S2 --------------------------------  C-----------------------------S2 --------------------------------
973    
974        xhelp=0.        IF (tof21_i.GT.none_find) THEN
975        if (tof22_i.GT.none_find) xhelp=tof22_x(tof22_i)           xtofpos(2) = ((tof21(1,tof21_i,itdc)-tof21(2,tof21_i,itdc))/2.
976        if (xtofpos(2).lt.100)  xhelp=xtofpos(2)       +        -x_coor_lin21(tof21_i,offset))/x_coor_lin21(tof21_i,slope)
977          i=tof21_i
978        IF (tof21_i.GT.none_find.AND.abs(xhelp).lt.100) THEN        endif
   
          i = tof21_i  
          if (tof21(left,i,iadc).lt.4095) then  
             tof21(left,i,iadc) = tof21(left,i,iadc)*cos(theta13)  
             xkorr=adcx21(left,i,1)*exp(-xhelp/adcx21(left,i,2))  
             xkorr=xkorr/hepratio  
             adctof_c(ch21a(i),hb21a(i))=tof21(left,i,iadc)/xkorr  
          endif  
   
          if (tof21(right,i,iadc).lt.4095) then  
             tof21(right,i,iadc) = tof21(right,i,iadc)*cos(theta13)  
             xkorr=adcx21(right,i,1)*exp(xhelp/adcx21(right,i,2))  
             xkorr=xkorr/hepratio  
             adctof_c(ch21b(i),hb21b(i))=tof21(right,i,iadc)/xkorr  
          endif  
       ENDIF  
   
979    
980        yhelp=0.        IF (tof22_i.GT.none_find) THEN
981        if (tof21_i.GT.none_find) yhelp=tof21_y(tof21_i)           ytofpos(2) = ((tof22(1,tof22_i,itdc)-tof22(2,tof22_i,itdc))/2.
982        if (ytofpos(2).lt.100)  yhelp=ytofpos(2)       +        -y_coor_lin22(tof22_i,offset))/y_coor_lin22(tof22_i,slope)
983          i=tof22_i
984          endif
985          
986    
987        IF (tof22_i.GT.none_find.AND.abs(yhelp).lt.100) THEN  C-----------------------------S3 --------------------------------
988    
989           i = tof22_i        IF (tof31_i.GT.none_find) THEN
990           if (tof22(left,i,iadc).lt.4095) then           ytofpos(3)  = ((tof31(1,tof31_i,itdc)-tof31(2,tof31_i,itdc))/2.
991              tof22(left,i,iadc) = tof22(left,i,iadc)*cos(theta13)       +        -y_coor_lin31(tof31_i,offset))/y_coor_lin31(tof31_i,slope)
992              xkorr=adcx22(left,i,1)*exp(-yhelp/adcx22(left,i,2))        i=tof31_i
993              xkorr=xkorr/hepratio        endif
             adctof_c(ch22a(i),hb22a(i))=tof22(left,i,iadc)/xkorr  
          endif  
994    
995           if (tof22(right,i,iadc).lt.4095) then        IF (tof32_i.GT.none_find) THEN
996              tof22(right,i,iadc) = tof22(right,i,iadc)*cos(theta13)           xtofpos(3)  = ((tof32(1,tof32_i,itdc)-tof32(2,tof32_i,itdc))/2.
997              xkorr=adcx22(right,i,1)*exp(yhelp/adcx22(right,i,2))       +        -x_coor_lin32(tof32_i,offset))/x_coor_lin32(tof32_i,slope)
998              xkorr=xkorr/hepratio        i=tof32_i
999              adctof_c(ch22b(i),hb22b(i))=tof22(right,i,iadc)/xkorr        endif
          endif  
       ENDIF  
1000    
 C-----------------------------S3 --------------------------------  
1001    
1002        yhelp=0.  c      do i=1,3
1003        if (tof32_i.GT.none_find) yhelp=tof32_y(tof32_i)  c         if (abs(xtofpos(i)).gt.100.) then
1004        if (ytofpos(3).lt.100)  yhelp=ytofpos(3)  c            xtofpos(i)=101.
1005    c         endif
1006    c         if (abs(ytofpos(i)).gt.100.) then
1007    c            ytofpos(i)=101.
1008    c         endif
1009    c      enddo
1010    
       IF (tof31_i.GT.none_find.AND.abs(yhelp).lt.100) THEN  
1011    
1012           i = tof31_i  C--  restrict TDC measurements to physical paddle dimensions +/- 10 cm
1013           if (tof31(left,i,iadc).lt.4095) then  C--  this cut is now stronger than in the old versions
             tof31(left,i,iadc) = tof31(left,i,iadc)*cos(theta13)  
             xkorr=adcx31(left,i,1)*exp(-yhelp/adcx31(left,i,2))  
             xkorr=xkorr/hepratio  
             adctof_c(ch31a(i),hb31a(i))=tof31(left,i,iadc)/xkorr  
          endif  
1014    
1015           if (tof31(right,i,iadc).lt.4095) then          if (abs(xtofpos(1)).gt.31.)  xtofpos(1)=101.
1016              tof31(right,i,iadc) = tof31(right,i,iadc)*cos(theta13)          if (abs(xtofpos(2)).gt.19.)  xtofpos(2)=101.
1017              xkorr=adcx31(right,i,1)*exp(yhelp/adcx31(right,i,2))          if (abs(xtofpos(3)).gt.19.)  xtofpos(3)=101.
             xkorr=xkorr/hepratio  
             adctof_c(ch31b(i),hb31b(i))=tof31(right,i,iadc)/xkorr  
          endif  
       ENDIF  
1018    
1019        xhelp=0.          if (abs(ytofpos(1)).gt.26.)  ytofpos(1)=101.
1020        if (tof31_i.GT.none_find) xhelp=tof31_x(tof31_i)          if (abs(ytofpos(2)).gt.18.)  ytofpos(2)=101.
1021        if (xtofpos(3).lt.100)  xhelp=xtofpos(3)          if (abs(ytofpos(3)).gt.18.)  ytofpos(3)=101.
1022    
1023        IF (tof32_i.GT.none_find.AND.abs(xhelp).lt.100) THEN  C----------------------------------------------------------------------
1024    C---------------------  zenith angle theta  ---------------------------
1025    C----------------------------------------------------------------------
1026    C-------------------  improved calculation  ---------------------------
1027    
1028           i = tof32_i         xhelp1=0.
1029           if (tof32(left,i,iadc).lt.4095) then         if (tof11_i.GT.none_find) xhelp1=tof11_x(tof11_i)
1030              tof32(left,i,iadc) = tof32(left,i,iadc)*cos(theta13)         if (xtofpos(1).lt.100)  xhelp1=xtofpos(1)
1031              xkorr=adcx32(left,i,1)*exp(-xhelp/adcx32(left,i,2))  
1032              xkorr=xkorr/hepratio         yhelp1=0.
1033              adctof_c(ch32a(i),hb32a(i))=tof32(left,i,iadc)/xkorr         if (tof12_i.GT.none_find) yhelp1=tof12_y(tof12_i)
1034           endif         if (ytofpos(1).lt.100)  yhelp1=ytofpos(1)
1035    
1036           yhelp2=0.
1037           if (tof32_i.GT.none_find) yhelp2=tof32_y(tof32_i)
1038           if (ytofpos(3).lt.100)  yhelp2=ytofpos(3)
1039    
1040           xhelp2=0.
1041           if (tof31_i.GT.none_find) xhelp2=tof31_x(tof31_i)
1042           if (xtofpos(3).lt.100)  xhelp2=xtofpos(3)
1043    
1044    
1045           dx=0.
1046           dy=0.
1047           dr=0.
1048           theta13 = 0.
1049    
1050           dx  = xhelp1 - xhelp2
1051           dy  = yhelp1 - yhelp2
1052           dr = sqrt(dx*dx+dy*dy)
1053           theta13 = atan(dr/tofarm13)
1054    
          if (tof32(right,i,iadc).lt.4095) then  
             tof32(right,i,iadc) = tof32(right,i,iadc)*cos(theta13)  
             xkorr=adcx32(right,i,1)*exp(xhelp/adcx32(right,i,2))  
             xkorr=xkorr/hepratio  
             adctof_c(ch32b(i),hb32b(i))=tof32(right,i,iadc)/xkorr  
          endif  
       ENDIF  
1055    
1056    C------------------------------------------------------------------
1057    C------------------------------------------------------------------
1058    C-------angle and ADC(x) correction: moved to new dEdx routine
1059    C------------------------------------------------------------------
1060    C------------------------------------------------------------------
1061    
1062  C--------------------------------------------------------------------  C--------------------------------------------------------------------
1063  C----------------------calculate Beta  ------------------------------  C----------------------calculate Beta  ------------------------------
# Line 1000  C     since TDC resolution varies slight Line 1072  C     since TDC resolution varies slight
1072    
1073  C     S11 - S31  C     S11 - S31
1074    
1075          dist = ZTOF(1) - ZTOF(5)
1076          c2 = (2.*0.01*dist)/(3.E08*50.E-12  )
1077    
1078         IF ((tof11_i.GT.none_find).AND.(tof31_i.GT.none_find).AND.         IF ((tof11_i.GT.none_find).AND.(tof31_i.GT.none_find).AND.
1079       &    (ytofpos(1).NE.101.).AND.(ytofpos(3).NE.101.)) THEN       &    (ytofpos(1).NE.101.).AND.(ytofpos(3).NE.101.)) THEN
1080           xhelp1 = tof11(1,tof11_i,itdc)+tof11(2,tof11_i,itdc)           xhelp1 = tof11(1,tof11_i,itdc)+tof11(2,tof11_i,itdc)
1081           xhelp2 = tof31(1,tof31_i,itdc)+tof31(2,tof31_i,itdc)           xhelp2 = tof31(1,tof31_i,itdc)+tof31(2,tof31_i,itdc)
1082           ds = xhelp1-xhelp2           ds = xhelp1-xhelp2
1083           ihelp=(tof11_i-1)*3+tof31_i           ihelp=(tof11_i-1)*3+tof31_i
1084           c1 = k_S11S31(1,ihelp)           if (iz.le.1) c1 = k_S11S31(1,ihelp)
1085           c2 = k_S11S31(2,ihelp)           if (iz.eq.2) c1 = k_S11S31(2,ihelp)
1086             if (iz.gt.2) c1 = k_S11S31(3,ihelp)
1087           betatof_a(1) = c2/(cos(theta13)*(ds-c1))           betatof_a(1) = c2/(cos(theta13)*(ds-c1))
1088    
1089  C------- ToF Mask - S11 - S31  C------- ToF Mask - S11 - S31
# Line 1028  C------- Line 1104  C-------
1104                
1105  C     S11 - S32  C     S11 - S32
1106    
1107          dist = ZTOF(1) - ZTOF(6)
1108          c2 = (2.*0.01*dist)/(3.E08*50.E-12  )
1109    
1110         IF ((tof11_i.GT.none_find).AND.(tof32_i.GT.none_find).AND.         IF ((tof11_i.GT.none_find).AND.(tof32_i.GT.none_find).AND.
1111       &    (ytofpos(1).NE.101.).AND.(xtofpos(3).NE.101.)) THEN       &    (ytofpos(1).NE.101.).AND.(xtofpos(3).NE.101.)) THEN
1112           xhelp1 = tof11(1,tof11_i,itdc)+tof11(2,tof11_i,itdc)           xhelp1 = tof11(1,tof11_i,itdc)+tof11(2,tof11_i,itdc)
1113           xhelp2 = tof32(1,tof32_i,itdc)+tof32(2,tof32_i,itdc)           xhelp2 = tof32(1,tof32_i,itdc)+tof32(2,tof32_i,itdc)
1114           ds = xhelp1-xhelp2           ds = xhelp1-xhelp2
1115           ihelp=(tof11_i-1)*3+tof32_i           ihelp=(tof11_i-1)*3+tof32_i
1116           c1 = k_S11S32(1,ihelp)           if (iz.le.1) c1 = k_S11S32(1,ihelp)
1117           c2 = k_S11S32(2,ihelp)           if (iz.eq.2) c1 = k_S11S32(2,ihelp)
1118             if (iz.gt.2) c1 = k_S11S32(3,ihelp)
1119           betatof_a(2) = c2/(cos(theta13)*(ds-c1))           betatof_a(2) = c2/(cos(theta13)*(ds-c1))
1120    
1121  C------- ToF Mask - S11 - S32  C------- ToF Mask - S11 - S32
# Line 1056  C------- Line 1136  C-------
1136                
1137  C     S12 - S31  C     S12 - S31
1138    
1139          dist = ZTOF(2) - ZTOF(5)
1140          c2 = (2.*0.01*dist)/(3.E08*50.E-12  )
1141    
1142         IF ((tof12_i.GT.none_find).AND.(tof31_i.GT.none_find).AND.         IF ((tof12_i.GT.none_find).AND.(tof31_i.GT.none_find).AND.
1143       &    (xtofpos(1).NE.101.).AND.(ytofpos(3).NE.101.)) THEN       &    (xtofpos(1).NE.101.).AND.(ytofpos(3).NE.101.)) THEN
1144           xhelp1 = tof12(1,tof12_i,itdc)+tof12(2,tof12_i,itdc)           xhelp1 = tof12(1,tof12_i,itdc)+tof12(2,tof12_i,itdc)
1145           xhelp2 = tof31(1,tof31_i,itdc)+tof31(2,tof31_i,itdc)           xhelp2 = tof31(1,tof31_i,itdc)+tof31(2,tof31_i,itdc)
1146           ds = xhelp1-xhelp2           ds = xhelp1-xhelp2
1147           ihelp=(tof12_i-1)*3+tof31_i           ihelp=(tof12_i-1)*3+tof31_i
1148           c1 = k_S12S31(1,ihelp)           if (iz.le.1) c1 = k_S12S31(1,ihelp)
1149           c2 = k_S12S31(2,ihelp)           if (iz.eq.2) c1 = k_S12S31(2,ihelp)
1150             if (iz.gt.2) c1 = k_S12S31(3,ihelp)
1151           betatof_a(3) = c2/(cos(theta13)*(ds-c1))           betatof_a(3) = c2/(cos(theta13)*(ds-c1))
1152    
1153  C------- ToF Mask - S12 - S31  C------- ToF Mask - S12 - S31
# Line 1084  C------- Line 1168  C-------
1168                            
1169  C     S12 - S32  C     S12 - S32
1170    
1171          dist = ZTOF(2) - ZTOF(6)
1172          c2 = (2.*0.01*dist)/(3.E08*50.E-12  )
1173    
1174         IF ((tof12_i.GT.none_find).AND.(tof32_i.GT.none_find).AND.         IF ((tof12_i.GT.none_find).AND.(tof32_i.GT.none_find).AND.
1175       &    (xtofpos(1).NE.101.).AND.(xtofpos(3).NE.101.)) THEN       &    (xtofpos(1).NE.101.).AND.(xtofpos(3).NE.101.)) THEN
1176           xhelp1 = tof12(1,tof12_i,itdc)+tof12(2,tof12_i,itdc)           xhelp1 = tof12(1,tof12_i,itdc)+tof12(2,tof12_i,itdc)
1177           xhelp2 = tof32(1,tof32_i,itdc)+tof32(2,tof32_i,itdc)           xhelp2 = tof32(1,tof32_i,itdc)+tof32(2,tof32_i,itdc)
1178           ds = xhelp1-xhelp2           ds = xhelp1-xhelp2
1179           ihelp=(tof12_i-1)*3+tof32_i           ihelp=(tof12_i-1)*3+tof32_i
1180           c1 = k_S12S32(1,ihelp)           if (iz.le.1) c1 = k_S12S32(1,ihelp)
1181           c2 = k_S12S32(2,ihelp)           if (iz.eq.2) c1 = k_S12S32(2,ihelp)
1182             if (iz.gt.2) c1 = k_S12S32(3,ihelp)
1183           betatof_a(4) = c2/(cos(theta13)*(ds-c1))           betatof_a(4) = c2/(cos(theta13)*(ds-c1))
1184    
1185  C------- ToF Mask - S12 - S32  C------- ToF Mask - S12 - S32
# Line 1112  C------- Line 1200  C-------
1200    
1201  C     S21 - S31  C     S21 - S31
1202    
1203          dist = ZTOF(3) - ZTOF(5)
1204          c2 = (2.*0.01*dist)/(3.E08*50.E-12  )
1205    
1206         IF ((tof21_i.GT.none_find).AND.(tof31_i.GT.none_find).AND.         IF ((tof21_i.GT.none_find).AND.(tof31_i.GT.none_find).AND.
1207       &    (xtofpos(2).NE.101.).AND.(ytofpos(3).NE.101.)) THEN       &    (xtofpos(2).NE.101.).AND.(ytofpos(3).NE.101.)) THEN
1208           xhelp1 = tof21(1,tof21_i,itdc)+tof21(2,tof21_i,itdc)           xhelp1 = tof21(1,tof21_i,itdc)+tof21(2,tof21_i,itdc)
1209           xhelp2 = tof31(1,tof31_i,itdc)+tof31(2,tof31_i,itdc)           xhelp2 = tof31(1,tof31_i,itdc)+tof31(2,tof31_i,itdc)
1210           ds = xhelp1-xhelp2           ds = xhelp1-xhelp2
1211           ihelp=(tof21_i-1)*3+tof31_i           ihelp=(tof21_i-1)*3+tof31_i
1212           c1 = k_S21S31(1,ihelp)           if (iz.le.1) c1 = k_S21S31(1,ihelp)
1213           c2 = k_S21S31(2,ihelp)           if (iz.eq.2) c1 = k_S21S31(2,ihelp)
1214             if (iz.gt.2) c1 = k_S21S31(3,ihelp)
1215           betatof_a(5) = c2/(cos(theta13)*(ds-c1))           betatof_a(5) = c2/(cos(theta13)*(ds-c1))
1216    
1217  C------- ToF Mask - S21 - S31  C------- ToF Mask - S21 - S31
# Line 1140  C------- Line 1232  C-------
1232    
1233  C     S21 - S32  C     S21 - S32
1234    
1235          dist = ZTOF(3) - ZTOF(6)
1236          c2 = (2.*0.01*dist)/(3.E08*50.E-12  )
1237    
1238    
1239         IF ((tof21_i.GT.none_find).AND.(tof32_i.GT.none_find).AND.         IF ((tof21_i.GT.none_find).AND.(tof32_i.GT.none_find).AND.
1240       &    (xtofpos(2).NE.101.).AND.(xtofpos(3).NE.101.)) THEN       &    (xtofpos(2).NE.101.).AND.(xtofpos(3).NE.101.)) THEN
1241           xhelp1 = tof21(1,tof21_i,itdc)+tof21(2,tof21_i,itdc)           xhelp1 = tof21(1,tof21_i,itdc)+tof21(2,tof21_i,itdc)
1242           xhelp2 = tof32(1,tof32_i,itdc)+tof32(2,tof32_i,itdc)           xhelp2 = tof32(1,tof32_i,itdc)+tof32(2,tof32_i,itdc)
1243           ds = xhelp1-xhelp2           ds = xhelp1-xhelp2
1244           ihelp=(tof21_i-1)*3+tof32_i           ihelp=(tof21_i-1)*3+tof32_i
1245           c1 = k_S21S32(1,ihelp)           if (iz.le.1) c1 = k_S21S32(1,ihelp)
1246           c2 = k_S21S32(2,ihelp)           if (iz.eq.2) c1 = k_S21S32(2,ihelp)
1247             if (iz.gt.2) c1 = k_S21S32(3,ihelp)
1248           betatof_a(6) = c2/(cos(theta13)*(ds-c1))           betatof_a(6) = c2/(cos(theta13)*(ds-c1))
1249                                        
1250  C------- ToF Mask - S21 - S32  C------- ToF Mask - S21 - S32
# Line 1168  C------- Line 1265  C-------
1265    
1266  C     S22 - S31  C     S22 - S31
1267    
1268          dist = ZTOF(4) - ZTOF(5)
1269          c2 = (2.*0.01*dist)/(3.E08*50.E-12  )
1270    
1271         IF ((tof22_i.GT.none_find).AND.(tof31_i.GT.none_find).AND.         IF ((tof22_i.GT.none_find).AND.(tof31_i.GT.none_find).AND.
1272       &    (ytofpos(2).NE.101.).AND.(ytofpos(3).NE.101.)) THEN       &    (ytofpos(2).NE.101.).AND.(ytofpos(3).NE.101.)) THEN
1273           xhelp1 = tof22(1,tof22_i,itdc)+tof22(2,tof22_i,itdc)           xhelp1 = tof22(1,tof22_i,itdc)+tof22(2,tof22_i,itdc)
1274           xhelp2 = tof31(1,tof31_i,itdc)+tof31(2,tof31_i,itdc)           xhelp2 = tof31(1,tof31_i,itdc)+tof31(2,tof31_i,itdc)
1275           ds = xhelp1-xhelp2           ds = xhelp1-xhelp2
1276           ihelp=(tof22_i-1)*3+tof31_i           ihelp=(tof22_i-1)*3+tof31_i
1277           c1 = k_S22S31(1,ihelp)           if (iz.le.1) c1 = k_S22S31(1,ihelp)
1278           c2 = k_S22S31(2,ihelp)           if (iz.eq.2) c1 = k_S22S31(2,ihelp)
1279             if (iz.gt.2) c1 = k_S22S31(3,ihelp)
1280           betatof_a(7) = c2/(cos(theta13)*(ds-c1))           betatof_a(7) = c2/(cos(theta13)*(ds-c1))
1281    
1282  C------- ToF Mask - S22 - S31  C------- ToF Mask - S22 - S31
# Line 1196  C-------           Line 1297  C-------          
1297                
1298  C     S22 - S32  C     S22 - S32
1299    
1300          dist = ZTOF(4) - ZTOF(6)
1301          c2 = (2.*0.01*dist)/(3.E08*50.E-12  )
1302    
1303         IF ((tof22_i.GT.none_find).AND.(tof32_i.GT.none_find).AND.         IF ((tof22_i.GT.none_find).AND.(tof32_i.GT.none_find).AND.
1304       &    (ytofpos(2).NE.101.).AND.(xtofpos(3).NE.101.)) THEN       &    (ytofpos(2).NE.101.).AND.(xtofpos(3).NE.101.)) THEN
1305           xhelp1 = tof22(1,tof22_i,itdc)+tof22(2,tof22_i,itdc)           xhelp1 = tof22(1,tof22_i,itdc)+tof22(2,tof22_i,itdc)
1306           xhelp2 = tof32(1,tof32_i,itdc)+tof32(2,tof32_i,itdc)           xhelp2 = tof32(1,tof32_i,itdc)+tof32(2,tof32_i,itdc)
1307           ds = xhelp1-xhelp2           ds = xhelp1-xhelp2
1308           ihelp=(tof22_i-1)*3+tof32_i           ihelp=(tof22_i-1)*3+tof32_i
1309           c1 = k_S22S32(1,ihelp)           if (iz.le.1) c1 = k_S22S32(1,ihelp)
1310           c2 = k_S22S32(2,ihelp)           if (iz.eq.2) c1 = k_S22S32(2,ihelp)
1311             if (iz.gt.2) c1 = k_S22S32(3,ihelp)
1312           betatof_a(8) = c2/(cos(theta13)*(ds-c1))           betatof_a(8) = c2/(cos(theta13)*(ds-c1))
1313    
1314  C------- ToF Mask - S22 - S32  C------- ToF Mask - S22 - S32
# Line 1224  C-------   Line 1329  C-------  
1329    
1330  C     S11 - S21  C     S11 - S21
1331    
1332          dist = ZTOF(1) - ZTOF(3)
1333          c2 = (2.*0.01*dist)/(3.E08*50.E-12  )
1334    
1335         IF ((tof11_i.GT.none_find).AND.(tof21_i.GT.none_find).AND.         IF ((tof11_i.GT.none_find).AND.(tof21_i.GT.none_find).AND.
1336       &    (ytofpos(1).NE.101.).AND.(xtofpos(2).NE.101.)) THEN       &    (ytofpos(1).NE.101.).AND.(xtofpos(2).NE.101.)) THEN
1337           xhelp1 = tof11(1,tof11_i,itdc)+tof11(2,tof11_i,itdc)           xhelp1 = tof11(1,tof11_i,itdc)+tof11(2,tof11_i,itdc)
1338           xhelp2 = tof21(1,tof21_i,itdc)+tof21(2,tof21_i,itdc)           xhelp2 = tof21(1,tof21_i,itdc)+tof21(2,tof21_i,itdc)
1339           ds = xhelp1-xhelp2           ds = xhelp1-xhelp2
1340           ihelp=(tof11_i-1)*2+tof21_i           ihelp=(tof11_i-1)*2+tof21_i
1341           c1 = k_S11S21(1,ihelp)           if (iz.le.1) c1 = k_S11S21(1,ihelp)
1342           c2 = k_S11S21(2,ihelp)           if (iz.eq.2) c1 = k_S11S21(2,ihelp)
1343             if (iz.gt.2) c1 = k_S11S21(3,ihelp)
1344           betatof_a(9) = c2/(cos(theta13)*(ds-c1))           betatof_a(9) = c2/(cos(theta13)*(ds-c1))
1345    
1346  C------- ToF Mask - S11 - S21  C------- ToF Mask - S11 - S21
# Line 1252  C-------   Line 1361  C-------  
1361                
1362  C     S11 - S22  C     S11 - S22
1363    
1364          dist = ZTOF(1) - ZTOF(4)
1365          c2 = (2.*0.01*dist)/(3.E08*50.E-12  )
1366    
1367         IF ((tof11_i.GT.none_find).AND.(tof22_i.GT.none_find).AND.         IF ((tof11_i.GT.none_find).AND.(tof22_i.GT.none_find).AND.
1368       &    (ytofpos(1).NE.101.).AND.(ytofpos(2).NE.101.)) THEN       &    (ytofpos(1).NE.101.).AND.(ytofpos(2).NE.101.)) THEN
1369           xhelp1 = tof11(1,tof11_i,itdc)+tof11(2,tof11_i,itdc)           xhelp1 = tof11(1,tof11_i,itdc)+tof11(2,tof11_i,itdc)
1370           xhelp2 = tof22(1,tof22_i,itdc)+tof22(2,tof22_i,itdc)           xhelp2 = tof22(1,tof22_i,itdc)+tof22(2,tof22_i,itdc)
1371           ds = xhelp1-xhelp2           ds = xhelp1-xhelp2
1372           ihelp=(tof11_i-1)*2+tof22_i           ihelp=(tof11_i-1)*2+tof22_i
1373           c1 = k_S11S22(1,ihelp)           if (iz.le.1) c1 = k_S11S22(1,ihelp)
1374           c2 = k_S11S22(2,ihelp)           if (iz.eq.2) c1 = k_S11S22(2,ihelp)
1375             if (iz.gt.2) c1 = k_S11S22(3,ihelp)
1376           betatof_a(10) = c2/(cos(theta13)*(ds-c1))           betatof_a(10) = c2/(cos(theta13)*(ds-c1))
1377    
1378  C------- ToF Mask - S11 - S22  C------- ToF Mask - S11 - S22
# Line 1280  C-------   Line 1393  C-------  
1393    
1394  C     S12 - S21  C     S12 - S21
1395    
1396          dist = ZTOF(2) - ZTOF(3)
1397          c2 = (2.*0.01*dist)/(3.E08*50.E-12  )
1398    
1399         IF ((tof12_i.GT.none_find).AND.(tof21_i.GT.none_find).AND.         IF ((tof12_i.GT.none_find).AND.(tof21_i.GT.none_find).AND.
1400       &    (xtofpos(1).NE.101.).AND.(xtofpos(2).NE.101.)) THEN       &    (xtofpos(1).NE.101.).AND.(xtofpos(2).NE.101.)) THEN
1401           xhelp1 = tof12(1,tof12_i,itdc)+tof12(2,tof12_i,itdc)           xhelp1 = tof12(1,tof12_i,itdc)+tof12(2,tof12_i,itdc)
1402           xhelp2 = tof21(1,tof21_i,itdc)+tof21(2,tof21_i,itdc)           xhelp2 = tof21(1,tof21_i,itdc)+tof21(2,tof21_i,itdc)
1403           ds = xhelp1-xhelp2           ds = xhelp1-xhelp2
1404           ihelp=(tof12_i-1)*2+tof21_i           ihelp=(tof12_i-1)*2+tof21_i
1405           c1 = k_S12S21(1,ihelp)           if (iz.le.1) c1 = k_S12S21(1,ihelp)
1406           c2 = k_S12S21(2,ihelp)           if (iz.eq.2) c1 = k_S12S21(2,ihelp)
1407             if (iz.gt.2) c1 = k_S12S21(3,ihelp)
1408           betatof_a(11) = c2/(cos(theta13)*(ds-c1))           betatof_a(11) = c2/(cos(theta13)*(ds-c1))
1409    
1410  C------- ToF Mask - S12 - S21  C------- ToF Mask - S12 - S21
# Line 1308  C-------   Line 1425  C-------  
1425    
1426  C     S12 - S22  C     S12 - S22
1427    
1428          dist = ZTOF(2) - ZTOF(4)
1429          c2 = (2.*0.01*dist)/(3.E08*50.E-12  )
1430    
1431         IF ((tof12_i.GT.none_find).AND.(tof22_i.GT.none_find).AND.         IF ((tof12_i.GT.none_find).AND.(tof22_i.GT.none_find).AND.
1432       &    (xtofpos(1).NE.101.).AND.(ytofpos(2).NE.101.)) THEN       &    (xtofpos(1).NE.101.).AND.(ytofpos(2).NE.101.)) THEN
1433           xhelp1 = tof12(1,tof12_i,itdc)+tof12(2,tof12_i,itdc)           xhelp1 = tof12(1,tof12_i,itdc)+tof12(2,tof12_i,itdc)
1434           xhelp2 = tof22(1,tof22_i,itdc)+tof22(2,tof22_i,itdc)           xhelp2 = tof22(1,tof22_i,itdc)+tof22(2,tof22_i,itdc)
1435           ds = xhelp1-xhelp2           ds = xhelp1-xhelp2
1436           ihelp=(tof12_i-1)*2+tof22_i           ihelp=(tof12_i-1)*2+tof22_i
1437           c1 = k_S12S22(1,ihelp)           if (iz.le.1) c1 = k_S12S22(1,ihelp)
1438           c2 = k_S12S22(2,ihelp)           if (iz.eq.2) c1 = k_S12S22(2,ihelp)
1439             if (iz.gt.2) c1 = k_S12S22(3,ihelp)
1440           betatof_a(12) = c2/(cos(theta13)*(ds-c1))           betatof_a(12) = c2/(cos(theta13)*(ds-c1))
1441    
1442  C------- ToF Mask - S12 - S22  C------- ToF Mask - S12 - S22
# Line 1335  C-------   Line 1456  C-------  
1456        ENDIF        ENDIF
1457    
1458  C---------------------------------------------------------  C---------------------------------------------------------
1459    C
1460    C      icount=0
1461    C      sw=0.
1462    C      sxw=0.
1463    C      beta_mean=100.
1464    C
1465    C      do i=1,12
1466    C         if ((betatof_a(i).gt.-1.5).and.(betatof_a(i).lt.1.5)) then
1467    C            icount= icount+1
1468    C            if (i.le.4) w_i=1./(0.13**2.)
1469    C            if ((i.ge.5).and.(i.le.8)) w_i=1./(0.16**2.)
1470    C         if (i.ge.9) w_i=1./(0.25**2.)     ! to be checked
1471    C            sxw=sxw + betatof_a(i)*w_i
1472    C            sw =sw + w_i
1473    C         endif
1474    C      enddo
1475    C      
1476    C      if (icount.gt.0) beta_mean=sxw/sw
1477    C      betatof_a(13) = beta_mean
1478    C
1479    
1480        icount=0  C--------  New mean beta  calculation  -----------------------
       sw=0.  
       sxw=0.  
       beta_mean=100.  
1481    
1482        do i=1,12          do i=1,12
1483           if ((betatof_a(i).gt.-1.5).and.(betatof_a(i).lt.1.5)) then           btemp(i) = betatof_a(i)
1484              icount= icount+1          enddo
             if (i.le.4) w_i=1./(0.13**2.)  
             if ((i.ge.5).and.(i.le.8)) w_i=1./(0.16**2.)  
             if (i.ge.9) w_i=1./(0.25**2.)     ! to be checked  
             sxw=sxw + betatof_a(i)*w_i  
             sw =sw + w_i  
          endif  
       enddo  
         
       if (icount.gt.0) beta_mean=sxw/sw  
       betatof_a(13) = beta_mean  
1485    
1486            betatof_a(13)=newbeta(1,btemp,hitvec,10.,10.,20.)
1487    
1488    C--------------------------------------------------------------
1489    C      write(*,*) betatof_a
1490  c      write(*,*) xtofpos  c      write(*,*) xtofpos
1491  c      write(*,*) ytofpos  c      write(*,*) ytofpos
1492  c      write(*,*) betatof_a  c      write(*,*)'tofl2com beta', betatof_a
1493  C      write(*,*) adcflagtof  C      write(*,*) adcflagtof
1494    c      write(*,*) 'tofl2com'
1495    c      write(*,*) xtofpos
1496   100  continue  c      write(*,*) ytofpos
1497    c      write(*,*) xtr_tof
1498    c      write(*,*) ytr_tof
1499          
1500    c 100  continue
1501            continue
1502    
1503  C  C
1504        RETURN        RETURN
1505        END        END
1506    
1507    
1508    C------------------------------------------------------------------
1509    C------------------------------------------------------------------
1510    
1511           function atten(is,ilay,ipad,x)
1512           include  'input_tof.txt'
1513           real atten
1514           real x
1515           real xmin,xmax
1516           integer  ilay,ipad
1517    
1518    *  S11 8 paddles  33.0 x 5.1 cm
1519    *  S12 6 paddles  40.8 x 5.5 cm
1520    *  S21 2 paddles  18.0 x 7.5 cm
1521    *  S22 2 paddles  15.0 x 9.0 cm
1522    *  S31 3 paddles  15.0 x 6.0 cm
1523    *  S32 3 paddles  18.0 x 5.0 cm
1524    
1525    
1526    c       if (ilay.eq.11) write(*,*) 'start ',ipad,is,adcx11(is,ipad,1),
1527    c     &  adcx11(is,ipad,2),adcx11(is,ipad,3),adcx11(is,ipad,4)
1528    c       if (ilay.eq.12) write(*,*) 'start ',ipad,is,adcx12(is,ipad,1),
1529    c     &  adcx12(is,ipad,2),adcx12(is,ipad,3),adcx12(is,ipad,4)
1530    
1531    
1532           if (ilay.eq.11)  xmin=-33.0/2.
1533           if (ilay.eq.11)  xmax= 33.0/2.
1534           if (ilay.eq.12)  xmin=-40.8/2.
1535           if (ilay.eq.12)  xmax= 40.8/2.
1536    
1537           if (ilay.eq.21)  xmin=-18.0/2.
1538           if (ilay.eq.21)  xmax= 18.0/2.
1539           if (ilay.eq.22)  xmin=-15.0/2.
1540           if (ilay.eq.22)  xmax= 15.0/2.
1541    
1542           if (ilay.eq.31)  xmin=-15.0/2.
1543           if (ilay.eq.31)  xmax= 15.0/2.
1544           if (ilay.eq.32)  xmin=-18.0/2.
1545           if (ilay.eq.32)  xmax= 18.0/2.
1546    
1547           if (x .lt. xmin) x=xmin
1548           if (x .gt. xmax) x=xmax
1549    
1550    
1551           if (ilay.eq.11) atten=
1552         &    adcx11(is,ipad,1)*exp(x*adcx11(is,ipad,2))
1553         &  + adcx11(is,ipad,3)*exp(x*adcx11(is,ipad,4))
1554    
1555           if (ilay.eq.12) atten=
1556         &    adcx12(is,ipad,1)*exp(x*adcx12(is,ipad,2))
1557         &  + adcx12(is,ipad,3)*exp(x*adcx12(is,ipad,4))
1558    
1559           if (ilay.eq.21) atten=
1560         &    adcx21(is,ipad,1)*exp(x*adcx21(is,ipad,2))
1561         &  + adcx21(is,ipad,3)*exp(x*adcx21(is,ipad,4))
1562    
1563           if (ilay.eq.22) atten=
1564         &    adcx22(is,ipad,1)*exp(x*adcx22(is,ipad,2))
1565         &  + adcx22(is,ipad,3)*exp(x*adcx22(is,ipad,4))
1566    
1567           if (ilay.eq.31) atten=
1568         &    adcx31(is,ipad,1)*exp(x*adcx31(is,ipad,2))
1569         &  + adcx31(is,ipad,3)*exp(x*adcx31(is,ipad,4))
1570    
1571           if (ilay.eq.32) atten=
1572         &    adcx32(is,ipad,1)*exp(x*adcx32(is,ipad,2))
1573         &  + adcx32(is,ipad,3)*exp(x*adcx32(is,ipad,4))
1574    
1575            if (atten.gt.10000) atten=10000.
1576    
1577           end
1578    
1579    C------------------------------------------------------------------
1580    C------------------------------------------------------------------
1581    
1582           function pc_adc(ix)
1583           include  'input_tof.txt'
1584           real pc_adc
1585           integer ix
1586    
1587           pc_adc=28.0407 + 0.628929*ix
1588         &   - 5.80901e-05*ix*ix + 3.14092e-08*ix*ix*ix
1589    c       write(*,*) ix,pc_adc
1590           end
1591    
1592    C------------------------------------------------------------------
1593    C------------------------------------------------------------------
1594    
1595            function check_charge(theta,hitvec)
1596    
1597            include  'input_tof.txt'
1598            include  'tofcomm.txt'
1599    
1600            real check_charge  
1601            integer hitvec(6)  
1602            REAL CHARGE, theta
1603    
1604    C  upper and lower limits  for the helium selection
1605            REAL A_l(24),A_h(24)
1606            DATA A_l /200,190,300,210,220,200,210,60,60,120,220,
1607         &  120,160,50,300,200,120,250,350,300,350,250,280,300/
1608            DATA A_h /550,490,800,600,650,600,600,260,200,380,
1609         &  620,380,550,200,850,560,400,750,900,800,880,800,750,800/
1610    
1611    C The k1 constants for the beta calculation, only for S1-S3
1612    C k2 constant is taken to be the standard 2D/c
1613            REAL k1(84)
1614            DATA k1 /50,59.3296,28.4328,-26.0818,5.91253,-19.588,
1615         &   -9.26316,24.7544,2.32465,-50.5058,-15.3195,-39.1443,
1616         &   -91.2546,-58.6243,-84.5641,-63.1516,-32.2091,-58.3358,
1617         &   13.8084,45.5322,33.2416,-11.5313,51.3271,75,-14.1141,
1618         &   42.8466,15.1794,-63.6672,-6.07739,-32.164,-41.771,10.5274,
1619         &   -9.46096,-81.7404,-28.783,-52.7167,-127.394,-69.6166,
1620         &   -93.4655,-98.9543,-42.863,-67.8244,-19.3238,31.1221,8.7319,
1621         &   -43.1627,5.55573,-14.4078,-83.4466,-47.4647,-77.8379,
1622         &   -108.222,-75.986,-101.297,-96.0205,-63.1881,-90.1372,
1623         &   -22.7347,8.31409,-19.6912,-7.49008,23.6979,-1.66677,
1624         &   1.81556,34.4668,6.23693,-100,-59.5861,-90.9159,-141.639,
1625         &   -89.2521,-112.881,-130.199,-77.0357,-98.4632,-60.2086,
1626         &   -4.82097,-29.3705,-43.6469,10.5884,-9.31304,-35.3329,
1627         &   25.2514,25.6/
1628    
1629    
1630    
1631            REAL zin(6)
1632            DATA zin /53.74, 53.04, 23.94, 23.44, -23.49, -24.34/
1633    
1634            REAL  c1,c2,xhelp,xhelp1,xhelp2,ds,dist,F
1635            REAL  sw,sxw,beta_mean_tof,w_i
1636            INTEGER  ihelp
1637            INTEGER ipmt(4)
1638            REAL time(4),beta1(4)
1639    
1640            REAL  adca(48), tdca(48)
1641    
1642            REAL  a1,a2
1643            INTEGER jj
1644    
1645    c get rid of warnings EMILIANO
1646            i = 0
1647            slope = 0
1648            offset = 0
1649            none_find = 0
1650            none_ev = 0
1651            adc_ev = 0
1652            tdc_ev = 0
1653            iadc = 0
1654            itdc = 0
1655            right = 0
1656            left = 0
1657            tof12_y(1) = tof12_y(1)
1658            tof11_x(1) = tof11_x(1)
1659            tof21_y(1) = tof21_y(1)
1660            tof22_x(1) = tof22_x(1)
1661            tof32_y(1) = tof32_y(1)
1662            tof31_x(1) = tof31_x(1)
1663    c get rid of warnings
1664    
1665    C-----------------------------------------------------------
1666    C--- get data
1667    C-----------------------------------------------------------
1668    
1669             do j=1,8
1670             ih = 1 + 0 +((j-1)*2)
1671             adca(ih)   = adc(ch11a(j),hb11a(j))
1672             adca(ih+1) = adc(ch11b(j),hb11b(j))
1673             tdca(ih)   = tdc(ch11a(j),hb11a(j))
1674             tdca(ih+1) = tdc(ch11b(j),hb11b(j))
1675             enddo
1676    
1677             do j=1,6
1678             ih = 1 + 16+((j-1)*2)
1679             adca(ih)   = adc(ch12a(j),hb12a(j))
1680             adca(ih+1) = adc(ch12b(j),hb12b(j))
1681             tdca(ih)   = tdc(ch12a(j),hb12a(j))
1682             tdca(ih+1) = tdc(ch12b(j),hb12b(j))
1683             enddo
1684    
1685             do j=1,2
1686             ih = 1 + 28+((j-1)*2)
1687             adca(ih)   = adc(ch21a(j),hb21a(j))
1688             adca(ih+1) = adc(ch21b(j),hb21b(j))
1689             tdca(ih)   = tdc(ch21a(j),hb21a(j))
1690             tdca(ih+1) = tdc(ch21b(j),hb21b(j))
1691             enddo
1692    
1693             do j=1,2
1694             ih = 1 + 32+((j-1)*2)
1695             adca(ih)   = adc(ch22a(j),hb22a(j))
1696             adca(ih+1) = adc(ch22b(j),hb22b(j))
1697             tdca(ih)   = tdc(ch22a(j),hb22a(j))
1698             tdca(ih+1) = tdc(ch22b(j),hb22b(j))
1699             enddo
1700    
1701             do j=1,3
1702             ih = 1 + 36+((j-1)*2)
1703             adca(ih)   = adc(ch31a(j),hb31a(j))
1704             adca(ih+1) = adc(ch31b(j),hb31b(j))
1705             tdca(ih)   = tdc(ch31a(j),hb31a(j))
1706             tdca(ih+1) = tdc(ch31b(j),hb31b(j))
1707             enddo
1708    
1709             do j=1,3
1710             ih = 1 + 42+((j-1)*2)
1711             adca(ih)   = adc(ch32a(j),hb32a(j))
1712             adca(ih+1) = adc(ch32b(j),hb32b(j))
1713             tdca(ih)   = tdc(ch32a(j),hb32a(j))
1714             tdca(ih+1) = tdc(ch32b(j),hb32b(j))
1715             enddo
1716    
1717    
1718    c         write(*,*) adca
1719    c         write(*,*) tdca
1720    
1721    
1722    C============   calculate beta and select charge > Z=1   ===============
1723    
1724            ICHARGE=1
1725    
1726    C find hitted paddle by looking for ADC values on both sides
1727    C since we looking for Z>1 this gives decent results
1728    
1729            tof11_i = hitvec(1)-1
1730            tof12_i = hitvec(2)-1
1731            tof21_i = hitvec(3)-1
1732            tof22_i = hitvec(4)-1
1733            tof31_i = hitvec(5)-1
1734            tof32_i = hitvec(6)-1
1735    
1736    c        write(*,*) ' in charge check'
1737    c        write(*,*) theta,tof11_i,tof12_i,tof21_i,tof22_i,tof31_i,tof32_i
1738    
1739    C----------------------------------------------------------------
1740    
1741            beta_help=100.
1742            beta_mean_tof=100.
1743    
1744            do jj=1,4
1745              beta1(jj) = 100.
1746            enddo
1747    
1748    C----------------------------------------------------------------
1749    C---------  S1 - S3 ---------------------------------------------
1750    C----------------------------------------------------------------
1751    
1752    C---------  S11 - S31 -------------------------------------------
1753    
1754            if ((tof11_i.gt.-1).and.(tof31_i.gt.-1)) then
1755    
1756            dist = zin(1) - zin(5)
1757            c2 = (2.*0.01*dist)/(3.E08*50.E-12)
1758            F = 1./cos(theta)
1759    
1760            ipmt(1)   = (tof11_i)*2+1
1761            ipmt(2)   = (tof11_i)*2+2
1762            ipmt(3)   = 36+(tof31_i)*2+1
1763            ipmt(4)   = 36+(tof31_i)*2+2
1764    
1765    c        write(*,*) ipmt
1766    
1767            do jj=1,4
1768               time(jj) = tdca(ipmt(jj))
1769            enddo
1770    
1771    c        write(*,*) time
1772    
1773            if ((time(1).lt.4095).and.(time(2).lt.4095).and.
1774         &     (time(3).lt.4095).and.(time(4).lt.4095)) then
1775             xhelp1 = time(1) + time(2)
1776             xhelp2 = time(3) + time(4)
1777             ds = xhelp1-xhelp2
1778             ihelp=0+(tof11_i)*3+tof31_i
1779             c1 = k1(ihelp+1)
1780             beta1(1) = c2*F/(ds-c1);
1781                                                     endif
1782    c         write(*,*) beta1(1)
1783             endif  ! tof_....
1784    
1785    
1786    C---------  S11 - S32 -------------------------------------------
1787    
1788            if ((tof11_i.gt.-1).and.(tof32_i.gt.-1)) then
1789    
1790            dist = zin(1) - zin(6)
1791            c2 = (2.*0.01*dist)/(3.E08*50.E-12)
1792            F = 1./cos(theta)
1793    
1794            ipmt(1)   = (tof11_i)*2+1
1795            ipmt(2)   = (tof11_i)*2+2
1796            ipmt(3)   = 42+(tof32_i)*2+1
1797            ipmt(4)   = 42+(tof32_i)*2+2
1798    
1799            do jj=1,4
1800               time(jj) = tdca(ipmt(jj))
1801            enddo
1802    
1803            if ((time(1).lt.4095).and.(time(2).lt.4095).and.
1804         &     (time(3).lt.4095).and.(time(4).lt.4095)) then
1805             xhelp1 = time(1) + time(2)
1806             xhelp2 = time(3) + time(4)
1807             ds = xhelp1-xhelp2
1808             ihelp=24+(tof11_i)*3+tof32_i
1809             c1 = k1(ihelp+1)
1810             beta1(2) = c2*F/(ds-c1);
1811                                                     endif
1812             endif  ! tof_....
1813    
1814    
1815    C---------  S12 - S31 -------------------------------------------
1816    
1817            if ((tof12_i.gt.-1).and.(tof31_i.gt.-1)) then
1818    
1819            dist = zin(2) - zin(5)
1820            c2 = (2.*0.01*dist)/(3.E08*50.E-12)
1821            F = 1./cos(theta)
1822    
1823            ipmt(1)   = 16+(tof12_i)*2+1
1824            ipmt(2)   = 16+(tof12_i)*2+2
1825            ipmt(3)   = 36+(tof31_i)*2+1
1826            ipmt(4)   = 36+(tof31_i)*2+2
1827    
1828            do jj=1,4
1829               time(jj) = tdca(ipmt(jj))
1830            enddo
1831    
1832            if ((time(1).lt.4095).and.(time(2).lt.4095).and.
1833         &     (time(3).lt.4095).and.(time(4).lt.4095)) then
1834             xhelp1 = time(1) + time(2)
1835             xhelp2 = time(3) + time(4)
1836             ds = xhelp1-xhelp2
1837             ihelp=48+(tof12_i)*3+tof31_i
1838             c1 = k1(ihelp+1)
1839             beta1(3) = c2*F/(ds-c1);
1840                                                     endif
1841             endif  ! tof_....
1842    
1843    
1844    C---------  S12 - S32 -------------------------------------------
1845    
1846            if ((tof12_i.gt.-1).and.(tof32_i.gt.-1)) then
1847    
1848            dist = zin(2) - zin(6)
1849            c2 = (2.*0.01*dist)/(3.E08*50.E-12)
1850            F = 1./cos(theta)
1851    
1852            ipmt(1)   = 16+(tof12_i)*2+1
1853            ipmt(2)   = 16+(tof12_i)*2+2
1854            ipmt(3)   = 42+(tof32_i)*2+1
1855            ipmt(4)   = 42+(tof32_i)*2+2
1856    
1857            do jj=1,4
1858               time(jj) = tdca(ipmt(jj))
1859            enddo
1860    
1861            if ((time(1).lt.4095).and.(time(2).lt.4095).and.
1862         &     (time(3).lt.4095).and.(time(4).lt.4095)) then
1863             xhelp1 = time(1) + time(2)
1864             xhelp2 = time(3) + time(4)
1865             ds = xhelp1-xhelp2
1866             ihelp=56+(tof12_i)*3+tof32_i
1867             c1 = k1(ihelp+1)
1868             beta1(4) = c2*F/(ds-c1);
1869                                                     endif
1870    
1871             endif  ! tof_....
1872    
1873    c         write(*,*) beta1
1874      
1875    C----  calculate  beta mean, only downward going particles are interesting ----
1876    
1877             sw=0.
1878             sxw=0.
1879             beta_mean_tof=100.
1880    
1881            do jj=1,4
1882            if ((beta1(jj).gt.0.1).and.(beta1(jj).lt.2.0)) then
1883                w_i=1./(0.13*0.13)
1884                sxw=sxw + beta1(jj)*w_i
1885                sw =sw + w_i ;
1886                                                          endif
1887            enddo
1888    
1889            if (sw.gt.0) beta_mean_tof=sxw/sw;
1890    
1891    C        write(*,*) 'beta_mean_tof ',beta_mean_tof
1892    
1893            beta_help = beta_mean_tof  !  pow(beta_mean_tof,1.0) gave best results
1894    
1895    CCCCC        endif  !  if tof11_i > -1 && ...... beta calculation
1896    
1897    C-----------------------  Select charge   --------------------------
1898    
1899           charge=0
1900    
1901           if ((beta_mean_tof.gt.0.2).and.(beta_mean_tof.lt.2.0)) then
1902    
1903            icount1=0
1904            icount2=0
1905            icount3=0
1906    
1907            do jj=0,23
1908            a1 = adca(2*jj+1)
1909            a2 = adca(2*jj+2)
1910            if ((a1.lt.4095).and.(a2.lt.4095)) then
1911            a1 = adca(2*jj+1)*cos(theta)
1912            a2 = adca(2*jj+2)*cos(theta)
1913            xhelp  = 100000.
1914            xhelp1 = 100000.
1915            xhelp = sqrt(a1*a2)  ! geometric mean
1916            xhelp1 = beta_help*xhelp
1917    C if geometric mean multiplied by beta_help is inside/outside helium
1918    C limits, increase counter
1919           if (xhelp1.lt.A_l(jj+1))  icount1=icount1+1
1920           if ((xhelp1.gt.A_l(jj+1)).and.(xhelp1.lt.A_h(jj+1)))
1921         &                           icount2=icount2+1
1922           if (xhelp1.gt.A_h(jj+1))  icount3=icount3+1
1923                                                endif
1924            enddo
1925    
1926    
1927    C  if more than three paddles see the same...
1928    
1929            if (icount1 .gt. 3) charge=1
1930            if (icount2 .gt. 3) charge=2
1931            if (icount3 .gt. 3) charge=3
1932    
1933                                                        endif  ! 0.2<beta<2.0
1934    
1935    C  no beta found? Sum up geometric means of paddles and derive the mean...
1936    
1937           if (beta_mean_tof.eq.100.) then
1938    
1939           xhelp  = 0.
1940           icount = 0
1941    
1942           if (tof11_i.gt.-1) then
1943           jj=tof11_i
1944           a1 = adca(0+2*jj+1)
1945           a2 = adca(0+2*jj+2)
1946           if ((a1.lt.4095).and.(a2.lt.4095)) then
1947           a1 = a1*cos(theta)
1948           a2 = a2*cos(theta)
1949           xhelp = xhelp + sqrt(a1*a2)
1950           icount=icount+1
1951                        endif
1952                        endif
1953    
1954           if (tof12_i.gt.-1) then
1955           jj=tof12_i
1956           a1 = adca(16+2*jj+1)
1957           a2 = adca(16+2*jj+2)
1958           if ((a1.lt.4095).and.(a2.lt.4095)) then
1959           a1 = a1*cos(theta)
1960           a2 = a2*cos(theta)
1961           xhelp = xhelp + sqrt(a1*a2)
1962           icount=icount+1
1963                        endif
1964                        endif
1965    
1966           if (tof21_i.gt.-1) then
1967           jj=tof21_i
1968           a1 = adca(28+2*jj+1)
1969           a2 = adca(28+2*jj+2)
1970           if ((a1.lt.4095).and.(a2.lt.4095)) then
1971           a1 = a1*cos(theta)
1972           a2 = a2*cos(theta)
1973           xhelp = xhelp + sqrt(a1*a2)
1974           icount=icount+1
1975                        endif
1976                        endif
1977    
1978           if (tof22_i.gt.-1) then
1979           jj=tof22_i
1980           a1 = adca(32+2*jj+1)
1981           a2 = adca(32+2*jj+2)
1982           if ((a1.lt.4095).and.(a2.lt.4095)) then
1983           a1 = a1*cos(theta)
1984           a2 = a2*cos(theta)
1985           xhelp = xhelp + sqrt(a1*a2)
1986           icount=icount+1
1987                        endif
1988                        endif
1989    
1990           if (tof31_i.gt.-1) then
1991           jj=tof31_i
1992           a1 = adca(36+2*jj+1)
1993           a2 = adca(36+2*jj+2)
1994           if ((a1.lt.4095).and.(a2.lt.4095)) then
1995           a1 = a1*cos(theta)
1996           a2 = a2*cos(theta)
1997           xhelp = xhelp + sqrt(a1*a2)
1998           icount=icount+1
1999                        endif
2000                        endif
2001    
2002           if (tof32_i.gt.-1) then
2003           jj=tof32_i
2004           a1 = adca(42+2*jj+1)
2005           a2 = adca(42+2*jj+2)
2006           if ((a1.lt.4095).and.(a2.lt.4095)) then
2007           a1 = a1*cos(theta)
2008           a2 = a2*cos(theta)
2009           xhelp = xhelp + sqrt(a1*a2)
2010           icount=icount+1
2011                        endif
2012                        endif
2013    
2014    
2015           if (icount.gt.0) xhelp=xhelp/icount
2016           if ((icount.gt.2).and.(xhelp.gt.1500.)) charge=3
2017    
2018                                      endif  ! beta_mean_tof.eq.100.
2019    
2020    C        write(*,*) 'in function charge: ',beta_mean_tof,charge
2021    
2022            check_charge = charge
2023    
2024    
2025            END
2026    
2027    C****************************************************************************
2028    C****************************************************************************
2029    C****************************************************************************
2030    
2031            function newbeta(iflag,b,hitvec,resmax,qualitycut,chi2cut)
2032    
2033            include  'input_tof.txt'
2034            include  'output_tof.txt'
2035            include  'tofcomm.txt'
2036    
2037            REAL newbeta
2038            REAL resmax,qualitycut,chi2cut
2039            REAL w_i(12),w_il(6),quality,res,betachi,beta_mean_inv
2040            REAL sw,sxw,b(12),beta_mean,chi2,xhelp
2041            REAL tdcfl(4,12)
2042    
2043            INTEGER iflag,icount,hitvec(6)
2044    
2045            INTEGER itop(12),ibot(12)
2046            DATA itop /1,1,2,2,3,3,4,4,1,1,2,2/
2047            DATA ibot /5,6,5,6,5,6,5,6,3,4,3,4/
2048    
2049    
2050    c get rid of warnings EMILIANO
2051            slope = 0
2052            offset = 0
2053            none_find = 0
2054            none_ev = 0
2055            adc_ev = 0
2056            tdc_ev = 0
2057            iadc = 0
2058            itdc = 0
2059            right = 0
2060            left = 0
2061            tof12_y(1) = tof12_y(1)
2062            tof11_x(1) = tof11_x(1)
2063            tof21_y(1) = tof21_y(1)
2064            tof22_x(1) = tof22_x(1)
2065            tof32_y(1) = tof32_y(1)
2066            tof31_x(1) = tof31_x(1)
2067    c get rid of warnings
2068    
2069    C====================================================================
2070    
2071            tof11_i = hitvec(1)
2072            tof12_i = hitvec(2)
2073            tof21_i = hitvec(3)
2074            tof22_i = hitvec(4)
2075            tof31_i = hitvec(5)
2076            tof32_i = hitvec(6)
2077    
2078             if (iflag.eq.1) then   ! call from tofl2com
2079             do i=1,4
2080             do j=1,12
2081              tdcfl(i,j) =  tdcflagtof(i,j)
2082             enddo
2083             enddo
2084                            endif
2085    
2086             if (iflag.eq.2) then   ! call from toftrk
2087             do i=1,4
2088             do j=1,12
2089              tdcfl(i,j) =  tdcflag(i,j)
2090             enddo
2091             enddo
2092                            endif
2093    
2094    
2095    C---  Find out ToF layers with artificial TDC values    -------------
2096    
2097            do jj=1,6
2098            w_il(jj) = 1000.
2099            enddo
2100    
2101    
2102            if (tof11_i.gt.0) then
2103            if ((tofmask(ch11a(tof11_i),hb11a(tof11_i)).gt.0).or.
2104         &   (tofmask(ch11b(tof11_i),hb11b(tof11_i)).gt.0)) then
2105            w_il(1)=0
2106            i1=tdcfl(ch11a(tof11_i),hb11a(tof11_i))
2107            i2=tdcfl(ch11b(tof11_i),hb11b(tof11_i))
2108            if ((i1.eq.1).or.(i2.eq.1)) w_il(1) = 1  ! tdcflag
2109                                                          endif
2110                               endif
2111    
2112            if (tof12_i.gt.0) then
2113            if ((tofmask(ch12a(tof12_i),hb12a(tof12_i)).gt.0).or.
2114         &   (tofmask(ch12b(tof12_i),hb12b(tof12_i)).gt.0)) then
2115            w_il(2)=0
2116            i1=tdcfl(ch12a(tof12_i),hb12a(tof12_i))
2117            i2=tdcfl(ch12b(tof12_i),hb12b(tof12_i))
2118            if ((i1.eq.1).or.(i2.eq.1)) w_il(2) = 1  ! tdcflag
2119                                                          endif
2120                               endif
2121    
2122            if (tof21_i.gt.0) then
2123            if ((tofmask(ch21a(tof21_i),hb21a(tof21_i)).gt.0).or.
2124         &   (tofmask(ch21b(tof21_i),hb21b(tof21_i)).gt.0)) then
2125            w_il(3)=0
2126            i1=tdcfl(ch21a(tof21_i),hb21a(tof21_i))
2127            i2=tdcfl(ch21b(tof21_i),hb21b(tof21_i))
2128            if ((i1.eq.1).or.(i2.eq.1)) w_il(3) = 1  ! tdcflag
2129                                                          endif
2130                               endif
2131    
2132            if (tof22_i.gt.0) then
2133            if ((tofmask(ch22a(tof22_i),hb22a(tof22_i)).gt.0).or.
2134         &   (tofmask(ch22b(tof22_i),hb22b(tof22_i)).gt.0)) then
2135            w_il(4)=0
2136            i1=tdcfl(ch22a(tof22_i),hb22a(tof22_i))
2137            i2=tdcfl(ch22b(tof22_i),hb22b(tof22_i))
2138            if ((i1.eq.1).or.(i2.eq.1)) w_il(4) = 1  ! tdcflag
2139                                                          endif
2140                               endif
2141    
2142            if (tof31_i.gt.0) then
2143            if ((tofmask(ch31a(tof31_i),hb11a(tof31_i)).gt.0).or.
2144         &   (tofmask(ch31b(tof31_i),hb31b(tof31_i)).gt.0)) then
2145            w_il(5)=0
2146            i1=tdcfl(ch31a(tof31_i),hb31a(tof31_i))
2147            i2=tdcfl(ch31b(tof31_i),hb31b(tof31_i))
2148            if ((i1.eq.1).or.(i2.eq.1)) w_il(5) = 1  ! tdcflag
2149                                                          endif
2150                               endif
2151    
2152            if (tof32_i.gt.0) then
2153            if ((tofmask(ch32a(tof32_i),hb32a(tof32_i)).gt.0).or.
2154         &   (tofmask(ch32b(tof32_i),hb32b(tof32_i)).gt.0)) then
2155            w_il(6)=0
2156            i1=tdcfl(ch32a(tof32_i),hb32a(tof32_i))
2157            i2=tdcfl(ch32b(tof32_i),hb32b(tof32_i))
2158            if ((i1.eq.1).or.(i2.eq.1)) w_il(6) = 1  ! tdcflag
2159                                                          endif
2160                               endif
2161    
2162    C------------------------------------------------------------------------
2163    C---  Set weights for the 12 measurements using information for top and bottom:
2164    C---  if no measurements: weight = set to very high value=> not used
2165    C---  top or bottom artificial: weight*sqrt(2)
2166    C---  top and bottom artificial: weight*sqrt(2)*sqrt(2)
2167    
2168           DO jj=1,12
2169           if (jj.le.4)           xhelp = 0.11            ! S1-S3
2170           if ((jj.gt.4).and.(jj.le.8)) xhelp = 0.18      ! S2-S3
2171           if (jj.gt.8)           xhelp = 0.28            ! S1-S2
2172           if ((w_il(itop(jj)).eq.1000.).and.(w_il(ibot(jj)).eq.1000.))
2173         &   xhelp = 1.E09
2174           if ((w_il(itop(jj)).eq.1).or.(w_il(ibot(jj)).eq.1.))
2175         &   xhelp = xhelp*1.414
2176           if ((w_il(itop(jj)).eq.1).and.(w_il(ibot(jj)).eq.1.))
2177         &   xhelp = xhelp*2.
2178           w_i(jj) = 1./xhelp
2179           ENDDO
2180    
2181    C========================================================================
2182    C--- Calculate mean beta for the first time -----------------------------
2183    C--- We are using "1/beta" since its error is gaussian ------------------
2184    
2185            icount=0
2186            sw=0.
2187            sxw=0.
2188            beta_mean=100.
2189    
2190            DO jj=1,12
2191            IF ((abs(1./b(jj)).gt.0.1).and.(abs(1./b(jj)).lt.15.)) THEN
2192                icount = icount+1
2193                sxw    = sxw + (1./b(jj))*w_i(jj)*w_i(jj)
2194                sw     = sw + w_i(jj)*w_i(jj)
2195            ENDIF
2196            ENDDO
2197    
2198            if (icount.gt.0) beta_mean=1./(sxw/sw)
2199            beta_mean_inv = 1./beta_mean
2200    
2201      
2202    C--- Calculate beta for the second time, use residuals of the single
2203    C--- measurements to get a chi2 value
2204    
2205            icount  = 0
2206            sw      = 0.
2207            sxw     = 0.
2208            betachi = 100.
2209            chi2    = 0.
2210            quality = 0.
2211    
2212            DO jj=1,12
2213            IF ((abs(1./b(jj)).gt.0.1).and.(abs(1./b(jj)).lt.15.)
2214         &                                .and.(w_i(jj).GT.0.01)) THEN
2215                res    = beta_mean_inv - (1./b(jj)) ;
2216                if (abs(res*w_i(jj)).lt.resmax) THEN
2217                chi2   = chi2 + (res*w_i(jj))**2.
2218                icount = icount+1
2219                sxw    = sxw + (1./b(jj))*w_i(jj)*w_i(jj)
2220                sw     = sw + w_i(jj)*w_i(jj)
2221                                                ENDIF
2222            ENDIF
2223            ENDDO
2224    
2225    c        quality = sw
2226            quality = sqrt(sw)
2227    
2228            if (icount.eq.0) chi2 = 1000.
2229            if (icount.gt.0) chi2 = chi2/(icount)
2230    
2231            if (icount.gt.0) betachi=1./(sxw/sw);
2232    
2233            beta_mean=100.
2234            if ((chi2.lt.chi2cut).and.(quality.gt.qualitycut))
2235         &  beta_mean = betachi
2236            newbeta = beta_mean
2237    
2238            END
2239    
2240    C****************************************************************************
2241    

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.14

  ViewVC Help
Powered by ViewVC 1.1.23