#ifndef ALIZDCMISALIGNER_H #define ALIZDCMISALIGNER_H #include "AliMisAligner.h" // Class building the alignment objects for ZDC in the three // canonical scenarios "ideal", "residual" and "full". // It derives from AliMisAligner, thus providing the methods // MakeAlObjsArray (builds and returns the array of alignment objects) // and GetCDBMetaData (returns the metadata for the OCDB entry) // class TString; class TNamed; class TClonesArray; class AliCDBManager; class AliCDBMetaData; class AliZDCMisAligner : public AliMisAligner { public: AliZDCMisAligner(); TClonesArray* MakeAlObjsArray(); AliCDBMetaData* GetCDBMetaData() const; private: ClassDef(AliZDCMisAligner,0); }; #endif