]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliAlignObj.h
Initialization of some data members (Alberto)
[u/mrichter/AliRoot.git] / STEER / AliAlignObj.h
index 9a14457a888c9c1ae2053ab9fb5f3864b187329d..3a5578bde3766cef25e6c8b5f766d37345f42ac8 100644 (file)
 #include "TString.h"
 #include "TGeoMatrix.h"
 
+class AliTrackPoint;
+class AliTrackPointArray;
+
 class AliAlignObj : public TObject {
 
  public:
 
-  AliAlignObj();
-  AliAlignObj(const AliAlignObj& theAlignObj);
-  AliAlignObj& operator= (const AliAlignObj& theAlignObj);
-  virtual ~AliAlignObj();
-  enum ELayerID{kSPD1=1, kSPD2=2,
+  enum ELayerID{kInvalidLayer=0,
+               kFirstLayer=1,
+               kSPD1=1, kSPD2=2,
                kSDD1=3, kSDD2=4,
                kSSD1=5, kSSD2=6,
                kTPC1=7, kTPC2=8,
@@ -27,7 +28,15 @@ class AliAlignObj : public TObject {
                kTOF=15,
                kPHOS1=16, kPHOS2=17,
                kRICH=18,
-               kMUON=19};
+               kMUON=19,
+               kLastLayer=20};
+  AliAlignObj();
+  AliAlignObj(const char* volpath, UShort_t voluid);
+  AliAlignObj(const char* volpath, ELayerID detId, Int_t modId);
+  AliAlignObj(const AliAlignObj& theAlignObj);
+  AliAlignObj& operator= (const AliAlignObj& theAlignObj);
+  AliAlignObj& operator*=(const AliAlignObj& theAlignObj);
+  virtual ~AliAlignObj();
 
   //Setters
   virtual void SetTranslation(Double_t x, Double_t y, Double_t z) = 0;
@@ -36,9 +45,11 @@ class AliAlignObj : public TObject {
   virtual Bool_t SetRotation(const TGeoMatrix& m) = 0;
   virtual void SetPars(Double_t x, Double_t y, Double_t z, Double_t psi,
                Double_t theta, Double_t phi) = 0;
+  virtual Bool_t SetLocalPars(Double_t x, Double_t y, Double_t z,
+                             Double_t psi, Double_t theta, Double_t phi);
   virtual void SetMatrix(const TGeoMatrix& m) = 0;
   void  SetVolPath(const TString& volpath) {fVolPath=volpath;}
-  void  SetVolUID(const UShort_t voluid) {fVolUID=voluid;}
+  void  SetVolUID(UShort_t voluid) {fVolUID=voluid;}
   void  SetVolUID(ELayerID layerId, Int_t modId);
 
   //Getters
@@ -50,21 +61,54 @@ class AliAlignObj : public TObject {
   virtual void GetPars(Double_t transl[], Double_t rot[]) const=0;
   virtual void GetMatrix(TGeoHMatrix& m) const=0;
 
+  Bool_t   IsSortable() const {return kTRUE;}
+  Int_t         GetLevel() const;
+  virtual Int_t Compare(const TObject* obj) const;
+
+  virtual AliAlignObj& Inverse() const=0;
+
+  void  Transform(AliTrackPoint &p) const;
+  void  Transform(AliTrackPointArray &array) const;
+
   void  Print(Option_t *) const;
 
+  static Int_t       LayerSize(Int_t layerId);
+  static const char* LayerName(Int_t layerId);
+
   static UShort_t LayerToVolUID(ELayerID layerId, Int_t modId);
+  static UShort_t LayerToVolUID(Int_t    layerId, Int_t modId);
   static ELayerID VolUIDToLayer(UShort_t voluid, Int_t &modId);
   static ELayerID VolUIDToLayer(UShort_t voluid);
+
+  static const char* GetVolPath(UShort_t voluid);
+  static const char* GetVolPath(ELayerID layerId, Int_t modId);
+
+  Bool_t ApplyToGeometry();
+  static Bool_t   GetFromGeometry(const char *path, AliAlignObj &alobj);
+
+  static void         InitAlignObjFromGeometry();
+  static AliAlignObj* GetAlignObj(UShort_t voluid);
+  static AliAlignObj* GetAlignObj(ELayerID layerId, Int_t modId);
+
  protected:
 
   void AnglesToMatrix(const Double_t *angles, Double_t *rot) const;
   Bool_t MatrixToAngles(const Double_t *rot, Double_t *angles) const;
 
+  static void InitVolPaths();
+
   //Volume identifiers
-  TString fVolPath; // Volume path inside TGeo geometry
-  UShort_t fVolUID; // Unique volume ID
-  
-  ClassDef(AliAlignObj, 1)
+  TString  fVolPath; // Volume path inside TGeo geometry
+  UShort_t fVolUID;  // Unique volume ID
+
+  static Int_t       fgLayerSize[kLastLayer - kFirstLayer]; // Size of layers
+  static const char* fgLayerName[kLastLayer - kFirstLayer]; // Name of layers
+
+  static TString*    fgVolPath[kLastLayer - kFirstLayer]; // Volume path
+
+  static AliAlignObj** fgAlignObjs[kLastLayer - kFirstLayer]; // Alignment objects
+
+  ClassDef(AliAlignObj, 2)
 };
 
 #endif