/[PAMELA software]/DarthVader/TrackerLevel2/src/F77/analysissubroutines.f
ViewVC logotype

Diff of /DarthVader/TrackerLevel2/src/F77/analysissubroutines.f

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

revision 1.2 by pam-fi, Tue May 30 16:30:37 2006 UTC revision 1.3 by pam-fi, Tue Sep 5 12:52:20 2006 UTC
# Line 237  c         iflag=0 Line 237  c         iflag=0
237  *     ************************** FIT *** FIT *** FIT *** FIT ***  *     ************************** FIT *** FIT *** FIT *** FIT ***
238  *     **********************************************************  *     **********************************************************
239           do i=1,5           do i=1,5
240              AL(i)=dble(AL_STORE(i,icand))              AL(i)=dble(AL_STORE(i,icand))            
241           enddo           enddo
242             IDCAND = icand         !fitted track-candidate
243           ifail=0                !error flag in chi2 computation           ifail=0                !error flag in chi2 computation
244           jstep=0                !# minimization steps           jstep=0                !# minimization steps
245    
# Line 3273  c$$$  rchi2=chi2/dble(ndof) Line 3274  c$$$  rchi2=chi2/dble(ndof)
3274  c******************************************************  c******************************************************
3275  cccccc 06/10/2005 modified by elena vannuccini ---> (1)  cccccc 06/10/2005 modified by elena vannuccini ---> (1)
3276  cccccc 31/01/2006 modified by elena vannuccini ---> (2)  cccccc 31/01/2006 modified by elena vannuccini ---> (2)
3277    cccccc 12/08/2006 modified by elena vannucicni ---> (3)
3278  c******************************************************  c******************************************************
3279    
3280        include 'commontracker.f'        include 'commontracker.f'
# Line 3383  c            if(DEBUG)print*,'>>>> try t Line 3385  c            if(DEBUG)print*,'>>>> try t
3385                 icx=clx(ip,icp)                 icx=clx(ip,icp)
3386                 icy=cly(ip,icp)                 icy=cly(ip,icp)
3387                 if(LADDER(icx).ne.nldt.or. !If the ladder number does not match                 if(LADDER(icx).ne.nldt.or. !If the ladder number does not match
3388       $              cl_used(icx).eq.1.or. !or the X cluster is already used  c     $              cl_used(icx).eq.1.or. !or the X cluster is already used
3389       $              cl_used(icy).eq.1.or. !or the Y cluster is already used  c     $              cl_used(icy).eq.1.or. !or the Y cluster is already used
3390         $              cl_used(icx).ne.0.or. !or the X cluster is already used !(3)
3391         $              cl_used(icy).ne.0.or. !or the Y cluster is already used !(3)
3392       $              .false.)goto 1188 !then jump to next couple.       $              .false.)goto 1188 !then jump to next couple.
3393  *            *          
3394                 call xyz_PAM(icx,icy,ist,                 call xyz_PAM(icx,icy,ist,
# Line 3456  c            if(DEBUG)print*,'>>>> try t Line 3460  c            if(DEBUG)print*,'>>>> try t
3460                 if(LADDER(icx).ne.nldt)goto 11882 !if the ladder number does not match                 if(LADDER(icx).ne.nldt)goto 11882 !if the ladder number does not match
3461  *                                                !jump to the next couple  *                                                !jump to the next couple
3462  *----- try cluster x -----------------------------------------------  *----- try cluster x -----------------------------------------------
3463                 if(cl_used(icx).eq.1)goto 11881 !if the X cluster is already used  c               if(cl_used(icx).eq.1)goto 11881 !if the X cluster is already used
3464                   if(cl_used(icx).ne.0)goto 11881 !if the X cluster is already used  !(3)
3465  *                                              !jump to the Y cluster  *                                              !jump to the Y cluster
3466                 call xyz_PAM(icx,0,ist,                 call xyz_PAM(icx,0,ist,
3467  c     $              'ETA2','ETA2',  c     $              'ETA2','ETA2',
# Line 3483  c                  dedxmm = dedx(icx) !( Line 3488  c                  dedxmm = dedx(icx) !(
3488                 endif                                   endif                  
3489  11881          continue  11881          continue
3490  *----- try cluster y -----------------------------------------------  *----- try cluster y -----------------------------------------------
3491                 if(cl_used(icy).eq.1)goto 11882 !if the Y cluster is already used  c               if(cl_used(icy).eq.1)goto 11882 !if the Y cluster is already used
3492                   if(cl_used(icy).ne.0)goto 11882 !if the Y cluster is already used !(3)
3493  *                                              !jump to the next couple  *                                              !jump to the next couple
3494                 call xyz_PAM(0,icy,ist,                 call xyz_PAM(0,icy,ist,
3495  c     $              'ETA2','ETA2',  c     $              'ETA2','ETA2',
# Line 3512  c                 dedxmm = dedx(icy)  !( Line 3518  c                 dedxmm = dedx(icy)  !(
3518  *----- single clusters -----------------------------------------------      *----- single clusters -----------------------------------------------    
3519              do ic=1,ncls(ip)    !loop on single clusters              do ic=1,ncls(ip)    !loop on single clusters
3520                 icl=cls(ip,ic)                 icl=cls(ip,ic)
3521                 if(cl_used(icl).eq.1.or.     !if the cluster is already used  c               if(cl_used(icl).eq.1.or.     !if the cluster is already used
3522                   if(cl_used(icl).ne.0.or.     !if the cluster is already used !(3)
3523       $              LADDER(icl).ne.nldt.or. !or the ladder number does not match       $              LADDER(icl).ne.nldt.or. !or the ladder number does not match
3524       $              .false.)goto 18882      !jump to the next singlet       $              .false.)goto 18882      !jump to the next singlet
3525                 if(mod(VIEW(icl),2).eq.0)then!<---- X view                 if(mod(VIEW(icl),2).eq.0)then!<---- X view
# Line 3596  c              dedxtrk(nplanes-ip+1) = d Line 3603  c              dedxtrk(nplanes-ip+1) = d
3603  *                                                 *  *                                                 *
3604  *                                                 *  *                                                 *
3605  **************************************************  **************************************************
3606    cccccc 12/08/2006 modified by elena ---> (1)
3607    *
3608        subroutine clean_XYclouds(ibest,iflag)        subroutine clean_XYclouds(ibest,iflag)
3609    
3610        include 'commontracker.f'        include 'commontracker.f'
3611        include 'common_momanhough.f'        include 'common_momanhough.f'
3612        include 'momanhough_init.f'        include 'momanhough_init.f'
3613          include 'level2.f'        !(1)
3614  c      include 'calib.f'  c      include 'calib.f'
3615  c      include 'level1.f'  c      include 'level1.f'
3616    
# Line 3617  c      common/dbg/DEBUG Line 3626  c      common/dbg/DEBUG
3626              if(id.ne.0)then              if(id.ne.0)then
3627                 iclx=clx(ip,icp_cp(id))                 iclx=clx(ip,icp_cp(id))
3628                 icly=cly(ip,icp_cp(id))                 icly=cly(ip,icp_cp(id))
3629                 cl_used(iclx)=1  !tag used clusters  c               cl_used(iclx)=1  !tag used clusters
3630                 cl_used(icly)=1  !tag used clusters  c               cl_used(icly)=1  !tag used clusters
3631                   cl_used(iclx)=ntrk  !tag used clusters !(1)
3632                   cl_used(icly)=ntrk  !tag used clusters !(1)
3633              elseif(icl.ne.0)then              elseif(icl.ne.0)then
3634                 cl_used(icl)=1   !tag used clusters  c               cl_used(icl)=1   !tag used clusters
3635                   cl_used(icl)=ntrk   !tag used clusters !1)
3636              endif              endif
3637                            
3638  c               if(DEBUG)then  c               if(DEBUG)then
# Line 3817  c*************************************** Line 3829  c***************************************
3829        do it=1,NTRKMAX!NTRACKSMAX        do it=1,NTRKMAX!NTRACKSMAX
3830           IMAGE(IT)=0           IMAGE(IT)=0
3831           CHI2_nt(IT) = -100000.           CHI2_nt(IT) = -100000.
3832           BdL(IT) = 0.  c         BdL(IT) = 0.
3833           do ip=1,nplanes           do ip=1,nplanes
3834              XM_nt(IP,IT) = 0              XM_nt(IP,IT) = 0
3835              YM_nt(IP,IT) = 0              YM_nt(IP,IT) = 0
# Line 3831  cccccc 11/9/2005 modified by david fedel Line 3843  cccccc 11/9/2005 modified by david fedel
3843              DEDX_X(IP,IT) = 0              DEDX_X(IP,IT) = 0
3844              DEDX_Y(IP,IT) = 0              DEDX_Y(IP,IT) = 0
3845  c******************************************************  c******************************************************
3846    cccccc 17/8/2006 modified by elena
3847                CLTRX(IP,IT) = 0
3848                CLTRY(IP,IT) = 0
3849           enddo           enddo
3850           do ipa=1,5           do ipa=1,5
3851              AL_nt(IPA,IT) = 0              AL_nt(IPA,IT) = 0
# Line 3882  c*************************************** Line 3897  c***************************************
3897    
3898            
3899        include 'commontracker.f'        include 'commontracker.f'
3900          include 'level1.f'
3901        include 'level2.f'        include 'level2.f'
3902        include 'common_mini_2.f'        include 'common_mini_2.f'
3903          include 'common_momanhough.f'
3904        real sinth,phi,pig        !(4)        real sinth,phi,pig        !(4)
3905        pig=acos(-1.)        pig=acos(-1.)
3906    
# Line 3926  c     print*,al_nt(i,ntr) Line 3943  c     print*,al_nt(i,ntr)
3943           ayv_nt(ip,ntr)   = sngl(ayv(ip))           ayv_nt(ip,ntr)   = sngl(ayv(ip))
3944  c        dedxp(ip,ntr)    = sngl(dedxtrk(ip))   !(1)  c        dedxp(ip,ntr)    = sngl(dedxtrk(ip))   !(1)
3945           dedx_x(ip,ntr)   = sngl(dedxtrk_x(ip)) !(2)           dedx_x(ip,ntr)   = sngl(dedxtrk_x(ip)) !(2)
3946           dedx_y(ip,ntr)   = sngl(dedxtrk_y(ip)) !(2)                     dedx_y(ip,ntr)   = sngl(dedxtrk_y(ip)) !(2)  
3947      
3948             id  = CP_STORE(ip,IDCAND)
3949             icl = CLS_STORE(ip,IDCAND)
3950             if(id.ne.0)then
3951                cltrx(ip,ntr)   = clx(nplanes-ip+1,icp_cp(id))
3952                cltry(ip,ntr)   = cly(nplanes-ip+1,icp_cp(id))
3953    c            print*,ip,' ',cltrx(ip,ntr),cltry(ip,ntr)
3954             elseif(icl.ne.0)then
3955                if(mod(VIEW(icl),2).eq.0)cltrx(ip,ntr)=icl
3956                if(mod(VIEW(icl),2).eq.1)cltry(ip,ntr)=icl
3957    c            print*,ip,' ',cltrx(ip,ntr),cltry(ip,ntr)
3958             endif          
3959    
3960        enddo        enddo
3961  c      call CalcBdL(100,xxxx,IFAIL)  c      call CalcBdL(100,xxxx,IFAIL)
3962  c      if(ifps(xxxx).eq.1)BdL(ntr) = xxxx  c      if(ifps(xxxx).eq.1)BdL(ntr) = xxxx
# Line 3970  c*************************************** Line 4000  c***************************************
4000                 nclsx = nclsx + 1                 nclsx = nclsx + 1
4001                 planex(nclsx) = ip                 planex(nclsx) = ip
4002                 sgnlxs(nclsx) = dedx(icl)/mip(VIEW(icl),LADDER(icl))!(2)                 sgnlxs(nclsx) = dedx(icl)/mip(VIEW(icl),LADDER(icl))!(2)
4003                   clsx(nclsx)   = icl
4004                 do is=1,2                 do is=1,2
4005  c                  call xyz_PAM(icl,0,is,'COG1',' ',0.,0.)  c                  call xyz_PAM(icl,0,is,'COG1',' ',0.,0.)
4006                    call xyz_PAM(icl,0,is,PFAdef,' ',0.,0.)                    call xyz_PAM(icl,0,is,PFAdef,' ',0.,0.)
# Line 3984  c$$$               print*,'xs(2,nclsx)   Line 4015  c$$$               print*,'xs(2,nclsx)  
4015                 nclsy = nclsy + 1                 nclsy = nclsy + 1
4016                 planey(nclsy) = ip                 planey(nclsy) = ip
4017                 sgnlys(nclsy) = dedx(icl)/mip(VIEW(icl),LADDER(icl))!(2)                 sgnlys(nclsy) = dedx(icl)/mip(VIEW(icl),LADDER(icl))!(2)
4018                   clsy(nclsy)   = icl
4019                 do is=1,2                 do is=1,2
4020  c                  call xyz_PAM(0,icl,is,' ','COG1',0.,0.)  c                  call xyz_PAM(0,icl,is,' ','COG1',0.,0.)
4021                    call xyz_PAM(0,icl,is,' ',PFAdef,0.,0.)                    call xyz_PAM(0,icl,is,' ',PFAdef,0.,0.)
# Line 3997  c$$$               print*,'ys(2,nclsy)   Line 4029  c$$$               print*,'ys(2,nclsy)  
4029              endif              endif
4030           endif           endif
4031  c      print*,icl,cl_used(icl),cl_good(icl),ip,VIEW(icl)!nclsx(ip),nclsy(ip)  c      print*,icl,cl_used(icl),cl_good(icl),ip,VIEW(icl)!nclsx(ip),nclsy(ip)
4032    
4033    ***** LO METTO QUI PERCHE` NON SO DOVE METTERLO
4034             whichtrack(icl) = cl_used(icl)
4035    
4036        enddo        enddo
4037        end        end
4038    
# Line 4004  c      print*,icl,cl_used(icl),cl_good(i Line 4040  c      print*,icl,cl_used(icl),cl_good(i
4040    
4041    
4042    
4043    

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

  ViewVC Help
Powered by ViewVC 1.1.23