1 #ifndef ALITPCTRANSFORMATION_H
2 #define ALITPCTRANSFORMATION_H
8 class TTreeSRedirector;
9 class AliTrackPointArray;
15 class AliTPCTransformation: public TNamed{
17 typedef Double_t (*GenFuncG)(const Double_t*,const Double_t*);
18 AliTPCTransformation();
19 AliTPCTransformation(const char *name,TBits *mask, const char *fx, const char *fy, const char *fz, Int_t coord);
20 AliTPCTransformation(const AliTPCTransformation&trafo);
21 ~AliTPCTransformation();
23 virtual Double_t GetDeltaXYZ(Int_t coord, Int_t volID, Double_t param, Double_t x, Double_t y, Double_t z);
24 void SetParams(Double_t param, Double_t sigma, Double_t sigma2Time, const TVectorD *const fixedParams);
26 void SetActive(Bool_t flag){ fIsActive = flag;}
27 Bool_t IsActive() const {return fIsActive;}
29 Double_t GetParam() const {return fParam;}
30 void SetParam(Double_t param) {fParam=param;}
31 Double_t GetSigma() const {return fSigma;}
32 Double_t GetSigmaMax() const {return fSigmaMax;}
33 Double_t GetSigma2Time() const {return fSigma2Time;}
35 static TBits * BitsSide(Bool_t aside);
36 static TBits * BitsAll();
37 static void RegisterFormula(const char * name, GenFuncG formula);
38 static AliTPCTransformation::GenFuncG FindFormula(const char * name);
39 static Double_t Eval(const char * name, const Double_t*x,const Double_t*par);
43 TString * fNameX; // x formula
44 TString * fNameY; // y formula
45 TString * fNameZ; // z formula
47 TBits * fBitMask; // bitmaps - transformation only for specified volID
48 Int_t fCoordSystem; // coord system of output deltas
49 Double_t fParam; // free parameter of transformation
50 Double_t fSigma; // error of the parameter
51 Double_t fSigmaMax; // maximal sigma (Not allowed to increase in propagate time by bigger factor)
52 Double_t fSigma2Time; // change of the error in time (per hour) - (For kalman filter)
53 TVectorD *fFixedParam; // fixed parameters of tranformation
54 Bool_t fIsActive; // switch - is transformation active
56 // predefined formulas
58 static Int_t BuildBasicFormulas(); //build list of basic formulas
59 static Double_t TPCscalingRPol(Double_t *xyz, Double_t * param);
60 static Double_t TPCscalingZDrift(Double_t *xyz, Double_t * param);
61 static Double_t TPCscalingZDriftGy(Double_t *xyz, Double_t * param);
62 static Double_t TPCscalingZDriftT0(Double_t *xyz, Double_t * param);
63 static Double_t TPCscalingPhiLocal(Double_t *xyz, Double_t * param);
64 static Double_t TPClocalRPhiEdge(Double_t *xyz, const Double_t *const param);
66 // TPC Field cage + ROC misalingment induced distortion
68 static Double_t TPCscalingRIFC(Double_t *xyz, Double_t * param); // inner field cage r distorion
69 static Double_t TPCscalingROFC(Double_t *xyz, Double_t * param); // outer field cage r distorion
71 // TPC field cage + ROC misalignemnt induced distortion
73 static Double_t TPCdeltaFCROC(Double_t *xyz, const Double_t *const param);
74 static Double_t TPCdeltaFCCE(Double_t *xyz, const Double_t *const param);
77 // TPC local misalignment
79 static Double_t TPClocaldLxdGX(Double_t *xyz, const Double_t *const param);
80 static Double_t TPClocaldLxdGY(Double_t *xyz, const Double_t *const param);
81 static Double_t TPClocaldLydGX(Double_t *xyz, const Double_t *const param);
82 static Double_t TPClocaldLydGY(Double_t *xyz, const Double_t *const param);
83 static Double_t TPClocaldRzdGX(Double_t *xyz, const Double_t *const param);
84 static Double_t TPClocaldRzdGY(Double_t *xyz, const Double_t *const param);
87 // TPC quadrant misalignment
89 // static Double_t TPCQuadrantDr(Double_t *xyz, Double_t * param){return 0;}
90 //static Double_t TPCQuadrantDrphi(Double_t *xyz, Double_t * param){return 0;}
94 static Double_t TPCDeltaZ(Double_t *xyz, const Double_t *const param);
95 static Double_t TPCDeltaZMediumLong(Double_t *xyz, Double_t * param);
96 static Double_t TPCTiltingZ(Double_t *xyz, const Double_t *const param);
98 Bool_t fInit; // initialization flag
99 GenFuncG fFormulaX; //! x formula
100 GenFuncG fFormulaY; //! y formula
101 GenFuncG fFormulaZ; //! z formula
102 static GenFuncG fgFormulas[10000]; //! array of pointers to formula
103 static TObjArray* fgFormulasName; //! array of formalas name
105 AliTPCTransformation &operator=(const AliTPCTransformation&); // not implemented
107 ClassDef(AliTPCTransformation,2);