| 36 |
c DATA XGOOD,YGOOD/nplanes*1.,nplanes*1./ !planes to be used in the tracking |
c DATA XGOOD,YGOOD/nplanes*1.,nplanes*1./ !planes to be used in the tracking |
| 37 |
|
|
| 38 |
DATA STEPAL/5*1.d-7/ !alpha vector step |
DATA STEPAL/5*1.d-7/ !alpha vector step |
| 39 |
DATA ISTEPMAX/120/ !maximum number of steps in the chi^2 minimization |
DATA ISTEPMAX/100/ !maximum number of steps in the chi^2 minimization |
| 40 |
DATA TOLL/1.d-8/ !tolerance in reaching the next plane during |
DATA TOLL/1.d-8/ !tolerance in reaching the next plane during |
| 41 |
* !the tracking procedure |
* !the tracking procedure |
| 42 |
DATA STEPMAX/100./ !maximum number of steps in the trackin gprocess |
DATA STEPMAX/100./ !maximum number of steps in the trackin gprocess |
| 43 |
|
|
| 44 |
DATA ALMAX/dinf,dinf,1.,dinf,dinf/ !limits on alpha vector components |
c DATA ALMAX/dinf,dinf,1.,dinf,dinf/ !limits on alpha vector components |
| 45 |
DATA ALMIN/-dinf,-dinf,-1.,-dinf,-dinf/ !" |
c DATA ALMIN/-dinf,-dinf,-1.,-dinf,-dinf/ !" |
| 46 |
|
DATA ALMAX/dinf,dinf,dinf,dinf,dinf/ !limits on alpha vector components |
| 47 |
|
DATA ALMIN/-dinf,-dinf,-dinf,-dinf,-dinf/ !" |
| 48 |
|
|
| 49 |
DIMENSION DAL(5) !increment of vector alfa |
DIMENSION DAL(5) !increment of vector alfa |
| 50 |
DIMENSION CHI2DD_R(4,4),CHI2D_R(4) !hessiano e gradiente di chi2 |
DIMENSION CHI2DD_R(4,4),CHI2D_R(4) !hessiano e gradiente di chi2 |
| 247 |
* check number of steps: |
* check number of steps: |
| 248 |
*------------------------------------------------------------* |
*------------------------------------------------------------* |
| 249 |
IF(ISTEP.ge.ISTEPMAX) then |
IF(ISTEP.ge.ISTEPMAX) then |
| 250 |
IFAIL=1 |
c$$$ IFAIL=1 |
| 251 |
if(TRKVERBOSE) |
c$$$ if(TRKVERBOSE) |
| 252 |
$ PRINT *,'*** WARNING in mini *** ISTEP.GT.ISTEPMAX=', |
c$$$ $ PRINT *,'*** WARNING in mini *** ISTEP.GT.ISTEPMAX=', |
| 253 |
$ ISTEPMAX |
c$$$ $ ISTEPMAX |
| 254 |
goto 11 |
goto 11 |
| 255 |
endif |
endif |
| 256 |
*------------------------------------------------------------* |
*------------------------------------------------------------* |
| 800 |
ENDIF |
ENDIF |
| 801 |
ENDDO |
ENDDO |
| 802 |
CALL TRICIRCLE(NP,XP,ZP,AP,RP,CHI,XC,ZC,RADIUS,IFLAG) |
CALL TRICIRCLE(NP,XP,ZP,AP,RP,CHI,XC,ZC,RADIUS,IFLAG) |
| 803 |
c print*,' circle: ',XC,ZC,RADIUS,' --- ',CHI |
print*,' circle: ',XC,ZC,RADIUS,' --- ',CHI,IFLAG |
| 804 |
IF(IFLAG.NE.0)GOTO 10 !straigth fit |
IF(IFLAG.NE.0)GOTO 10 !straigth fit |
| 805 |
|
if(CHI.gt.100)GOTO 10 !straigth fit |
| 806 |
ARG = RADIUS**2-(ZINI-ZC)**2 |
ARG = RADIUS**2-(ZINI-ZC)**2 |
| 807 |
IF(ARG.LT.0)GOTO 10 !straigth fit |
IF(ARG.LT.0)GOTO 10 !straigth fit |
| 808 |
DC = SQRT(ARG) |
DC = SQRT(ARG) |
| 811 |
AX = -(ZINI-ZC)/DC |
AX = -(ZINI-ZC)/DC |
| 812 |
DEF=100./(RADIUS*0.3*0.43) |
DEF=100./(RADIUS*0.3*0.43) |
| 813 |
IF(XC.GT.0)DEF=-DEF |
IF(XC.GT.0)DEF=-DEF |
| 814 |
|
|
| 815 |
|
IF(ABS(X0).GT.30)THEN |
| 816 |
|
PRINT*,'STRANGE GUESS: XC,ZC,R ',XC,ZC,RADIUS |
| 817 |
|
$ ,' - CHI ',CHI,' - X0,AX,DEF ',X0,AX,DEF |
| 818 |
|
GOTO 10 !straigth fit |
| 819 |
|
ENDIF |
| 820 |
GOTO 20 !guess is ok |
GOTO 20 !guess is ok |
| 821 |
|
|
| 822 |
* ---------------------------------------- |
* ---------------------------------------- |