/[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.35 by pam-fi, Wed Mar 5 17:00:18 2008 UTC revision 1.43 by pam-fi, Thu Sep 1 16:01:32 2011 UTC
# Line 15  Line 15 
15  #include <TrkLevel1.h>  #include <TrkLevel1.h>
16    
17  // z-coordinate of track state-vector reference-plane  // z-coordinate of track state-vector reference-plane
18  #define ZINI 23.5    #define ZINI 23.5 ///< z-coordinate of track state-vector reference-plane.
19  // (mechanical) z-coordinate of the tracker planes  // (mechanical) z-coordinate of the tracker planes
20  #define ZTRK6 -22.22  #define ZTRK6 -22.22
21  #define ZTRK5 -13.31  #define ZTRK5 -13.31
# 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 104  public: Line 109  public:
109      int   seqno;           ///<stored track sequential number      int   seqno;           ///<stored track sequential number
110      int   image;           ///<sequential number of track-image      int   image;           ///<sequential number of track-image
111                    
112      float al[5];           ///<TRACK STATE VECTOR      /*! @brief Track state vector.
113         *
114         *  This is the track state vector on reference plane defined by #ZINI.
115         *
116         *  al[0]: X coordinate [cm]
117         *  al[1]: Y coordinate [cm]
118         *  al[2]: sin theta (altitude; theta = 0 is normal incidence)
119         *  al[3]: phi (azimuth; phi = 0 is negative X axis)
120         *  al[4]: deflection (with sign) [1/GV]
121         *
122         */
123        float al[5];
124      float coval[5][5];     ///<covariance matrix      float coval[5][5];     ///<covariance matrix
125      int   xgood[6];        ///<cluster id for x-view (0 = view not included in the fit)      int   xgood[6];        ///<cluster id for x-view (0 = view not included in the fit)
126      int   ygood[6];        ///<cluster id for y-view (0 = view not included in the fit)      int   ygood[6];        ///<cluster id for y-view (0 = view not included in the fit)
# Line 151  public: Line 167  public:
167      Bool_t HasImage(){return !(image==-1);} ///< Returns true if the track has an image      Bool_t HasImage(){return !(image==-1);} ///< Returns true if the track has an image
168      int DoTrack(Trajectory* t);             ///< Evaluates the trajectory in the apparatus.      int DoTrack(Trajectory* t);             ///< Evaluates the trajectory in the apparatus.
169      int DoTrack2(Trajectory* t);            ///< Evaluates the trajectory in the apparatus.      int DoTrack2(Trajectory* t);            ///< Evaluates the trajectory in the apparatus.
170      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.
171      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;};
172      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;};
173        Int_t GetNXY(){Int_t n=0; for(Int_t i=0; i<6; i++)n+=(Int_t)YGood(i)*XGood(i); return n;};
174      Int_t GetNtot(){return GetNX()+GetNY();};      Int_t GetNtot(){return GetNX()+GetNY();};
175      Float_t GetRigidity();      Float_t GetRigidity();
176      Float_t GetDeflection();      Float_t GetDeflection();
# Line 164  public: Line 181  public:
181      Float_t GetDEDX();      Float_t GetDEDX();
182      Float_t GetDEDX(int ip);      Float_t GetDEDX(int ip);
183      Float_t GetDEDX(int ip,int iv);      Float_t GetDEDX(int ip,int iv);
184        Int_t GetLeverArmXY();
185      Int_t GetLeverArmX();      Int_t GetLeverArmX();
186      Int_t GetLeverArmY();      Int_t GetLeverArmY();
187      Float_t GetChi2X();      Float_t GetChi2X();
# Line 189  public: Line 207  public:
207    
208      Bool_t IsInsideCavity(float);      Bool_t IsInsideCavity(float);
209      Bool_t IsInsideCavity(){ return IsInsideCavity(0.); };      Bool_t IsInsideCavity(){ return IsInsideCavity(0.); };
210      Bool_t IsInsideAcceptance();      Bool_t IsInsideAcceptance(float);
211        Bool_t IsInsideAcceptance(){ return IsInsideAcceptance(0.); };
212        Bool_t IsInsideGFSurface(const char*,float);
213        Bool_t IsInsideGFSurface(const char* surf){ return IsInsideGFSurface(surf,0.); };
214    
215      Bool_t EvaluateClusterPositions();      Bool_t EvaluateClusterPositions();
216    
# Line 204  public: Line 225  public:
225      Bool_t YGood(int ip){ return GetClusterY_ID(ip)!=-1; };      Bool_t YGood(int ip){ return GetClusterY_ID(ip)!=-1; };
226      void ResetXGood(int ip){ xgood[ip]=0; };      void ResetXGood(int ip){ xgood[ip]=0; };
227      void ResetYGood(int ip){ ygood[ip]=0; };      void ResetYGood(int ip){ ygood[ip]=0; };
228      void SetXGood(int ip, int clid, int is);  /*     void SetXGood(int ip, int clid, int is); */
229      void SetYGood(int ip, int clid, int is);  /*     void SetYGood(int ip, int clid, int is); */
230        void SetXGood(int ip, int clid, int il, int is, bool bad);
231        void SetYGood(int ip, int clid, int il, int is, bool bad);
232        void SetXGood(int ip, int clid, int il, int is){ SetXGood(ip,clid,il,is,false); };
233        void SetYGood(int ip, int clid, int il, int is){ SetYGood(ip,clid,il,is,false); };
234    
235    
236      Bool_t BadClusterX(int ip){ return IsBad(ip,0); };      Bool_t BadClusterX(int ip){ return IsBad(ip,0); };
237      Bool_t BadClusterY(int ip){ return IsBad(ip,1); };      Bool_t BadClusterY(int ip){ return IsBad(ip,1); };
# Line 219  public: Line 245  public:
245      Int_t GetClusterY_MaxStrip(int ip){ return (Int_t)(multmaxy[ip]%10000); };      Int_t GetClusterY_MaxStrip(int ip){ return (Int_t)(multmaxy[ip]%10000); };
246      Float_t GetClusterX_Seed(int ip){ return seedx[ip]; };      Float_t GetClusterX_Seed(int ip){ return seedx[ip]; };
247      Float_t GetClusterY_Seed(int ip){ return seedy[ip]; };      Float_t GetClusterY_Seed(int ip){ return seedy[ip]; };
248  /*     Float_t GetClusterX_CoordinatePU(int ip); */  /*     Float_t GetClusterX_oordinatePU(int ip); */
249  /*     Float_t GetClusterY_CoordinatePU(int ip); */  /*     Float_t GetClusterY_CoordinatePU(int ip); */
250            
251      Float_t GetYav();      Float_t GetYav();
# Line 238  public: Line 264  public:
264      Float_t GetResidual_max(int ip, int iv);      Float_t GetResidual_max(int ip, int iv);
265      Float_t GetResidual_max(int iv){ return GetResidual_max(-1,iv); };      Float_t GetResidual_max(int iv){ return GetResidual_max(-1,iv); };
266      Float_t GetResidual_max(){ return GetResidual_max(-1,-1); };      Float_t GetResidual_max(){ return GetResidual_max(-1,-1); };
267        Float_t GetResidual_av(int ip, int iv);
268        Float_t GetResidual_av(int iv){ return GetResidual_av(-1,iv); };
269        Float_t GetResidual_av(){ return GetResidual_av(-1,-1); };
270    
271      Int_t GetClusterX_Multiplicity_max();      Int_t GetClusterX_Multiplicity_max();
272      Int_t GetClusterX_Multiplicity_min();      Int_t GetClusterX_Multiplicity_min();
# Line 371  class TrkLevel2 : public TObject { Line 400  class TrkLevel2 : public TObject {
400      void Clear(Option_t *option){Clear();};      void Clear(Option_t *option){Clear();};
401      void Delete();      void Delete();
402      void Set();      void Set();
403        int UnpackError(){ for(int i=0; i<12; i++)if(!StatusCheck(i,0x12))return 1; return 0;};
404            
405      int ntrk() {return Track->GetEntries();}    ///< number of stored track      int ntrk() {return Track->GetEntries();}    ///< number of stored track
406      int nclsx(){return SingletX->GetEntries();} ///< number of x singlets      int nclsx(){return SingletX->GetEntries();} ///< number of x singlets

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

  ViewVC Help
Powered by ViewVC 1.1.23