/[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.33 by pam-fi, Tue Nov 27 11:43:49 2007 UTC revision 1.42 by pam-fi, Wed Mar 11 14:19:09 2009 UTC
# Line 30  Line 30 
30  #define XMAGNLOW -8.07  #define XMAGNLOW -8.07
31  #define YMAGNHIGH 6.57  #define YMAGNHIGH 6.57
32  #define YMAGNLOW -6.57  #define YMAGNLOW -6.57
33    // tof planes
34    #define ZS11  53.74
35    #define ZS12  53.04
36    #define ZS21  23.94
37    #define ZS22  23.44
38    #define ZS31 -23.49
39    #define ZS32 -24.34
40    
41  // (mechanical) x/y-coordinates of magnet cavity  // (mechanical) x/y-coordinates of magnet cavity
42  #define XTRKL -8.1  /* #define XTRKL -8.1 */
43  #define XTRKR  8.1  /* #define XTRKR  8.1 */
44  #define YTRKL -6.6  /* #define YTRKL -6.6 */
45  #define YTRKR  6.6  /* #define YTRKR  6.6 */
46    
47  /**  /**
48   * \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 49  class Trajectory : public TObject{ Line 57  class Trajectory : public TObject{
57   public:   public:
58    
59      int npoint; ///< number of evaluated points along the trajectory      int npoint; ///< number of evaluated points along the trajectory
60      float* x;   ///< x coordinates      float* x;   //[npoint]
61      float* y;   ///< y coordinates      float* y;   //[npoint]
62      float* z;   ///< z coordinates      float* z;   //[npoint]
63      float* thx; ///< x projected angle      float* thx; //[npoint]
64      float* thy; ///< y projected angle      float* thy; //[npoint]
65      float* tl;  ///< track length      float* tl;  //[npoint]
66    
67      Trajectory();      Trajectory();
68      Trajectory(int n);      Trajectory(int n);
# Line 63  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    
83      ClassDef(Trajectory,2);      ClassDef(Trajectory,3);
84    
85  };  };
86  /**  /**
# Line 80  class Trajectory : public TObject{ Line 93  class Trajectory : public TObject{
93   * Cluster flags: xgood[6], ygood[6]   * Cluster flags: xgood[6], ygood[6]
94   *   *
95   * xgood/ygood = +/- 0lsccccccc   * xgood/ygood = +/- 0lsccccccc
96   *                |   |||------- ID (1-7483647) of the included cluster     * ccccccc ID (1-7483647) of the included cluster  
97   *                |   ||-------- sensor number (1,2   - increasing y)   * s       sensor number (1,2   - increasing y)
98   *                |   |--------- ladder number (1,2,3 - increasing x)   * l       ladder number (1,2,3 - increasing x)
99   *                |------------- does-not/does include bad strips   * +/-     does-not/does include bad strips
100     *
101   */   */
102  // ==================================================================  // ==================================================================
103  class TrkTrack : public TObject {  class TrkTrack : public TObject {
# Line 122  public: Line 136  public:
136      float xpu[6];          ///< x coordinate in pitch units      float xpu[6];          ///< x coordinate in pitch units
137      float ypu[6];          ///< y coordinate in pitch units      float ypu[6];          ///< y coordinate in pitch units
138    
139        float xGF[14];         ///<calculated x coordinates on GF reference planes
140        float yGF[14];         ///<calculated y coordinates on GF reference planes
141    
142      TrkTrack();      TrkTrack();
143      TrkTrack(const TrkTrack&);      TrkTrack(const TrkTrack&);
144    
# Line 137  public: Line 154  public:
154      Int_t  GetSeqNo(){return seqno;}        ///< Returns the track sequential number      Int_t  GetSeqNo(){return seqno;}        ///< Returns the track sequential number
155      Int_t  GetImageSeqNo(){return image;}   ///< Returns the track image sequential number      Int_t  GetImageSeqNo(){return image;}   ///< Returns the track image sequential number
156      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
157      int DoTrack(Trajectory* t);                         ///< Evaluates the trajectory in the apparatus.      int DoTrack(Trajectory* t);             ///< Evaluates the trajectory in the apparatus.
158      int DoTrack2(Trajectory* t);                        ///< Evaluates the trajectory in the apparatus.      int DoTrack2(Trajectory* t);            ///< Evaluates the trajectory in the apparatus.
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 152  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 175  public: Line 194  public:
194      void SetStepMin(int istepmin);      void SetStepMin(int istepmin);
195      void SetDeltaB(int id, double db);      void SetDeltaB(int id, double db);
196    
197      Bool_t IsInsideCavity();      Bool_t IsInsideCavity(float);
198        Bool_t IsInsideCavity(){ return IsInsideCavity(0.); };
199        Bool_t IsInsideAcceptance(float);
200        Bool_t IsInsideAcceptance(){ return IsInsideAcceptance(0.); };
201        Bool_t IsInsideGFSurface(const char*,float);
202        Bool_t IsInsideGFSurface(const char* surf){ return IsInsideGFSurface(surf,0.); };
203    
204      Bool_t EvaluateClusterPositions();      Bool_t EvaluateClusterPositions();
205    
# Line 190  public: Line 214  public:
214      Bool_t YGood(int ip){ return GetClusterY_ID(ip)!=-1; };      Bool_t YGood(int ip){ return GetClusterY_ID(ip)!=-1; };
215      void ResetXGood(int ip){ xgood[ip]=0; };      void ResetXGood(int ip){ xgood[ip]=0; };
216      void ResetYGood(int ip){ ygood[ip]=0; };      void ResetYGood(int ip){ ygood[ip]=0; };
217      void SetXGood(int ip, int clid, int is);  /*     void SetXGood(int ip, int clid, int is); */
218      void SetYGood(int ip, int clid, int is);  /*     void SetYGood(int ip, int clid, int is); */
219        void SetXGood(int ip, int clid, int il, int is, bool bad);
220        void SetYGood(int ip, int clid, int il, int is, bool bad);
221        void SetXGood(int ip, int clid, int il, int is){ SetXGood(ip,clid,il,is,false); };
222        void SetYGood(int ip, int clid, int il, int is){ SetYGood(ip,clid,il,is,false); };
223    
224    
225      Bool_t BadClusterX(int ip){ return IsBad(ip,0); };      Bool_t BadClusterX(int ip){ return IsBad(ip,0); };
226      Bool_t BadClusterY(int ip){ return IsBad(ip,1); };      Bool_t BadClusterY(int ip){ return IsBad(ip,1); };
# Line 205  public: Line 234  public:
234      Int_t GetClusterY_MaxStrip(int ip){ return (Int_t)(multmaxy[ip]%10000); };      Int_t GetClusterY_MaxStrip(int ip){ return (Int_t)(multmaxy[ip]%10000); };
235      Float_t GetClusterX_Seed(int ip){ return seedx[ip]; };      Float_t GetClusterX_Seed(int ip){ return seedx[ip]; };
236      Float_t GetClusterY_Seed(int ip){ return seedy[ip]; };      Float_t GetClusterY_Seed(int ip){ return seedy[ip]; };
237  /*     Float_t GetClusterX_CoordinatePU(int ip); */  /*     Float_t GetClusterX_oordinatePU(int ip); */
238  /*     Float_t GetClusterY_CoordinatePU(int ip); */  /*     Float_t GetClusterY_CoordinatePU(int ip); */
239            
240        Float_t GetYav();
241        Float_t GetXav();
242        Float_t GetZav();
243    
244        Int_t GetNColumns();
245    
246        Float_t GetDEDX_max(int ip, int iv);
247        Float_t GetDEDX_max(int iv){ return GetDEDX_max(-1,iv); };
248        Float_t GetDEDX_max(){ return GetDEDX_max(-1,-1); };
249        Float_t GetDEDX_min(int ip, int iv);
250        Float_t GetDEDX_min(int iv){ return GetDEDX_min(-1,iv); };
251        Float_t GetDEDX_min(){ return GetDEDX_min(-1,-1); };
252    
253        Float_t GetResidual_max(int ip, int iv);
254        Float_t GetResidual_max(int iv){ return GetResidual_max(-1,iv); };
255        Float_t GetResidual_max(){ return GetResidual_max(-1,-1); };
256        Float_t GetResidual_av(int ip, int iv);
257        Float_t GetResidual_av(int iv){ return GetResidual_av(-1,iv); };
258        Float_t GetResidual_av(){ return GetResidual_av(-1,-1); };
259    
260        Int_t GetClusterX_Multiplicity_max();
261        Int_t GetClusterX_Multiplicity_min();
262        Int_t GetClusterY_Multiplicity_max();
263        Int_t GetClusterY_Multiplicity_min();
264    
265        Float_t GetClusterX_Seed_min();
266        Float_t GetClusterY_Seed_min();
267    
268      TrkTrack* GetTrkTrack(){return this;};      TrkTrack* GetTrkTrack(){return this;};
269    
270      friend class TrkLevel2;      friend class TrkLevel2;
271    
272      ClassDef(TrkTrack,4);      ClassDef(TrkTrack,5);
273    
274  };  };
275  /**  /**
# Line 231  public: Line 287  public:
287      int plane;       ///<plane      int plane;       ///<plane
288      float coord[2];  ///<coordinate (on sensor 1 and 2)      float coord[2];  ///<coordinate (on sensor 1 and 2)
289      float sgnl;      ///<cluster signal in MIP (<0 if saturated)      float sgnl;      ///<cluster signal in MIP (<0 if saturated)
290        int multmax;     ///<cluster multiplicity and strip of maximum
291    
292      TrkSinglet();      TrkSinglet();
293      TrkSinglet(const TrkSinglet&);      TrkSinglet(const TrkSinglet&);
# Line 242  public: Line 299  public:
299      void Delete(){Clear();};      void Delete(){Clear();};
300      Float_t GetSignal(){return fabs(sgnl);}      Float_t GetSignal(){return fabs(sgnl);}
301      Bool_t IsSaturated(){return (sgnl<0); };      Bool_t IsSaturated(){return (sgnl<0); };
302            
303        Bool_t IsBad()                 { return multmax<=0; };
304        Int_t GetCluster_Multiplicity(){ return (Int_t)(abs(multmax)/10000); };
305        Int_t GetCluster_MaxStrip()    { return (Int_t)(abs(multmax)%10000); };
306    
307    
308      friend class TrkLevel2;      friend class TrkLevel2;
309    
310      ClassDef(TrkSinglet,3);      ClassDef(TrkSinglet,4);
311    
312  };  };
313    
# Line 263  public: Line 325  public:
325   * The event status indicates the processing status of data from each DSP, according to the following   * The event status indicates the processing status of data from each DSP, according to the following
326   * notation:   * notation:
327   *   *
328   *     xxxx xxxx xxxx xxxx xxxx xxxx   * LSB --> 0 missing packet
329   *     |||| |||| |||| |||| |||| ||||_ 0 missing packet   *         1 CRC error
330   *     |||| |||| |||| |||| |||| |||__ 1 CRC error   *         2 on-line software alarm (latch-up, timeout ecc...)
331   *     |||| |||| |||| |||| |||| ||___ 2 on-line software alarm (latch-up, timeout ecc...)   *         3 jump in the trigger counter
332   *     |||| |||| |||| |||| |||| |____ 3 jump in the trigger counter   *         4 decode error
333   *     |||| |||| |||| |||| ||||______ 4 decode error   *         5 n.clusters > maximum number (level1 processing)
334   *     |||| |||| |||| |||| |||_______ 5 n.clusters > maximum number (level1 processing)   *         6
335   *     |||| |||| |||| |||| ||________ 6   *         7
336   *     |||| |||| |||| |||| |_________ 7   *         8 n.clusters > maximum value (level2 processing)
337   *     |||| |||| |||| ||||___________ 8 n.clusters > maximum value (level2 processing)   *         9 n.couples per plane > maximum values (vector dimention)
338   *     |||| |||| |||| |||____________ 9 n.couples per plane > maximum values (vector dimention)   *         10 n.doublets > maximum values
339   *     |||| |||| |||| ||_____________ 10 n.doublets > maximum values   *         11 n.triplets > maximum values
340   *     |||| |||| |||| |______________ 11 n.triplets > maximum values   *         12 n.yz-clouds > maximum values
341   *     |||| |||| ||||________________ 12 n.yz-clouds > maximum values   *         13 n.xz-clouds > maximum values
342   *     |||| |||| |||_________________ 13 n.xz-clouds > maximum values   *         14 n.candidate-tracks > maximum values
343   *     |||| |||| ||__________________ 14 n.candidate-tracks > maximum values   *         15 n.couples per plane > maximum values (for Hough transform)
344   *     |||| |||| |___________________ 15 n.couples per plane > maximum values (for Hough transform)   * MSB --> 16
  *     |||| ||||_____________________ 16  
345   *           *        
346   *   *
347   * For all data processed before June 2007 the event status was coded according to   * For all data processed before June 2007 the event status was coded according to
# Line 328  class TrkLevel2 : public TObject { Line 389  class TrkLevel2 : public TObject {
389      void Clear(Option_t *option){Clear();};      void Clear(Option_t *option){Clear();};
390      void Delete();      void Delete();
391      void Set();      void Set();
392        int UnpackError(){ for(int i=0; i<12; i++)if(!StatusCheck(i,0x12))return 1; return 0;};
393            
394      int ntrk() {return Track->GetEntries();}    ///< number of stored track      int ntrk() {return Track->GetEntries();}    ///< number of stored track
395      int nclsx(){return SingletX->GetEntries();} ///< number of x singlets      int nclsx(){return SingletX->GetEntries();} ///< number of x singlets
# Line 344  class TrkLevel2 : public TObject { Line 406  class TrkLevel2 : public TObject {
406      float GetBY(float* v){return TrkParams::GetBY(v);};///< By (kGauss)      float GetBY(float* v){return TrkParams::GetBY(v);};///< By (kGauss)
407      float GetBZ(float* v){return TrkParams::GetBZ(v);};///< Bz (kGauss)      float GetBZ(float* v){return TrkParams::GetBZ(v);};///< Bz (kGauss)
408      Float_t GetZTrk(Int_t);      Float_t GetZTrk(Int_t);
409      Float_t GetXTrkLeft(){return XTRKL;};      Float_t GetXTrkLeft(){return XMAGNLOW;};
410      Float_t GetXTrkRight(){return XTRKR;};      Float_t GetXTrkRight(){return XMAGNHIGH;};
411      Float_t GetYTrkLeft(){return YTRKL;};      Float_t GetYTrkLeft(){return YMAGNLOW;};
412      Float_t GetYTrkRight(){return YTRKR;};      Float_t GetYTrkRight(){return YMAGNHIGH;};
413            
414      Bool_t IsMaskedVK(int,int);      Bool_t IsMaskedVK(int,int);
415      Bool_t GetVKMask(int,int);      Bool_t GetVKMask(int,int);

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.42

  ViewVC Help
Powered by ViewVC 1.1.23