Line data Source code
1 : #ifndef ALIVMFT_H
2 : #define ALIVMFT_H
3 :
4 : //-------------------------------------------------------------------------
5 : // Base class for ESD and AOD MFT data
6 : // Author: Cvetan Cheshkov
7 : // cvetan.cheshkov@cern.ch 2/02/2011
8 : //-------------------------------------------------------------------------
9 :
10 : #include "TObject.h"
11 :
12 : class AliVMFT : public TObject
13 : {
14 : public:
15 0 : AliVMFT() { }
16 : AliVMFT(const AliVMFT& source);
17 : AliVMFT &operator=(const AliVMFT& source);
18 :
19 0 : virtual ~AliVMFT() { }
20 :
21 :
22 : protected:
23 :
24 :
25 176 : ClassDef(AliVMFT,1)
26 : };
27 :
28 : #endif
|