| 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 |
/** |
/** |
| 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 |
float xv[6]; ///<calculated x coordinates |
int nstep; ///<n. step |
| 100 |
|
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 |
| 103 |
float axv[6]; ///<calculated angles (deg) on x view |
float axv[6]; ///<calculated angles (deg) on x view |
| 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 |
| 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 |
TrkCluster *GetClusterX(int ip){TrkCluster *pt = (TrkCluster*)(clx->At(ip)); return pt;}; |
TrkCluster *GetClusterX(int ip){TrkCluster *pt = (TrkCluster*)(clx->At(ip)); return pt;}; |
| 139 |
TrkCluster *GetClusterY(int ip){TrkCluster *pt = (TrkCluster*)(cly->At(ip)); return pt;}; |
TrkCluster *GetClusterY(int ip){TrkCluster *pt = (TrkCluster*)(cly->At(ip)); return pt;}; |
| 140 |
|
|
| 142 |
|
|
| 143 |
friend class TrkLevel2; |
friend class TrkLevel2; |
| 144 |
|
|
| 145 |
ClassDef(TrkTrack,1); |
ClassDef(TrkTrack,2); |
| 146 |
|
|
| 147 |
}; |
}; |
| 148 |
/** |
/** |
| 172 |
|
|
| 173 |
friend class TrkLevel2; |
friend class TrkLevel2; |
| 174 |
|
|
| 175 |
ClassDef(TrkSinglet,1); |
ClassDef(TrkSinglet,2); |
| 176 |
|
|
| 177 |
}; |
}; |
| 178 |
|
|
| 195 |
|
|
| 196 |
public: |
public: |
| 197 |
|
|
| 198 |
Int_t good2; |
Int_t good[12]; ///< event status |
| 199 |
Int_t crc[12]; |
// Int_t good2; |
| 200 |
|
// Int_t crc[12]; |
| 201 |
|
|
| 202 |
TClonesArray *Track; ///< fitted tracks |
TClonesArray *Track; ///< fitted tracks |
| 203 |
TClonesArray *SingletX; ///< x singlets |
TClonesArray *SingletX; ///< x singlets |
| 205 |
|
|
| 206 |
TrkLevel2(); |
TrkLevel2(); |
| 207 |
// TrkLevel2(cTrkLevel2 *); |
// TrkLevel2(cTrkLevel2 *); |
| 208 |
|
~TrkLevel2(){Delete();}; |
| 209 |
int ntrk() {return Track->GetEntries();} ///< number of stored track |
|
| 210 |
|
void Clear(); |
| 211 |
|
void Delete(); |
| 212 |
|
|
| 213 |
|
int ntrk() {return Track->GetEntries();} ///< number of stored track |
| 214 |
int nclsx(){return SingletX->GetEntries();} ///< number of x singlets |
int nclsx(){return SingletX->GetEntries();} ///< number of x singlets |
| 215 |
int nclsy(){return SingletY->GetEntries();} ///< number of y singlets |
int nclsy(){return SingletY->GetEntries();} ///< number of y singlets |
| 216 |
|
|
| 218 |
void SetFromLevel2Struct(cTrkLevel2 *); |
void SetFromLevel2Struct(cTrkLevel2 *); |
| 219 |
void SetFromLevel2Struct(cTrkLevel2 *, TrkLevel1 *); |
void SetFromLevel2Struct(cTrkLevel2 *, TrkLevel1 *); |
| 220 |
void GetLevel2Struct(cTrkLevel2 *) const; |
void GetLevel2Struct(cTrkLevel2 *) const; |
|
void Clear(); |
|
| 221 |
void LoadField(TString); |
void LoadField(TString); |
| 222 |
Float_t GetZTrk(Int_t); |
Float_t GetZTrk(Int_t); |
| 223 |
Float_t GetXTrkLeft(){return XTRKL;}; |
Float_t GetXTrkLeft(){return XTRKL;}; |
| 244 |
TrkLevel2* GetTrkLevel2(){return this;} |
TrkLevel2* GetTrkLevel2(){return this;} |
| 245 |
TClonesArray* GetTrackArray(){return Track;};///< returns pointer to the track array |
TClonesArray* GetTrackArray(){return Track;};///< returns pointer to the track array |
| 246 |
|
|
| 247 |
ClassDef(TrkLevel2,1); |
ClassDef(TrkLevel2,2); |
| 248 |
|
|
| 249 |
}; |
}; |
| 250 |
|
|