]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - ZDC/AliZDCMisAligner.h
Changes to correctly add fragments production for p-A collisions
[u/mrichter/AliRoot.git] / ZDC / AliZDCMisAligner.h
... / ...
CommitLineData
1#ifndef ALIZDCMISALIGNER_H
2#define ALIZDCMISALIGNER_H
3
4#include "AliMisAligner.h"
5
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
13class TString;
14class TNamed;
15class TClonesArray;
16class AliCDBManager;
17class AliCDBMetaData;
18
19class AliZDCMisAligner : public AliMisAligner {
20
21 public:
22 AliZDCMisAligner();
23 TClonesArray* MakeAlObjsArray();
24 AliCDBMetaData* GetCDBMetaData() const;
25
26 private:
27 ClassDef(AliZDCMisAligner,0);
28};
29
30#endif
31