]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliAlignObj.h
Removing semaphore .done files.
[u/mrichter/AliRoot.git] / STEER / AliAlignObj.h
CommitLineData
c18195b9 1#ifndef ALIALIGNOBJ_H
2#define ALIALIGNOBJ_H
3
fdf65bb5 4//************************************************************************
ff2dbca1 5// AliAlignObj: alignment base class for the storage of the alignment *
6// constants for a single volume: *
7// - a displacement (a shift and a rotation) either as *
8// - the 6 doubles which identify it or as *
9// - the matrix which identifies it *
10// - the identity of the volume itself in form of a symbolic volume *
11// name for alignable volumes, in form of a TGeo path otherwise, *
12// and as a unique integer identifier *
befe2c08 13//************************************************************************
c18195b9 14#include "TObject.h"
15#include "TString.h"
16#include "TGeoMatrix.h"
17
03b18860 18class AliTrackPoint;
19class AliTrackPointArray;
20
c18195b9 21class AliAlignObj : public TObject {
22
23 public:
24
877c3816 25 enum ELayerID{kInvalidLayer=0,
26 kFirstLayer=1,
98937d93 27 kSPD1=1, kSPD2=2,
befe2c08 28 kSDD1=3, kSDD2=4,
29 kSSD1=5, kSSD2=6,
30 kTPC1=7, kTPC2=8,
31 kTRD1=9, kTRD2=10, kTRD3=11, kTRD4=12, kTRD5=13, kTRD6=14,
32 kTOF=15,
33 kPHOS1=16, kPHOS2=17,
f4b3bbb7 34 kHMPID=18,
98937d93 35 kMUON=19,
36 kLastLayer=20};
d9cc42ed 37 AliAlignObj();
b760c02e 38 AliAlignObj(const char* symname, UShort_t voluid);
39 AliAlignObj(const char* symname, ELayerID detId, Int_t modId);
d9cc42ed 40 AliAlignObj(const AliAlignObj& theAlignObj);
41 AliAlignObj& operator= (const AliAlignObj& theAlignObj);
42 AliAlignObj& operator*=(const AliAlignObj& theAlignObj);
43 virtual ~AliAlignObj();
c18195b9 44
45 //Setters
46 virtual void SetTranslation(Double_t x, Double_t y, Double_t z) = 0;
47 virtual void SetTranslation(const TGeoMatrix& m) = 0;
48 virtual void SetRotation(Double_t psi, Double_t theta, Double_t phi) = 0;
49 virtual Bool_t SetRotation(const TGeoMatrix& m) = 0;
50 virtual void SetPars(Double_t x, Double_t y, Double_t z, Double_t psi,
b760c02e 51 Double_t theta, Double_t phi);
1bfe7ffc 52 virtual Bool_t SetLocalPars(Double_t x, Double_t y, Double_t z,
53 Double_t psi, Double_t theta, Double_t phi);
b760c02e 54 virtual Bool_t SetMatrix(const TGeoMatrix& m);
55 virtual Bool_t SetLocalMatrix(const TGeoMatrix& m);
56 void SetSymName(const TString& symname) {fVolPath=symname;}
cab6c0d0 57 void SetVolUID(UShort_t voluid) {fVolUID=voluid;}
befe2c08 58 void SetVolUID(ELayerID layerId, Int_t modId);
c18195b9 59
60 //Getters
b760c02e 61 const char *GetSymName() const {return fVolPath.Data();}
c18195b9 62 UShort_t GetVolUID() const {return fVolUID;}
befe2c08 63 void GetVolUID(ELayerID &layerId, Int_t &modId) const;
c18195b9 64 virtual void GetTranslation(Double_t* tr) const=0;
65 virtual Bool_t GetAngles(Double_t* angles) const=0;
b760c02e 66 virtual Bool_t GetPars(Double_t transl[], Double_t rot[]) const;
c18195b9 67 virtual void GetMatrix(TGeoHMatrix& m) const=0;
68
d9cc42ed 69 Bool_t IsSortable() const {return kTRUE;}
4b94e753 70 Int_t GetLevel() const;
71 virtual Int_t Compare(const TObject* obj) const;
72
03b18860 73 virtual AliAlignObj& Inverse() const=0;
74
75 void Transform(AliTrackPoint &p) const;
76 void Transform(AliTrackPointArray &array) const;
77
c18195b9 78 void Print(Option_t *) const;
79
c041444f 80 static Int_t LayerSize(Int_t layerId);
81 static const char* LayerName(Int_t layerId);
98937d93 82
befe2c08 83 static UShort_t LayerToVolUID(ELayerID layerId, Int_t modId);
46ae650f 84 static UShort_t LayerToVolUID(Int_t layerId, Int_t modId);
befe2c08 85 static ELayerID VolUIDToLayer(UShort_t voluid, Int_t &modId);
86 static ELayerID VolUIDToLayer(UShort_t voluid);
03b18860 87
b760c02e 88 static const char* SymName(UShort_t voluid);
89 static const char* SymName(ELayerID layerId, Int_t modId);
03b18860 90
995ad051 91 Bool_t ApplyToGeometry();
b760c02e 92 static Bool_t GetFromGeometry(const char *symname, AliAlignObj &alobj);
995ad051 93
e1e6896f 94 static AliAlignObj* GetAlignObj(UShort_t voluid);
c5304981 95 static AliAlignObj* GetAlignObj(ELayerID layerId, Int_t modId);
96
c18195b9 97 protected:
98
99 void AnglesToMatrix(const Double_t *angles, Double_t *rot) const;
100 Bool_t MatrixToAngles(const Double_t *rot, Double_t *angles) const;
101
b760c02e 102 static void InitSymNames();
103 static void InitAlignObjFromGeometry();
03b18860 104
c18195b9 105 //Volume identifiers
b760c02e 106 TString fVolPath; // Symbolic volume name; in case could coincide with
ff2dbca1 107 // the volume path inside TGeo geometry (for non-alignable volumes)
98937d93 108 UShort_t fVolUID; // Unique volume ID
109
e1e6896f 110 static Int_t fgLayerSize[kLastLayer - kFirstLayer]; // Size of layers
111 static const char* fgLayerName[kLastLayer - kFirstLayer]; // Name of layers
03b18860 112
b760c02e 113 static TString* fgVolPath[kLastLayer - kFirstLayer]; // Symbolic volume names
e1e6896f 114 static AliAlignObj** fgAlignObjs[kLastLayer - kFirstLayer]; // Alignment objects
c5304981 115
03b18860 116 ClassDef(AliAlignObj, 2)
c18195b9 117};
118
c18195b9 119#endif