]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/STEERBase/AliVMFT.h
Adding the new detector MFT (Antonio Uras)
[u/mrichter/AliRoot.git] / STEER / STEERBase / AliVMFT.h
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   AliVMFT() { }
16   AliVMFT(const AliVMFT& source);
17   AliVMFT &operator=(const AliVMFT& source);
18
19   virtual ~AliVMFT() { }
20
21
22 protected:  
23
24     
25   ClassDef(AliVMFT,1)
26 };
27
28 #endif