/[PAMELA software]/DarthVader/TrackerLevel2/inc/TrkLevel2.h
ViewVC logotype

Diff of /DarthVader/TrackerLevel2/inc/TrkLevel2.h

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

revision 1.36 by pam-fi, Fri Apr 11 13:44:36 2008 UTC revision 1.41 by pam-fi, Tue Feb 3 13:57:14 2009 UTC
# Line 71  class Trajectory : public TObject{ Line 71  class Trajectory : public TObject{
71      void Dump();      void Dump();
72      void Delete();      void Delete();
73    
74      int DoTrack2(float* al);      int DoTrack(float* al, float zini);
75        int DoTrack(float* al){ return DoTrack(al,23.5); };
76    
77        int DoTrack2(float* al, float zini);
78        int DoTrack2(float* al){ return DoTrack2(al,23.5); };
79    
80      float GetLength(){float l=0; for(int i=0; i<npoint;i++)l=l+tl[i]; return l;};      float GetLength(){float l=0; for(int i=0; i<npoint;i++)l=l+tl[i]; return l;};
81      float GetLength(int,int);      float GetLength(int,int);
82    
# Line 154  public: Line 159  public:
159      float BdL(){return 0;};                 ///< Evaluates the integral of B*dL along the track.      float BdL(){return 0;};                 ///< Evaluates the integral of B*dL along the track.
160      Int_t GetNX(){Int_t n=0; for(Int_t i=0; i<6; i++)n+=(Int_t)XGood(i); return n;};      Int_t GetNX(){Int_t n=0; for(Int_t i=0; i<6; i++)n+=(Int_t)XGood(i); return n;};
161      Int_t GetNY(){Int_t n=0; for(Int_t i=0; i<6; i++)n+=(Int_t)YGood(i); return n;};      Int_t GetNY(){Int_t n=0; for(Int_t i=0; i<6; i++)n+=(Int_t)YGood(i); return n;};
162        Int_t GetNXY(){Int_t n=0; for(Int_t i=0; i<6; i++)n+=(Int_t)YGood(i)*XGood(i); return n;};
163      Int_t GetNtot(){return GetNX()+GetNY();};      Int_t GetNtot(){return GetNX()+GetNY();};
164      Float_t GetRigidity();      Float_t GetRigidity();
165      Float_t GetDeflection();      Float_t GetDeflection();
# Line 164  public: Line 170  public:
170      Float_t GetDEDX();      Float_t GetDEDX();
171      Float_t GetDEDX(int ip);      Float_t GetDEDX(int ip);
172      Float_t GetDEDX(int ip,int iv);      Float_t GetDEDX(int ip,int iv);
173        Int_t GetLeverArmXY();
174      Int_t GetLeverArmX();      Int_t GetLeverArmX();
175      Int_t GetLeverArmY();      Int_t GetLeverArmY();
176      Float_t GetChi2X();      Float_t GetChi2X();
# Line 202  public: Line 209  public:
209      Int_t GetSensor(int ip);      Int_t GetSensor(int ip);
210      Bool_t XGood(int ip){ return GetClusterX_ID(ip)!=-1; };      Bool_t XGood(int ip){ return GetClusterX_ID(ip)!=-1; };
211      Bool_t YGood(int ip){ return GetClusterY_ID(ip)!=-1; };      Bool_t YGood(int ip){ return GetClusterY_ID(ip)!=-1; };
212      void ResetXGoo(int ip){ xgood[ip]=0; };      void ResetXGood(int ip){ xgood[ip]=0; };
213      void ResetYGood(int ip){ ygood[ip]=0; };      void ResetYGood(int ip){ ygood[ip]=0; };
214  /*     void SetXGood(int ip, int clid, int is); */  /*     void SetXGood(int ip, int clid, int is); */
215  /*     void SetYGood(int ip, int clid, int is); */  /*     void SetYGood(int ip, int clid, int is); */
# Line 243  public: Line 250  public:
250      Float_t GetResidual_max(int ip, int iv);      Float_t GetResidual_max(int ip, int iv);
251      Float_t GetResidual_max(int iv){ return GetResidual_max(-1,iv); };      Float_t GetResidual_max(int iv){ return GetResidual_max(-1,iv); };
252      Float_t GetResidual_max(){ return GetResidual_max(-1,-1); };      Float_t GetResidual_max(){ return GetResidual_max(-1,-1); };
253        Float_t GetResidual_av(int ip, int iv);
254        Float_t GetResidual_av(int iv){ return GetResidual_av(-1,iv); };
255        Float_t GetResidual_av(){ return GetResidual_av(-1,-1); };
256    
257      Int_t GetClusterX_Multiplicity_max();      Int_t GetClusterX_Multiplicity_max();
258      Int_t GetClusterX_Multiplicity_min();      Int_t GetClusterX_Multiplicity_min();
# Line 376  class TrkLevel2 : public TObject { Line 386  class TrkLevel2 : public TObject {
386      void Clear(Option_t *option){Clear();};      void Clear(Option_t *option){Clear();};
387      void Delete();      void Delete();
388      void Set();      void Set();
389        int UnpackError(){ for(int i=0; i<12; i++)if(!StatusCheck(i,0x12))return 1; return 0;};
390            
391      int ntrk() {return Track->GetEntries();}    ///< number of stored track      int ntrk() {return Track->GetEntries();}    ///< number of stored track
392      int nclsx(){return SingletX->GetEntries();} ///< number of x singlets      int nclsx(){return SingletX->GetEntries();} ///< number of x singlets

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.41

  ViewVC Help
Powered by ViewVC 1.1.23