/[PAMELA software]/DarthVader/TrackerLevel2/src/TrkLevel2.cpp
ViewVC logotype

Diff of /DarthVader/TrackerLevel2/src/TrkLevel2.cpp

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

revision 1.43 by pam-fi, Tue Jan 22 08:55:07 2008 UTC revision 1.46 by pam-fi, Fri Apr 11 13:44:38 2008 UTC
# Line 60  TrkTrack::TrkTrack(){ Line 60  TrkTrack::TrkTrack(){
60          ypu[ip]    = 0;            ypu[ip]    = 0;  
61    
62      };      };
63        
64  //     TrkParams::SetTrackingMode();  //     TrkParams::SetTrackingMode();
65  //     TrkParams::SetPrecisionFactor();  //     TrkParams::SetPrecisionFactor();
66  //     TrkParams::SetStepMin();  //     TrkParams::SetStepMin();
67      TrkParams::SetMiniDefault();      TrkParams::SetMiniDefault();
68      TrkParams::SetPFA();      TrkParams::SetPFA();
69    
70        int ngf = TrkParams::nGF;
71        for(int i=0; i<ngf; i++){
72            xGF[i] = 0.;
73            yGF[i] = 0.;
74        }
75    
76    
77  };  };
78  //--------------------------------------  //--------------------------------------
79  //  //
# Line 112  TrkTrack::TrkTrack(const TrkTrack& t){ Line 119  TrkTrack::TrkTrack(const TrkTrack& t){
119      TrkParams::SetMiniDefault();      TrkParams::SetMiniDefault();
120      TrkParams::SetPFA();      TrkParams::SetPFA();
121    
122        int ngf = TrkParams::nGF;
123        for(int i=0; i<ngf; i++){
124            xGF[i] = t.xGF[i];
125            yGF[i] = t.yGF[i];
126        }
127  };  };
128  //--------------------------------------  //--------------------------------------
129  //  //
# Line 152  void TrkTrack::Copy(TrkTrack& t){ Line 164  void TrkTrack::Copy(TrkTrack& t){
164          t.ypu[ip]      = ypu[ip];            t.ypu[ip]      = ypu[ip];  
165                            
166      };      };
167        int ngf = TrkParams::nGF;
168        for(int i=0; i<ngf; i++){
169            t.xGF[i] = xGF[i];
170            t.yGF[i] = yGF[i];
171        }
172    
173            
174  };  };
# Line 165  void TrkTrack::Copy(TrkTrack& t){ Line 182  void TrkTrack::Copy(TrkTrack& t){
182   * @param t pointer to an object of the class Trajectory,   * @param t pointer to an object of the class Trajectory,
183   * which z coordinates should be previously initialized by calling the proper constructor ( Trajectory::Trajectory(int n, float* zin) ).   * which z coordinates should be previously initialized by calling the proper constructor ( Trajectory::Trajectory(int n, float* zin) ).
184   * @return error flag.   * @return error flag.
185     *
186     * >>> OBSOLETE !!! use TrkTrack::DoTrack2(Trajectory* t) instead
187     *
188   */   */
189  int TrkTrack::DoTrack(Trajectory* t){  int TrkTrack::DoTrack(Trajectory* t){
190    
191        cout << " int TrkTrack::DoTrack(Trajectory* t) --->> OBSOLETE !!! "<<endl;
192        cout << " use int TrkTrack::DoTrack2(Trajectory* t)"<<endl;
193    
194      double *dxout = new double[t->npoint];      double *dxout = new double[t->npoint];
195      double *dyout = new double[t->npoint];      double *dyout = new double[t->npoint];
196      double *dzin = new double[t->npoint];      double *dzin = new double[t->npoint];
# Line 186  int TrkTrack::DoTrack(Trajectory* t){ Line 209  int TrkTrack::DoTrack(Trajectory* t){
209      dotrack_(&(t->npoint),dzin,dxout,dyout,dal,&ifail);      dotrack_(&(t->npoint),dzin,dxout,dyout,dal,&ifail);
210            
211      for (int i=0; i<t->npoint; i++){      for (int i=0; i<t->npoint; i++){
212          t->x[i] = (float)*dxout++;          t->x[i] = (float)*(dxout+i);
213          t->y[i] = (float)*dyout++;          t->y[i] = (float)*(dyout+i);
214      }      }
215    
216  //    delete [] dxout;      delete [] dxout;
217  //    delete [] dyout;      delete [] dyout;
218  //    delete [] dzin;      delete [] dzin;
219    
220      return ifail;      return ifail;
221  };  };
# Line 230  int TrkTrack::DoTrack2(Trajectory* t){ Line 253  int TrkTrack::DoTrack2(Trajectory* t){
253      dotrack2_(&(t->npoint),dzin,dxout,dyout,dthxout,dthyout,dtlout,dal,&ifail);      dotrack2_(&(t->npoint),dzin,dxout,dyout,dthxout,dthyout,dtlout,dal,&ifail);
254            
255      for (int i=0; i<t->npoint; i++){      for (int i=0; i<t->npoint; i++){
256          t->x[i]   = (float)*dxout++;          t->x[i]   = (float)*(dxout+i);
257          t->y[i]   = (float)*dyout++;          t->y[i]   = (float)*(dyout+i);
258          t->thx[i] = (float)*dthxout++;          t->thx[i] = (float)*(dthxout+i);
259          t->thy[i] = (float)*dthyout++;          t->thy[i] = (float)*(dthyout+i);
260          t->tl[i]  = (float)*dtlout++;          t->tl[i]  = (float)*(dtlout+i);
261      }      }
262    
263  //    delete [] dxout;      delete [] dxout;
264  //    delete [] dyout;      delete [] dyout;
265  //    delete [] dzin;      delete [] dzin;
266        delete [] dthxout;
267        delete [] dthyout;
268        delete [] dtlout;
269    
270      return ifail;      return ifail;
271  };  };
# Line 299  Float_t TrkTrack::GetDEDX(){ Line 325  Float_t TrkTrack::GetDEDX(){
325      return dedx;      return dedx;
326  };  };
327  /**  /**
328   * Returns 1 if the cluster on a tracker view includes bad strips.   * Returns 1 if the cluster on a tracker view includes bad strips
329     * (at least one bad strip among the four strip used by p.f.a.)
330   * @param ip plane (0-5)   * @param ip plane (0-5)
331   * @param iv view (0=x 1=y)   * @param iv view (0=x 1=y)
332   */   */
# Line 651  void TrkTrack::FillMiniStruct(cMini2trac Line 678  void TrkTrack::FillMiniStruct(cMini2trac
678          track.zm[i]=zm[i];          track.zm[i]=zm[i];
679                    
680  //      --- temporaneo ----------------------------  //      --- temporaneo ----------------------------
681  //      andrebbe inserita la dimensione del sensore  //      float segment = 100.;
682          float segment = 100.;  //      track.xm_a[i]=xm[i];
683          track.xm_a[i]=xm[i];  //      track.xm_b[i]=xm[i];
684          track.xm_b[i]=xm[i];  //      track.ym_a[i]=ym[i];
685          track.ym_a[i]=ym[i];  //      track.ym_b[i]=ym[i];
686          track.ym_b[i]=ym[i];  //      if(       XGood(i) && !YGood(i) ){
687          if(       XGood(i) && !YGood(i) ){  //          track.ym_a[i] = track.ym_a[i]+segment;
688              track.ym_a[i] = track.ym_a[i]+segment;  //          track.ym_b[i] = track.ym_b[i]-segment;
689              track.ym_b[i] = track.ym_b[i]-segment;  //      }else if( !XGood(i) && YGood(i)){
690          }else if( !XGood(i) && YGood(i)){  //          track.xm_a[i] = track.xm_a[i]+segment;
691              track.xm_a[i] = track.xm_a[i]+segment;  //          track.xm_b[i] = track.xm_b[i]-segment;
692              track.xm_b[i] = track.xm_b[i]-segment;  //      }
         }  
