| 9 |
#include <TObjArray.h> |
#include <TObjArray.h> |
| 10 |
#include <TClonesArray.h> |
#include <TClonesArray.h> |
| 11 |
#include <TRefArray.h> |
#include <TRefArray.h> |
| 12 |
|
#include <TRef.h> |
| 13 |
|
|
| 14 |
#include <TrkStruct.h> |
//#include <TrkStruct.h> |
| 15 |
|
#include <TrkParams.h> |
| 16 |
|
#include <TrkLevel1.h> |
| 17 |
|
|
| 18 |
// z-coordinate of track state-vector reference-plane |
// z-coordinate of track state-vector reference-plane |
| 19 |
#define ZINI 23.5 |
#define ZINI 23.5 |
| 56 |
Trajectory(); |
Trajectory(); |
| 57 |
Trajectory(int n); |
Trajectory(int n); |
| 58 |
Trajectory(int n, float* pz); |
Trajectory(int n, float* pz); |
| 59 |
|
~Trajectory(){Delete();}; |
| 60 |
void Dump(); |
void Dump(); |
| 61 |
|
void Delete(); |
| 62 |
|
|
| 63 |
|
int DoTrack2(float* al); |
| 64 |
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;}; |
| 65 |
float GetLength(int,int); |
float GetLength(int,int); |
| 66 |
|
|
| 67 |
ClassDef(Trajectory,1); |
ClassDef(Trajectory,2); |
| 68 |
|
|
| 69 |
}; |
}; |
| 70 |
/** |
/** |
| 82 |
int seqno; ///<stored track sequential number |
int seqno; ///<stored track sequential number |
| 83 |
int image; ///<sequential number of track-image |
int image; ///<sequential number of track-image |
| 84 |
|
|
| 85 |
|
|
| 86 |
public: |
public: |
| 87 |
|
|
| 88 |
|
TRefArray *clx; |
| 89 |
|
TRefArray *cly; |
| 90 |
|
|
| 91 |
|
/* float al[5]; ///<TRACK STATE VECTOR */ |
| 92 |
float al[5]; ///<TRACK STATE VECTOR |
float al[5]; ///<TRACK STATE VECTOR |
| 93 |
float coval[5][5]; ///<covariance matrix |
float coval[5][5]; ///<covariance matrix |
| 94 |
int xgood[6]; ///<mask of included x planes |
int xgood[6]; ///<mask of included x planes |
| 99 |
float resx[6]; ///<spatial resolution on X view |
float resx[6]; ///<spatial resolution on X view |
| 100 |
float resy[6]; ///<spatial resolution on y view |
float resy[6]; ///<spatial resolution on y view |
| 101 |
float chi2; ///<chi2 |
float chi2; ///<chi2 |
| 102 |
|
int nstep; ///<n. step |
| 103 |
float xv[6]; ///<calculated x coordinates |
float xv[6]; ///<calculated x coordinates |
| 104 |
float yv[6]; ///<calculated y coordinates |
float yv[6]; ///<calculated y coordinates |
| 105 |
float zv[6]; ///<calculated z coordinates |
float zv[6]; ///<calculated z coordinates |
| 106 |
float axv[6]; ///<calculated angles (deg) on x view |
float axv[6]; ///<calculated angles (deg) on x view |
| 107 |
float ayv[6]; ///<calculated angles (deg) on y view |
float ayv[6]; ///<calculated angles (deg) on y view |
| 108 |
float dedx_x[6]; ///<signal in MIP (scaled to 300 micrometer) |
float dedx_x[6]; ///<dE/dx in MIP |
| 109 |
float dedx_y[6]; ///<signal in MIP (scaled to 300 micrometer) |
float dedx_y[6]; ///<dE/dx in MIP |
|
|
|
| 110 |
|
|
| 111 |
TrkTrack(); |
TrkTrack(); |
| 112 |
TrkTrack(const TrkTrack&); |
TrkTrack(const TrkTrack&); |
| 113 |
|
|
| 114 |
|
~TrkTrack(){ Delete(); }; |
| 115 |
|
|
| 116 |
void Dump(); |
void Dump(); |
| 117 |
|
void Clear(); |
| 118 |
|
void Clear(Option_t *option){Clear();}; |
| 119 |
|
void Delete(); |
| 120 |
|
void Copy(TrkTrack&); |
| 121 |
|
// void Set(); |
| 122 |
|
|
| 123 |
Int_t GetSeqNo(){return seqno;} ///< Returns the track sequential number |
Int_t GetSeqNo(){return seqno;} ///< Returns the track sequential number |
| 124 |
Int_t GetImageSeqNo(){return image;} ///< Returns the track image sequential number |
Int_t GetImageSeqNo(){return image;} ///< Returns the track image sequential number |
| 126 |
int DoTrack(Trajectory* t); ///< Evaluates the trajectory in the apparatus. |
int DoTrack(Trajectory* t); ///< Evaluates the trajectory in the apparatus. |
| 127 |
int DoTrack2(Trajectory* t); ///< Evaluates the trajectory in the apparatus. |
int DoTrack2(Trajectory* t); ///< Evaluates the trajectory in the apparatus. |
| 128 |
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. |
| 129 |
Int_t GetNX(){Int_t n=0; for(Int_t i=0; i<6; i++)n+=xgood[i]; return n;}; |
Int_t GetNX(){Int_t n=0; for(Int_t i=0; i<6; i++)n+=XGood(i); return n;}; |
| 130 |
Int_t GetNY(){Int_t n=0; for(Int_t i=0; i<6; i++)n+=ygood[i]; return n;}; |
Int_t GetNY(){Int_t n=0; for(Int_t i=0; i<6; i++)n+=YGood(i); return n;}; |
| 131 |
Int_t GetNtot(){return GetNX()+GetNY();}; |
Int_t GetNtot(){return GetNX()+GetNY();}; |
| 132 |
Float_t GetRigidity(); |
Float_t GetRigidity(); |
| 133 |
Float_t GetDeflection(); |
Float_t GetDeflection(); |
| 134 |
Float_t GetDEDX(); |
Float_t GetDEDX(); |
| 135 |
|
Float_t GetDEDX(Int_t ip){if( !(XGood(ip)+YGood(ip)) ) return 0; return (dedx_x[ip]+dedx_y[ip])/(XGood(ip)+YGood(ip));}; |
| 136 |
|
// sono un'imbecille... assegno xm e ym anche quando si tratta di un singolo |
| 137 |
|
// non posso quindi usare xm e ym per dire se una vista e` inclusa nel fit o no |
| 138 |
|
/* Bool_t XGood(int ip){ return xm[ip] != -100.;}; |
| 139 |
|
Bool_t YGood(int ip){ return ym[ip] != -100.;};*/ |
| 140 |
|
Bool_t XGood(int ip){ return xgood[ip]> 0;}; |
| 141 |
|
Bool_t YGood(int ip){ return ygood[ip]> 0;}; |
| 142 |
|
|
| 143 |
|
|
| 144 |
|
void SetMeasure(double *xmeas, double *ymeas, double *zmeas); |
| 145 |
|
void SetResolution(double *rx, double *ry); |
| 146 |
|
void SetGood(int *xg, int *yg); |
| 147 |
|
void LoadField(TString s); |
| 148 |
|
void Fit(double pfixed, int& fail, int iprint); |
| 149 |
|
void FitReset(); |
| 150 |
|
void SetTrackingMode(int trackmode); |
| 151 |
|
void SetPrecisionFactor(double fact); |
| 152 |
|
void SetStepMin(int istepmin); |
| 153 |
|
|
| 154 |
|
void FillMiniStruct(cMini2track&); |
| 155 |
|
void SetFromMiniStruct(cMini2track*); |
| 156 |
|
|
| 157 |
|
TrkCluster *GetClusterX(int ip); |
| 158 |
|
TrkCluster *GetClusterY(int ip); |
| 159 |
|
|
| 160 |
|
Int_t GetClusterX_ID(int ip){return xgood[ip];}; |
| 161 |
|
Int_t GetClusterY_ID(int ip){return ygood[ip];}; |
| 162 |
|
|
| 163 |
TrkTrack* GetTrkTrack(){return this;}; |
TrkTrack* GetTrkTrack(){return this;}; |
| 164 |
|
|
| 165 |
friend class TrkLevel2; |
friend class TrkLevel2; |
| 166 |
|
|
| 167 |
ClassDef(TrkTrack,1); |
ClassDef(TrkTrack,2); |
| 168 |
|
|
| 169 |
}; |
}; |
| 170 |
/** |
/** |
| 175 |
class TrkSinglet : public TObject { |
class TrkSinglet : public TObject { |
| 176 |
|
|
| 177 |
private: |
private: |
| 178 |
|
|
| 179 |
|
|
| 180 |
public: |
public: |
| 181 |
|
|
| 182 |
|
TRef cls; |
| 183 |
|
|
| 184 |
int plane; ///<plane |
int plane; ///<plane |
| 185 |
float coord[2]; ///<coordinate (on sensor 1 and 2) |
float coord[2]; ///<coordinate (on sensor 1 and 2) |
| 187 |
|
|
| 188 |
TrkSinglet(); |
TrkSinglet(); |
| 189 |
TrkSinglet(const TrkSinglet&); |
TrkSinglet(const TrkSinglet&); |
| 190 |
|
~TrkSinglet(){Delete();}; |
| 191 |
|
|
| 192 |
void Dump(); |
void Dump(); |
| 193 |
|
void Clear(); |
| 194 |
|
void Clear(Option_t *option){Clear();}; |
| 195 |
|
void Delete(){Clear();}; |
| 196 |
|
|
| 197 |
|
TrkCluster *GetCluster(){TrkCluster *pt = (TrkCluster*)cls.GetObject(); return pt;}; |
| 198 |
|
|
| 199 |
friend class TrkLevel2; |
friend class TrkLevel2; |
| 200 |
|
|
| 201 |
ClassDef(TrkSinglet,1); |
ClassDef(TrkSinglet,2); |
| 202 |
|
|
| 203 |
}; |
}; |
| 204 |
|
|
| 216 |
class TrkLevel2 : public TObject { |
class TrkLevel2 : public TObject { |
| 217 |
|
|
| 218 |
private: |
private: |
| 219 |
|
|
|
// TRefArray *PhysicalTrack; ///< physical tracks (no image) - |
|
|
|
|
| 220 |
public: |
public: |
| 221 |
|
|
| 222 |
Int_t good2; |
Int_t good[12]; ///< event status |
|
Int_t crc[12]; |
|
| 223 |
|
|
| 224 |
TClonesArray *Track; ///< fitted tracks |
TClonesArray *Track; ///< fitted tracks |
| 225 |
TClonesArray *SingletX; ///< x singlets |
TClonesArray *SingletX; ///< x singlets |
| 227 |
|
|
| 228 |
TrkLevel2(); |
TrkLevel2(); |
| 229 |
// TrkLevel2(cTrkLevel2 *); |
// TrkLevel2(cTrkLevel2 *); |
| 230 |
|
~TrkLevel2(){Delete();}; |
| 231 |
|
|
| 232 |
|
void Clear(); |
| 233 |
|
void Clear(Option_t *option){Clear();}; |
| 234 |
|
void Delete(); |
| 235 |
|
void Set(); |
| 236 |
|
|
| 237 |
int ntrk() {return Track->GetEntries();} ///< number of stored track |
int ntrk() {return Track->GetEntries();} ///< number of stored track |
| 238 |
int nclsx(){return SingletX->GetEntries();} ///< number of x singlets |
int nclsx(){return SingletX->GetEntries();} ///< number of x singlets |
| 239 |
int nclsy(){return SingletY->GetEntries();} ///< number of y singlets |
int nclsy(){return SingletY->GetEntries();} ///< number of y singlets |
| 240 |
|
|
| 241 |
void Dump(); |
void Dump(); |
| 242 |
void SetFromLevel2Struct(cTrkLevel2 *); |
void SetFromLevel2Struct(cTrkLevel2 *, TrkLevel1 *); |
| 243 |
|
void SetFromLevel2Struct(cTrkLevel2 *s2){ SetFromLevel2Struct(s2, NULL); }; |
| 244 |
|
void SetFromLevel2Struct(TrkLevel1 *l1) { SetFromLevel2Struct(&level2event_, l1); }; |
| 245 |
|
void SetFromLevel2Struct() { SetFromLevel2Struct(&level2event_); }; |
| 246 |
void GetLevel2Struct(cTrkLevel2 *) const; |
void GetLevel2Struct(cTrkLevel2 *) const; |
|
void Clear(); |
|
| 247 |
void LoadField(TString); |
void LoadField(TString); |
| 248 |
|
float GetBX(float*); |
| 249 |
|
float GetBY(float*); |
| 250 |
|
float GetBZ(float*); |
| 251 |
Float_t GetZTrk(Int_t); |
Float_t GetZTrk(Int_t); |
| 252 |
Float_t GetXTrkLeft(){return XTRKL;}; |
Float_t GetXTrkLeft(){return XTRKL;}; |
| 253 |
Float_t GetXTrkRight(){return XTRKR;}; |
Float_t GetXTrkRight(){return XTRKR;}; |
| 262 |
// TClonesArray *GetTracks_Chi2Sorted(); |
// TClonesArray *GetTracks_Chi2Sorted(); |
| 263 |
// TClonesArray *GetTracks_NFitSorted(); |
// TClonesArray *GetTracks_NFitSorted(); |
| 264 |
// TClonesArray *GetTracks(); |
// TClonesArray *GetTracks(); |
| 265 |
TRefArray *GetTracks_NFitSorted(); |
TRefArray *GetTracks_NFitSorted(); |
| 266 |
TRefArray *GetTracks(){return this->GetTracks_NFitSorted();}; |
TRefArray *GetTracks(){return this->GetTracks_NFitSorted();}; |
| 267 |
|
|
| 268 |
// int GetNTracks(){return this->GetTracks()->GetEntries();} |
// int GetNTracks(){return this->GetTracks()->GetEntries();} |
| 269 |
Int_t GetNTracks(); |
Int_t GetNTracks(); |
| 270 |
TrkTrack* GetTrack(int i); |
TrkTrack* GetTrack(int i); |
| 271 |
TrkTrack* GetTrackImage(int i); |
TrkTrack* GetTrackImage(int i); |
| 272 |
|
|
| 273 |
TrkLevel2* GetTrkLevel2(){return this;} |
TrkLevel2* GetTrkLevel2(){return this;} |
| 274 |
TClonesArray* GetTrackArray(){return Track;};///< returns pointer to the track array |
TClonesArray* GetTrackArray(){return Track;};///< returns pointer to the track array |
| 275 |
|
|
| 276 |
ClassDef(TrkLevel2,1); |
ClassDef(TrkLevel2,2); |
| 277 |
|
|
| 278 |
}; |
}; |
| 279 |
|
|
|
|
|
|
|
|
| 280 |
#endif |
#endif |