/[PAMELA software]/DarthVader/TrackerLevel2/inc/F77/common_mini_2.f
ViewVC logotype

Diff of /DarthVader/TrackerLevel2/inc/F77/common_mini_2.f

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

revision 1.1 by mocchiut, Fri May 19 13:15:53 2006 UTC revision 1.5 by pam-fi, Wed Mar 28 09:05:08 2007 UTC
# Line 44  c      PARAMETER (PIGR=3.141592654)!???? Line 44  c      PARAMETER (PIGR=3.141592654)!????
44        REAL*8 XM,YM,ZM        REAL*8 XM,YM,ZM
45        REAL*8 XM_A,YM_A!,ZM_A        REAL*8 XM_A,YM_A!,ZM_A
46        REAL*8 XM_B,YM_B!,ZM_B        REAL*8 XM_B,YM_B!,ZM_B
       REAL*8 XGOOD,YGOOD  
47        REAL*8 RESX,RESY        REAL*8 RESX,RESY
48          REAL*8 XGOOD,YGOOD
49  c     REAL*8 DEDXTRK            !(1)  c     REAL*8 DEDXTRK            !(1)
50        REAL*8 DEDXTRK_X          !(1)        REAL*8 DEDXTRK_X          !(1)
51        REAL*8 DEDXTRK_Y          !(1)        REAL*8 DEDXTRK_Y          !(1)
52          REAL*8 ZINI     ! ***PP***
53          REAL*8 PFIXED   ! ***PP***
54          REAL*8 CHI2
55          REAL*8 XV,YV,ZV
56          REAL*8 AXV,AYV
57          REAL*8 COV
58          REAL*8 FACT
59          INTEGER NSTEP
60          INTEGER IDCAND            !(2)
61          INTEGER TRACKMODE
62          INTEGER ISTEPMIN
63        COMMON/TRACK/        COMMON/TRACK/
64       $      AL(5)                                      !track parameters       $      AL(5)                                      !track parameters
65       $     ,XM(NPLANES),YM(NPLANES),ZM(NPLANES)        !couple    => xyz point       $     ,XM(NPLANES),YM(NPLANES),ZM(NPLANES)        !couple    => xyz point
# Line 58  c     REAL*8 DEDXTRK            !(1) Line 69  c     REAL*8 DEDXTRK            !(1)
69       $     ,XGOOD(NPLANES),YGOOD(NPLANES)              !mask of included views       $     ,XGOOD(NPLANES),YGOOD(NPLANES)              !mask of included views
70  c     $     ,DEDXTRK(NPLANES)                           !energy release  c     $     ,DEDXTRK(NPLANES)                           !energy release
71       $     ,DEDXTRK_X(NPLANES),DEDXTRK_Y(NPLANES) !(1)       $     ,DEDXTRK_X(NPLANES),DEDXTRK_Y(NPLANES) !(1)
72         $     ,ZINI
73         $     ,PFIXED
74         $     ,CHI2
75         $     ,XV(NPLANES),YV(NPLANES),ZV(NPLANES)
76         $     ,AXV(NPLANES),AYV(NPLANES)
77         $     ,COV(5,5)
78         $     ,FACT                ! factor scale for tracking precision
79         $     ,NSTEP
80         $     ,IDCAND              !(2) track-candidate ID (to relate some level1 info)
81         $     ,TRACKMODE           ! tracking mode, 0=normal, 1=with bremsstrahlung
82         $     ,ISTEPMIN            ! minimum number of step during tracking
83  c******************************************************  c******************************************************
84  cccccc 06/10/2005 modified by elena vannuccini ---> (1)  cccccc 06/10/2005 modified by elena vannuccini ---> (1)
85    cccccc 17/08/2006 modified by elena vannuccini ---> (2)
86  c******************************************************  c******************************************************
87    
88  *     -------------------------------------------------------------------------  *     -------------------------------------------------------------------------
# Line 70  c*************************************** Line 93  c***************************************
93  *     - projected angles  *     - projected angles
94  *     - parameter covariance matrix  *     - parameter covariance matrix
95  *     -------------------------------------------------------------------------  *     -------------------------------------------------------------------------
96        REAL*8 CHI2  c$$$      REAL*8 ZINI     ! ***PP***
97        REAL*8 XV,YV,ZV  c$$$      REAL*8 PFIXED   ! ***PP***
98        REAL*8 AXV,AYV  c$$$      REAL*8 CHI2
99        REAL*8 COV  c$$$      REAL*8 XV,YV,ZV
100        COMMON/FIT_INFO/  c$$$      REAL*8 AXV,AYV
101       $      CHI2  c$$$      REAL*8 COV
102       $     ,XV(NPLANES),YV(NPLANES),ZV(NPLANES)  c$$$      COMMON/FIT_INFO/
103       $     ,AXV(NPLANES),AYV(NPLANES)  c$$$     $      ZINI
104       $     ,COV(5,5)              c$$$     $     ,PFIXED
105    c$$$     $     ,CHI2
106    c$$$     $     ,XV(NPLANES),YV(NPLANES),ZV(NPLANES)
107    c$$$     $     ,AXV(NPLANES),AYV(NPLANES)
108    c$$$     $     ,COV(5,5)            
109    
110    
111    
# Line 91  c*************************************** Line 118  c***************************************
118        REAL*8 CHI2D,CHI2DD       !first and second derivatives of chi^2        REAL*8 CHI2D,CHI2DD       !first and second derivatives of chi^2
119        REAL*8 DXDAL,DYDAL        !first derivatives of x and y on AL-pha        REAL*8 DXDAL,DYDAL        !first derivatives of x and y on AL-pha
120        REAL*8 STEPAL             !        REAL*8 STEPAL             !
121        REAL*8 ZINI               !z coordinate of reference plane  ***PP***      REAL*8 ZINI               !z coordinate of reference plane
122        COMMON/MINICOM/        COMMON/MINICOM/
123       $      CHI2D(5),CHI2DD(5,5)       $      CHI2D(5),CHI2DD(5,5)
124       $     ,DXDAL(NPLANES,5),DYDAL(NPLANES,5)       $     ,DXDAL(NPLANES,5),DYDAL(NPLANES,5)
125       $     ,STEPAL(5)       $     ,STEPAL(5)
126       $     ,ZINI  ***PP***     $     ,ZINI
127  *     -------------------------------------------------------------------------  *     -------------------------------------------------------------------------
128  *     convergence conditions  *     convergence conditions
129        REAL*8 ALTOL              !tolerances on AL-pha parameters        REAL*8 ALTOL              !tolerances on AL-pha parameters

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

  ViewVC Help
Powered by ViewVC 1.1.23