]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/src/AliL3Transform.h
Added the magnetic field as a static member of the AliL3Transform class,
[u/mrichter/AliRoot.git] / HLT / src / AliL3Transform.h
index eb29a4799fe8212ecf156b96948a06d3da8114e1..0ec7810d16a24c5b6577b2c7dfbd848c37335f9d 100644 (file)
@@ -1,65 +1,78 @@
 #ifndef ALIL3TRANSFORM_H
 #define ALIL3TRANSFORM_H
 
-
-
-//#include "AliTPCParam.h"
 #include "AliL3RootTypes.h"
-class TFile;
 
 class AliL3Transform {
+
  private:
-//  AliTPCParam *fParam;
-  Int_t fNTimeBins;
-  Int_t fNRowLow;
-  Int_t fNRowUp;
-  Int_t fNSectorLow;
-  Int_t fNSectorUp;
-  Double_t fPadPitchWidthLow;
-  Double_t fPadPitchWidthUp;
-  Double_t fZWidth;
-  Double_t fZSigma;
-  Int_t fNSector;
-  Int_t fNSlice;
-  Int_t fNRow;
-  Double_t fPi;
-  Double_t fCos[36]; //change this following Init
-  Double_t fSin[36]; //change this following Init
-  Double_t fX[176];  //change this following Init
-  Int_t fNPads[176]; //change this following Init
+  
+  static Double_t fBField;
+  static Int_t fNTimeBins;
+  static Int_t fNRowLow;
+  static Int_t fNRowUp;
+  static Int_t fNSectorLow;
+  static Int_t fNSectorUp;
+  static Double_t fPadPitchWidthLow;
+  static Double_t fPadPitchWidthUp;
+  static Double_t fZWidth;
+  static Double_t fZSigma;
+  static Int_t fNSector;
+  static Int_t fNSlice;
+  static Int_t fNRow;
+  static Double_t fPi;
+  static Double_t fNRotShift;
+  static Double_t fZLength;
+  static Double_t fZOffset;
+  static Int_t fNPads[176]; //fill this following Init
+  static Double_t fX[176];  //fill this following Init
+  static Int_t fVersion; //flags which version one is using
+
  public:
-  AliL3Transform();
-  virtual ~AliL3Transform();
-  void Init();
+  
+  static void Init(const Char_t* path); //new init for all AliRoot versions
+  
+  static void SetBField(Double_t f) {fBField = f;}
+  static Double_t GetBField() {return fBField;}
+  static Int_t GetVersion(){return fVersion;}
+  static Double_t GetPadPitchWidthLow() {return fPadPitchWidthLow;}
+  static Double_t GetPadPitchWidthUp() {return fPadPitchWidthUp;}
+  static Double_t GetPadPitchWidth(Int_t patch) {if(patch<=2) return fPadPitchWidthLow; else return fPadPitchWidthUp;}
+  static Double_t GetZWidth() {return fZWidth;}
+  static Double_t GetZLength() {return fZLength;}
+  static Double_t GetZOffset() {return fZOffset;}
+  static Int_t GetNSectorLow() {return fNSectorLow;}
+  static Int_t GetNSectorUp() {return fNSectorUp;}
+  
+  static Bool_t Slice2Sector(Int_t slice, Int_t slicerow, Int_t &sector, Int_t &row);
+  static Bool_t Sector2Slice(Int_t &slice, Int_t sector);
+  static Bool_t Sector2Slice(Int_t &slice, Int_t &slicerow, Int_t sector, Int_t row);
 
-  Double_t GetPadPitchWidthLow() {return fPadPitchWidthLow;}
-  Double_t GetPadPitchWidthUp() {return fPadPitchWidthUp;}
+  static Int_t GetNPads(Int_t row){return (row<fNRow)?fNPads[row]:0;}
+  static Int_t GetNTimeBins(){return fNTimeBins;}
+  static Double_t Row2X(Int_t slicerow);
+  static Double_t GetMaxY(Int_t slicerow);
+  static Double_t GetEta(Float_t *xyz);
+  static Double_t GetEta(Int_t row, Int_t pad, Int_t time);
+  static Double_t GetPhi(Float_t *xyz);
 
-  Bool_t Slice2Sector(Int_t slice, Int_t slicerow, Int_t & sector, Int_t &row) const;
+  static void XYZtoRPhiEta(Float_t *rpe, Float_t *xyz);
+  static void Local2Global(Float_t *xyz, Int_t slice);
+  static void Local2GlobalAngle(Float_t *angle, Int_t slice);
+  static void Global2LocalAngle(Float_t *angle, Int_t slice);
 
-  Bool_t Sector2Slice(Int_t & slice, Int_t  sector) const;
-  Bool_t Sector2Slice(Int_t & slice, Int_t & slicerow,Int_t  sector, Int_t row) const;
+  static void Raw2Local(Float_t *xyz, Int_t sector, Int_t row, Float_t pad, Float_t time);
+  static void Local2Global(Float_t *xyz, Int_t sector, Int_t row);
+  static void Global2Local(Float_t *xyz, Int_t sector, Bool_t isSlice=kFALSE);
+  static void Raw2Global(Float_t *xyz, Int_t sector, Int_t row, Float_t pad, Float_t time);
+  static void Local2Raw(Float_t *xyz, Int_t sector, Int_t row);
+  static void Global2Raw(Float_t *xyz, Int_t sector, Int_t row);
   
-  Double_t Row2X(Int_t slicerow);
-  Int_t GetNPads(Int_t row){return (row<fNRow)?fNPads[row]:0;}
-  Int_t GetNTimeBins(){return fNTimeBins;}
+  ClassDef(AliL3Transform,1) //Transformation class for ALICE TPC
+};
+#endif
+
 
-  Double_t GetEta(Float_t *xyz);
-  Double_t GetPhi(Float_t *xyz);
-  Double_t GetMaxY(Int_t slicerow);
-  void Local2Global(Float_t *xyz,Int_t slice);
-  void Local2GlobalAngle(Float_t *angle,Int_t slice);
-  void Global2LocalAngle(Float_t *angle,Int_t slice);
 
-  void Raw2Local(Float_t *xyz,Int_t sector,Int_t row,Float_t pad,Float_t time);
-  void Local2Global(Float_t *xyz,Int_t sector,Int_t row);
-  void Global2Local(Float_t *xyz,Int_t sector);
-  void Raw2Global(Float_t *xyz,Int_t sector,Int_t row,Float_t pad,Float_t time);
-  void Local2Raw(Float_t *xyz,Int_t sector,Int_t row);
-  void Global2Raw(Float_t *xyz,Int_t sector,Int_t row);
-  
-  ClassDef(AliL3Transform,1)
-};
 
 
-#endif