/[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.4 by pam-fi, Fri Jun 30 09:48:15 2006 UTC revision 1.12 by pam-fi, Thu Oct 26 16:22:36 2006 UTC
# Line 8  Line 8 
8  #include <TObject.h>  #include <TObject.h>
9  #include <TObjArray.h>  #include <TObjArray.h>
10  #include <TClonesArray.h>  #include <TClonesArray.h>
11    #include <TRefArray.h>
12    #include <TRef.h>
13    
14  #include <TrkStruct.h>  #include <TrkStruct.h>
15    #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  
19  // upper and lower (mechanical) z-coordinate of the tracker  // upper and lower (mechanical) z-coordinate of the tracker
20  #define ZTRKUP 22.29  //#define ZTRKUP 22.29
21  #define ZTRKDW -22.22  //#define ZTRKDW -22.22
22    // (mechanical) z-coordinate of the tracker planes
23    #define ZTRK6 -22.23
24    #define ZTRK5 -13.32
25    #define ZTRK4 -4.42
26    #define ZTRK3 4.48
27    #define ZTRK2 13.38
28    #define ZTRK1 22.28
29    // (mechanical) x/y-coordinates of magnet cavity
30    #define XTRKL -8.1
31    #define XTRKR  8.1
32    #define YTRKL -6.6
33    #define YTRKR  6.6
34    
35  /**  /**
36   * \brief Class to describe, by points, a particle trajectory in the apparatus.   * \brief Class to describe, by points, a particle trajectory in the apparatus.
# Line 46  class Trajectory : public TObject{ Line 60  class Trajectory : public TObject{
60      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;};
61      float GetLength(int,int);      float GetLength(int,int);
62    
63      ClassDef(Trajectory,1);      ClassDef(Trajectory,2);
64    
65  };  };
66  /**  /**
# Line 64  private: Line 78  private:
78      int   seqno;           ///<stored track sequential number      int   seqno;           ///<stored track sequential number
79      int   image;           ///<sequential number of track-image      int   image;           ///<sequential number of track-image
80    
81            
82  public:  public:
83    
84    //      TRef clx[6];
85    //      TRef cly[6];
86        TRefArray *clx;
87        TRefArray *cly;
88    
89      float al[5];           ///<TRACK STATE VECTOR      float al[5];           ///<TRACK STATE VECTOR
90      float coval[5][5];     ///<covariance matrix      float coval[5][5];     ///<covariance matrix
# Line 77  public: Line 96  public:
96      float resx[6];         ///<spatial resolution on X view      float resx[6];         ///<spatial resolution on X view
97      float resy[6];         ///<spatial resolution on y view      float resy[6];         ///<spatial resolution on y view
98      float chi2;            ///<chi2      float chi2;            ///<chi2
99        int   nstep;           ///<n. step
100      float xv[6];           ///<calculated x coordinates      float xv[6];           ///<calculated x coordinates
101      float yv[6];           ///<calculated y coordinates      float yv[6];           ///<calculated y coordinates
102      float zv[6];           ///<calculated z coordinates      float zv[6];           ///<calculated z coordinates
# Line 89  public: Line 109  public:
109      TrkTrack();      TrkTrack();
110      TrkTrack(const TrkTrack&);      TrkTrack(const TrkTrack&);
111    
112        ~TrkTrack(){Delete();};
113            
114      void Dump();      void Dump();
115        void Clear();
116        void Delete();
117            
118      Int_t  GetSeqNo(){return seqno;}        ///< Returns the track sequential number      Int_t  GetSeqNo(){return seqno;}        ///< Returns the track sequential number
119      Int_t  GetImageSeqNo(){return image;}   ///< Returns the track image sequential number      Int_t  GetImageSeqNo(){return image;}   ///< Returns the track image sequential number
120      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
# Line 103  public: Line 127  public:
127      Float_t GetRigidity();      Float_t GetRigidity();
128      Float_t GetDeflection();      Float_t GetDeflection();
129      Float_t GetDEDX();      Float_t GetDEDX();
130        Float_t GetDEDX(Int_t ip){if( !(xgood[ip]+ygood[ip]) ) return 0; return (dedx_x[ip]+dedx_y[ip])/(xgood[ip]+ygood[ip]);};
131        // sono un'imbecille... assegno xm e ym anche quando si tratta di un singolo
132        // non posso quindi usare xm e ym per dire se una vista e` inclusa nel fit o no
133    /*      Bool_t XGood(int ip){ return xm[ip] != -100.;};
134            Bool_t YGood(int ip){ return ym[ip] != -100.;};*/
135        Bool_t XGood(int ip){ return xgood[ip]==1;};
136        Bool_t YGood(int ip){ return ygood[ip]==1;};
137    
138        void SetMeasure(double *xmeas, double *ymeas, double *zmeas);
139        void SetResolution(double *rx, double *ry);
140        void SetGood(int *xg, int *yg);
141        void LoadField(TString s);
142        void Fit(double pfixed, int& fail, int iprint);
143        void FitReset();
144        
145        TrkCluster *GetClusterX(int ip){TrkCluster *pt = (TrkCluster*)(clx->At(ip)); return pt;};
146        TrkCluster *GetClusterY(int ip){TrkCluster *pt = (TrkCluster*)(cly->At(ip)); return pt;};
147        
148      TrkTrack* GetTrkTrack(){return this;};      TrkTrack* GetTrkTrack(){return this;};
149    
150      friend class TrkLevel2;      friend class TrkLevel2;
151    
152      ClassDef(TrkTrack,1);      ClassDef(TrkTrack,2);
153    
154  };  };
155  /**  /**
# Line 119  public: Line 160  public:
160  class TrkSinglet : public TObject {  class TrkSinglet : public TObject {
161    
162  private:  private:
163            
164    
165  public:  public:
166            
167            TRef cls;
168    
169      int plane;       ///<plane      int plane;       ///<plane
170      float coord[2];  ///<coordinate (on sensor 1 and 2)      float coord[2];  ///<coordinate (on sensor 1 and 2)
# Line 130  public: Line 174  public:
174      TrkSinglet(const TrkSinglet&);      TrkSinglet(const TrkSinglet&);
175    
176      void Dump();      void Dump();
177            
178        TrkCluster *GetCluster(){TrkCluster *pt = (TrkCluster*)cls.GetObject(); return pt;};
179    
180      friend class TrkLevel2;      friend class TrkLevel2;
181    
182      ClassDef(TrkSinglet,1);      ClassDef(TrkSinglet,2);
183    
184  };  };
185    
# Line 151  public: Line 197  public:
197  class TrkLevel2 : public TObject {  class TrkLevel2 : public TObject {
198    
199   private:   private:
200            
201    //      TRefArray    *PhysicalTrack;  ///< physical tracks (no image) -
202            
203   public:   public:
204    
205            Int_t         good[12];       ///< event status
206    //      Int_t good2;
207      Int_t good2;  //    Int_t crc[12];
     Int_t crc[12];  
208    
209      TClonesArray *Track;        ///< fitted tracks      TClonesArray *Track;        ///< fitted tracks
210      TClonesArray *SingletX;     ///< x singlets      TClonesArray *SingletX;     ///< x singlets
# Line 165  class TrkLevel2 : public TObject { Line 212  class TrkLevel2 : public TObject {
212    
213      TrkLevel2();      TrkLevel2();
214  //    TrkLevel2(cTrkLevel2 *);  //    TrkLevel2(cTrkLevel2 *);
215        ~TrkLevel2(){Delete();};
216      int ntrk() {return Track->GetEntries();}     ///< number of stored track          
217        void Clear();
218        void Delete();
219        
220        int ntrk() {return Track->GetEntries();}    ///< number of stored track
221      int nclsx(){return SingletX->GetEntries();} ///< number of x singlets      int nclsx(){return SingletX->GetEntries();} ///< number of x singlets
222      int nclsy(){return SingletY->GetEntries();} ///< number of y singlets      int nclsy(){return SingletY->GetEntries();} ///< number of y singlets
223    
224      void Dump();      void Dump();
225      void FillCommonVar(cTrkLevel2 *);      void SetFromLevel2Struct(cTrkLevel2 *);
226      void Clear();      void SetFromLevel2Struct(cTrkLevel2 *, TrkLevel1 *);
227        void GetLevel2Struct(cTrkLevel2 *) const;
228      void LoadField(TString);      void LoadField(TString);
229        Float_t GetZTrk(Int_t);
230        Float_t GetXTrkLeft(){return XTRKL;};
231        Float_t GetXTrkRight(){return XTRKR;};
232        Float_t GetYTrkLeft(){return YTRKL;};
233        Float_t GetYTrkRight(){return YTRKR;};
234        
235        TrkSinglet   *GetSingletX(int);
236        TrkSinglet   *GetSingletY(int);
237        
238      TrkTrack     *GetStoredTrack(int i);      TrkTrack     *GetStoredTrack(int i);
239      Int_t         GetSeqNo(Int_t i)  {return (((TrkTrack *)Track->At(i))->seqno);}; ///< Returns track sequential number      Int_t         GetSeqNo(Int_t i)  {return (((TrkTrack *)Track->At(i))->seqno);}; ///< Returns track sequential number
240      TClonesArray *GetTracks_Chi2Sorted();  //    TClonesArray *GetTracks_Chi2Sorted();
241      TClonesArray *GetTracks_NFitSorted();  //    TClonesArray *GetTracks_NFitSorted();
242      TClonesArray *GetTracks();  //    TClonesArray *GetTracks();
243        TRefArray *GetTracks_NFitSorted();
244        TRefArray *GetTracks(){return this->GetTracks_NFitSorted();};
245        
246  //    int       GetNTracks(){return this->GetTracks()->GetEntries();}  //    int       GetNTracks(){return this->GetTracks()->GetEntries();}
247          Int_t     GetNTracks();      Int_t     GetNTracks();
248          TrkTrack* GetTrack(int i);      TrkTrack* GetTrack(int i);
249      TrkTrack* GetTrackImage(int i);      TrkTrack* GetTrackImage(int i);
250        
251      TrkLevel2*    GetTrkLevel2(){return this;}      TrkLevel2*    GetTrkLevel2(){return this;}
252      TClonesArray* GetTrackArray(){return Track;};///< returns pointer to the track array      TClonesArray* GetTrackArray(){return Track;};///< returns pointer to the track array
253            
254      ClassDef(TrkLevel2,1);      ClassDef(TrkLevel2,2);
255    
256  };  };
257    
   
   
258  #endif  #endif

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.12

  ViewVC Help
Powered by ViewVC 1.1.23