]>
Commit | Line | Data |
---|---|---|
e00d46ab | 1 | #ifndef ALIZDCMISALIGNER_H |
2 | #define ALIZDCMISALIGNER_H | |
22a44c4a | 3 | |
22a44c4a | 4 | #include "AliMisAligner.h" |
22a44c4a | 5 | |
e00d46ab | 6 | // Class building the alignment objects for ZDC in the three |
7 | // canonical scenarios "ideal", "residual" and "full". | |
8 | // It derives from AliMisAligner, thus providing the methods | |
9 | // MakeAlObjsArray (builds and returns the array of alignment objects) | |
10 | // and GetCDBMetaData (returns the metadata for the OCDB entry) | |
11 | // | |
12 | ||
13 | class TString; | |
14 | class TNamed; | |
22a44c4a | 15 | class TClonesArray; |
16 | class AliCDBManager; | |
e00d46ab | 17 | class AliCDBMetaData; |
22a44c4a | 18 | |
19 | class AliZDCMisAligner : public AliMisAligner { | |
20 | ||
e00d46ab | 21 | public: |
22 | AliZDCMisAligner(); | |
23 | TClonesArray* MakeAlObjsArray(); | |
24 | AliCDBMetaData* GetCDBMetaData() const; | |
22a44c4a | 25 | |
e00d46ab | 26 | private: |
27 | ClassDef(AliZDCMisAligner,0); | |
22a44c4a | 28 | }; |
29 | ||
30 | #endif | |
31 |