693  //      --- temporaneo ----------------------------  //      --- temporaneo ----------------------------
694    
695            if( XGood(i) || YGood(i) ){
696                double segment = 2.;//cm
697                // NB: i parametri di allineamento hanno una notazione particolare!!!
698                // sensor = 0 (hybrid side), 1
699                // ladder = 0-2 (increasing x)
700                // plane  = 0-5 (from bottom to top!!!)
701                int is = (int)GetSensor(i); if(i==5)is=1-is;
702                int ip = 5-i;
703                int il = (int)GetLadder(i);
704                
705                double omega   = 0.;
706                double beta    = 0.;
707                double gamma   = 0.;
708                if(
709                    (is < 0 || is > 1 || ip < 0 || ip > 5 || il < 0 || il > 2) &&
710                    true){
711                    // se il piano risulta colpito, ladder e sensore devono essere
712                    // assegnati correttamente
713                    cout << " void TrkTrack::FillMiniStruct(cMini2track&) --- WARNING --- sensor not defined, cannot read alignment parameters "<<endl;
714                    cout << " is ip il = "<<is<<" "<<ip<<" "<<il<<endl;
715                }else{
716                    omega   = alignparameters_.omega[is][il][ip];
717                    beta    = alignparameters_.beta[is][il][ip];
718                    gamma   = alignparameters_.gamma[is][il][ip];
719                }
720                
721                if(       XGood(i) && !YGood(i) ){
722                    track.xm_a[i] = xm[i] - omega * segment;
723                    track.ym_a[i] = ym[i] + segment;
724    //          track.zm_a[i] = zm[i] + beta * segment;//not used yet
725                    track.xm_b[i] = xm[i] + omega * segment;
726                    track.ym_b[i] = ym[i] - segment;
727    //          track.zm_b[i] = zm[i] - beta * segment;//not used yet
728                }else if( !XGood(i) && YGood(i) ){
729                    track.xm_a[i] = xm[i] + segment;
730                    track.ym_a[i] = ym[i] + omega * segment;
731    //          track.zm_a[i] = zm[i] - gamma * segment;//not used yet
732                    track.xm_b[i] = xm[i] - segment;
733                    track.ym_b[i] = ym[i] - omega * segment;
734    //          track.zm_b[i] = zm[i] + gamma * segment;//not used yet
735                }
736            }
737                    
738          track.resx[i]=resx[i];          track.resx[i]=resx[i];
739          track.resy[i]=resy[i];          track.resy[i]=resy[i];
740          track.tailx[i]=tailx[i];          track.tailx[i]=tailx[i];
741          track.taily[i]=taily[i];          track.taily[i]=taily[i];
# Line 890  void TrkTrack::SetDeltaB(int id, double Line 959  void TrkTrack::SetDeltaB(int id, double
959  }  }
960    
961  /**  /**
962   * Returns 1 if the track is inside the magnet cavity   * Returns true if the track is inside the magnet cavity.
963   * Set the minimum number of steps for tracking precision   * @param toll Tolerance around the nominal volume (toll>0 define an inner fiducial volume)
964   */   */
965  Bool_t TrkTrack::IsInsideCavity(){  Bool_t TrkTrack::IsInsideCavity(float toll){
966      float xmagntop, ymagntop, xmagnbottom, ymagnbottom;  
967      xmagntop = xv[0] + (ZMAGNHIGH-zv[0])*tan(acos(-1.0)*axv[0]/180.);  //     float xmagntop, ymagntop, xmagnbottom, ymagnbottom;
968      ymagntop = yv[0] + (ZMAGNHIGH-zv[0])*tan(acos(-1.0)*ayv[0]/180.);  //     xmagntop = xv[0] + (ZMAGNHIGH-zv[0])*tan(acos(-1.0)*axv[0]/180.);
969      xmagnbottom = xv[5] + (ZMAGNLOW-zv[5])*tan(acos(-1.0)*axv[5]/180.);  //     ymagntop = yv[0] + (ZMAGNHIGH-zv[0])*tan(acos(-1.0)*ayv[0]/180.);
970      ymagnbottom = yv[5] + (ZMAGNLOW-zv[5])*tan(acos(-1.0)*ayv[5]/180.);  //     xmagnbottom = xv[5] + (ZMAGNLOW-zv[5])*tan(acos(-1.0)*axv[5]/180.);
971      if( xmagntop>XMAGNLOW && xmagntop<XMAGNHIGH &&  //     ymagnbottom = yv[5] + (ZMAGNLOW-zv[5])*tan(acos(-1.0)*ayv[5]/180.);
972          ymagntop>YMAGNLOW && ymagntop<YMAGNHIGH &&  //     if( xmagntop>XMAGNLOW && xmagntop<XMAGNHIGH &&
973          xmagnbottom>XMAGNLOW && xmagnbottom<XMAGNHIGH &&  //      ymagntop>YMAGNLOW && ymagntop<YMAGNHIGH &&
974          ymagnbottom>YMAGNLOW && ymagnbottom<YMAGNHIGH ) return(true);  //      xmagnbottom>XMAGNLOW && xmagnbottom<XMAGNHIGH &&
975      else return(false);  //      ymagnbottom>YMAGNLOW && ymagnbottom<YMAGNHIGH ) return(true);
976    //     else return(false);
977    
978        int ngf = TrkParams::nGF;
979        for(int i=0; i<ngf; i++){
980            //
981    //      cout << endl << TrkParams::GF_element[i];
982            if(
983                TrkParams::GF_element[i].CompareTo("CUF") &&
984                TrkParams::GF_element[i].CompareTo("T2")  &&
985                TrkParams::GF_element[i].CompareTo("T3")  &&
986                TrkParams::GF_element[i].CompareTo("T4")  &&
987                TrkParams::GF_element[i].CompareTo("T5")  &&
988                TrkParams::GF_element[i].CompareTo("CLF") &&
989                true)continue;
990            // apply condition only within the cavity
991    //      cout << " -- "<<xGF[i]<<" "<<yGF[i];
992            if(
993                xGF[i] <= TrkParams::xGF_min[i] + toll ||
994                xGF[i] >= TrkParams::xGF_max[i] - toll ||
995                yGF[i] <= TrkParams::yGF_min[i] + toll ||
996                yGF[i] >= TrkParams::yGF_max[i] - toll ||
997                false){
998                
999                return false;
1000            }
1001        }
1002        return true;
1003    
1004    
1005    }
1006    /**
1007     * Returns true if the track is inside the nominal acceptance, which is defined
1008     * by the intersection among magnet cavity, silicon-plane sensitive area and
1009     * ToF sensitive area (nominal values from the official document used to
1010     * calculate the geometrical factor)
1011     */
1012    Bool_t TrkTrack::IsInsideAcceptance(){
1013    
1014        int ngf = TrkParams::nGF;
1015        for(int i=0; i<ngf; i++){
1016            if(
1017                xGF[i] <= TrkParams::xGF_min[i] ||
1018                xGF[i] >= TrkParams::xGF_max[i] ||
1019                yGF[i] <= TrkParams::yGF_min[i] ||
1020                yGF[i] >= TrkParams::yGF_max[i] ||
1021                false)return false;
1022        }
1023        return true;
1024    
1025  }  }
1026  /**  /**
1027   * Method to retrieve ID (0,1,...) of x-cluster (if any) associated to this track.   * Method to retrieve ID (0,1,...) of x-cluster (if any) associated to this track.
# Line 923  Int_t TrkTrack::GetClusterY_ID(int ip){ Line 1041  Int_t TrkTrack::GetClusterY_ID(int ip){
1041  };  };
1042    
1043  /**  /**
1044   * Method to retrieve the ladder (0-4, increasing x) traversed by the track on this plane.   * Method to retrieve the ladder (0-2, increasing x) traversed by the track on this plane.
1045   * If no ladder is traversed (dead area) the metod retuns -1.   * If no ladder is traversed (dead area) the metod retuns -1.
1046   * @param ip Tracker plane (0-5)   * @param ip Tracker plane (0-5)
1047   */   */
# Line 946  Int_t TrkTrack::GetSensor(int ip){ Line 1064  Int_t TrkTrack::GetSensor(int ip){
1064  /**  /**
1065   * \brief Method to include a x-cluster to the track.   * \brief Method to include a x-cluster to the track.
1066   * @param ip Tracker plane (0-5)   * @param ip Tracker plane (0-5)
1067   * @param clid Cluster ID (0,1,...)   * @param clid Cluster ID (0 = no-cluster, 1,2,... otherwise )
1068   * @param is Sensor (0-1, increasing y)   * @param il Ladder (0-2, increasing x, -1 if no sensitive area is hit)
1069     * @param is Sensor (0-1, increasing y, -1 if no sensitive area is hit)
1070     * @param bad True if the cluster contains bad strips  
1071   * @see Fit(double pfixed, int& fail, int iprint, int froml1)   * @see Fit(double pfixed, int& fail, int iprint, int froml1)
1072   */   */
1073  void TrkTrack::SetXGood(int ip, int clid, int is){  void TrkTrack::SetXGood(int ip, int clid, int il, int is, bool bad){
1074      int il=0;       //ladder (temporary)  //    int il=0;       //ladder (temporary)
1075      bool bad=false; //ladder (temporary)  //    bool bad=false; //ladder (temporary)
1076      xgood[ip]=il*100000000+is*10000000+clid;      if(ip<0||ip>5||clid<0||il<-1||il>2||is<-1||is>1)
1077            cout << " void TrkTrack::SetXGood(int,int,int,int,bool) --> MA SEI DI COCCIO?!?!"<<endl;
1078        xgood[ip]=(il+1)*100000000+(is+1)*10000000+clid;
1079      if(bad)xgood[ip]=-xgood[ip];      if(bad)xgood[ip]=-xgood[ip];
1080  };  };
1081  /**  /**
1082   * \brief Method to include a y-cluster to the track.   * \brief Method to include a y-cluster to the track.
1083   * @param ip Tracker plane (0-5)   * @param ip Tracker plane (0-5)
1084   * @param clid Cluster ID (0,1,...)   * @param clid Cluster ID (0 = no-cluster, 1,2,... otherwise )
1085   * @param is Sensor (0-1)   * @param il Ladder (0-2, increasing x, -1 if no sensitive area is hit)
1086     * @param is Sensor (0-1, increasing y, -1 if no sensitive area is hit)
1087     * @param bad True if the cluster contains bad strips  
1088   * @see Fit(double pfixed, int& fail, int iprint, int froml1)   * @see Fit(double pfixed, int& fail, int iprint, int froml1)
1089   */   */
1090  void TrkTrack::SetYGood(int ip, int clid, int is){  void TrkTrack::SetYGood(int ip, int clid, int il, int is, bool bad){
1091      int il=0;       //ladder (temporary)  //    int il=0;       //ladder (temporary)
1092      bool bad=false; //ladder (temporary)  //    bool bad=false; //ladder (temporary)
1093      ygood[ip]=il*100000000+is*10000000+clid;      if(ip<0||ip>5||clid<0||il<-1||il>2||is<-1||is>1)
1094            cout << " void TrkTrack::SetYGood(int,int,int,int,bool) --> MA SEI DI COCCIO?!?!"<<endl;
1095        ygood[ip]=(il+1)*100000000+(is+1)*10000000+clid;
1096      if(bad)ygood[ip]=-ygood[ip];      if(bad)ygood[ip]=-ygood[ip];
1097  };  };
1098    
# Line 1219  void TrkTrack::Clear(){ Line 1345  void TrkTrack::Clear(){
1345          dedx_y[ip] = 0;          dedx_y[ip] = 0;
1346    
1347      };      };
1348        int ngf = TrkParams::nGF;
1349        for(int i=0; i<ngf; i++){
1350            xGF[i] = 0.;
1351            yGF[i] = 0.;
1352        }
1353  //     if(clx)clx->Clear();  //     if(clx)clx->Clear();
1354  //     if(cly)cly->Clear();  //     if(cly)cly->Clear();
1355  //    clx.Clear();  //    clx.Clear();
# Line 1245  void TrkTrack::Delete(){ Line 1376  void TrkTrack::Delete(){
1376  //--------------------------------------  //--------------------------------------
1377  TrkSinglet::TrkSinglet(){  TrkSinglet::TrkSinglet(){
1378  //    cout << "TrkSinglet::TrkSinglet() " << GetUniqueID()<<endl;  //    cout << "TrkSinglet::TrkSinglet() " << GetUniqueID()<<endl;
1379      plane    = 0;  //     plane    = 0;
1380      coord[0] = 0;  //     coord[0] = 0;
1381      coord[1] = 0;  //     coord[1] = 0;
1382      sgnl     = 0;  //     sgnl     = 0;
1383    //     multmax  = 0;
1384  //    cls      = 0;  //    cls      = 0;
1385        Clear();
1386  };  };
1387  //--------------------------------------  //--------------------------------------
1388  //  //
# Line 1261  TrkSinglet::TrkSinglet(const TrkSinglet& Line 1394  TrkSinglet::TrkSinglet(const TrkSinglet&
1394      coord[0] = s.coord[0];      coord[0] = s.coord[0];
1395      coord[1] = s.coord[1];      coord[1] = s.coord[1];
1396      sgnl     = s.sgnl;      sgnl     = s.sgnl;
1397        multmax  = s.multmax;
1398  //      cls      = 0;//<<<<pointer  //      cls      = 0;//<<<<pointer
1399  //    cls      = TRef(s.cls);  //    cls      = TRef(s.cls);
1400  };  };
# Line 1271  TrkSinglet::TrkSinglet(const TrkSinglet& Line 1405  TrkSinglet::TrkSinglet(const TrkSinglet&
1405  void TrkSinglet::Dump(){  void TrkSinglet::Dump(){
1406      int i=0;      int i=0;
1407      cout << endl << "========== Singlet " ;      cout << endl << "========== Singlet " ;
1408      cout << endl << "plane    : " << plane;      cout << endl << "plane        : " << plane;
1409      cout << endl << "coord[2] : "; while( i<2 && cout << coord[i] << " ") i++;      cout << endl << "coord[2]     : "; while( i<2 && cout << coord[i] << " ") i++;
1410      cout << endl << "sgnl     : " << sgnl;      cout << endl << "sgnl         : " << sgnl;
1411        cout << endl << "max.strip    : ";
1412        cout << endl << "multiplicity : ";
1413  }  }
1414  //--------------------------------------  //--------------------------------------
1415  //  //
# Line 1286  void TrkSinglet::Clear(){ Line 1422  void TrkSinglet::Clear(){
1422      coord[0]=-999;      coord[0]=-999;
1423      coord[1]=-999;      coord[1]=-999;
1424      sgnl=0;      sgnl=0;
1425        multmax  = 0;
1426            
1427  }  }
1428  //--------------------------------------  //--------------------------------------
# Line 1396  Bool_t TrkLevel2::GetVKFlag(int iv, int Line 1533  Bool_t TrkLevel2::GetVKFlag(int iv, int
1533   * forced (see TrkLevel2::GetVKMask(int,int)) or   * forced (see TrkLevel2::GetVKMask(int,int)) or
1534   * for this event only (TrkLevel2::GetVKFlag(int,int)).   * for this event only (TrkLevel2::GetVKFlag(int,int)).
1535   * @param iv Tracker view (0-11)   * @param iv Tracker view (0-11)
1536   * @param ivk Viking-chip number (0-23)   * @param ivk Viking-chip number (0-23)
1537   */   */
1538  Bool_t TrkLevel2::IsMaskedVK(int iv, int ivk){  Bool_t TrkLevel2::IsMaskedVK(int iv, int ivk){
1539      return !(GetVKMask(iv,ivk)&&GetVKFlag(iv,ivk) );      return !(GetVKMask(iv,ivk)&&GetVKFlag(iv,ivk) );
# Line 1492  void TrkLevel2::SetFromLevel2Struct(cTrk Line 1629  void TrkLevel2::SetFromLevel2Struct(cTrk
1629              //-----------------------------------------------------              //-----------------------------------------------------
1630              //-----------------------------------------------------              //-----------------------------------------------------
1631          };          };
1632            // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1633            // evaluated coordinates (to define GF)
1634            // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1635            int    ngf = TrkParams::nGF;
1636            float *zgf = TrkParams::zGF;
1637            Trajectory tgf = Trajectory(ngf,zgf);
1638            tgf.DoTrack2(t_track->al);//<<<< integrate the trajectory
1639            for(int ip=0; ip<ngf; ip++){
1640                t_track->xGF[ip] = tgf.x[ip];
1641                t_track->yGF[ip] = tgf.y[ip];
1642            }
1643            
1644  //      if(t_track->IsSaturated())t_track->Dump();  //      if(t_track->IsSaturated())t_track->Dump();
1645          new(t[i]) TrkTrack(*t_track);          new(t[i]) TrkTrack(*t_track);
1646          t_track->Clear();          t_track->Clear();
1647      };      };//end loop over track
1648    
1649  //  ----------------  //  ----------------
1650  //  *** SINGLETS ***  //  *** SINGLETS ***
# Line 1507  void TrkLevel2::SetFromLevel2Struct(cTrk Line 1656  void TrkLevel2::SetFromLevel2Struct(cTrk
1656          t_singlet->coord[0] = l2->xs[i][0];          t_singlet->coord[0] = l2->xs[i][0];
1657          t_singlet->coord[1] = l2->xs[i][1];          t_singlet->coord[1] = l2->xs[i][1];
1658          t_singlet->sgnl     = l2->signlxs[i];          t_singlet->sgnl     = l2->signlxs[i];
1659            t_singlet->multmax = l2->multmaxsx[i];
1660            if(l2->sxbad[i]>0) t_singlet->multmax = -1*t_singlet->multmax;
1661          //-----------------------------------------------------          //-----------------------------------------------------
1662  //      if(l1) t_singlet->cls      = l1->GetCluster(l2->clsx[i]-1);  //      if(l1) t_singlet->cls      = l1->GetCluster(l2->clsx[i]-1);
1663          //-----------------------------------------------------          //-----------------------------------------------------
# Line 1520  void TrkLevel2::SetFromLevel2Struct(cTrk Line 1671  void TrkLevel2::SetFromLevel2Struct(cTrk
1671          t_singlet->coord[0] = l2->ys[i][0];          t_singlet->coord[0] = l2->ys[i][0];
1672          t_singlet->coord[1] = l2->ys[i][1];          t_singlet->coord[1] = l2->ys[i][1];
1673          t_singlet->sgnl     = l2->signlys[i];          t_singlet->sgnl     = l2->signlys[i];
1674            t_singlet->multmax  = l2->multmaxsy[i];
1675            if(l2->sybad[i]>0) t_singlet->multmax = -1*t_singlet->multmax;
1676          //-----------------------------------------------------          //-----------------------------------------------------
1677  //      if(l1) t_singlet->cls      = l1->GetCluster(l2->clsy[i]-1);  //      if(l1) t_singlet->cls      = l1->GetCluster(l2->clsy[i]-1);
1678          //-----------------------------------------------------          //-----------------------------------------------------
1679          new(sy[i]) TrkSinglet(*t_singlet);          new(sy[i]) TrkSinglet(*t_singlet);
1680          t_singlet->Clear();          t_singlet->Clear();
1681      };      };
1682    
1683    
1684                    
1685      delete t_track;      delete t_track;
1686      delete t_singlet;      delete t_singlet;
# Line 2040  float Trajectory::GetLength(int ifirst, Line 2195  float Trajectory::GetLength(int ifirst,
2195   */   */
2196  int Trajectory::DoTrack2(float* al){  int Trajectory::DoTrack2(float* al){
2197    
2198      double *dxout   = new double[npoint];  //      double *dxout   = new double[npoint];
2199      double *dyout   = new double[npoint];  //      double *dyout   = new double[npoint];
2200      double *dthxout = new double[npoint];  //      double *dthxout = new double[npoint];
2201      double *dthyout = new double[npoint];  //      double *dthyout = new double[npoint];
2202      double *dtlout  = new double[npoint];  //      double *dtlout  = new double[npoint];
2203      double *dzin    = new double[npoint];  //      double *dzin    = new double[npoint];
2204      double dal[5];      
2205         double *dxout;
2206         double *dyout;
2207         double *dthxout;
2208         double *dthyout;
2209         double *dtlout;
2210         double *dzin;
2211    
2212         dxout   = (double*) malloc(npoint*sizeof(double));
2213         dyout   = (double*) malloc(npoint*sizeof(double));
2214         dthxout = (double*) malloc(npoint*sizeof(double));
2215         dthyout = (double*) malloc(npoint*sizeof(double));
2216         dtlout  = (double*) malloc(npoint*sizeof(double));
2217         dzin    = (double*) malloc(npoint*sizeof(double));
2218    
2219         double dal[5];
2220    
2221      int ifail = 0;      int ifail = 0;
2222    
# Line 2061  int Trajectory::DoTrack2(float* al){ Line 2231  int Trajectory::DoTrack2(float* al){
2231      dotrack2_(&(npoint),dzin,dxout,dyout,dthxout,dthyout,dtlout,dal,&ifail);      dotrack2_(&(npoint),dzin,dxout,dyout,dthxout,dthyout,dtlout,dal,&ifail);
2232            
2233      for (int i=0; i<npoint; i++){      for (int i=0; i<npoint; i++){
2234          x[i]   = (float)*dxout++;          x[i]   = (float)*(dxout+i);
2235          y[i]   = (float)*dyout++;          y[i]   = (float)*(dyout+i);
2236          thx[i] = (float)*dthxout++;          thx[i] = (float)*(dthxout+i);
2237          thy[i] = (float)*dthyout++;          thy[i] = (float)*(dthyout+i);
2238          tl[i]  = (float)*dtlout++;          tl[i]  = (float)*(dtlout+i);
2239      }      }
2240    
2241        if(dxout)  free( dxout );
2242        if(dyout)  free( dyout );
2243        if(dthxout)free( dthxout );
2244        if(dthyout)free( dthyout );
2245        if(dtlout) free( dtlout );
2246        if(dzin)   free( dzin );
2247    
2248    //      delete [] dxout;
2249    //      delete [] dyout;
2250    //      delete [] dthxout;
2251    //      delete [] dthyout;
2252    //      delete [] dtlout;
2253    //      delete [] dzin;
2254    
2255    
2256      return ifail;      return ifail;
2257  };  };

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.46

  ViewVC Help
Powered by ViewVC 1.1.23