]> git.uio.no Git - u/mrichter/AliRoot.git/blob - VZERO/AliVZEROReconstructor.h
Cell number replaced by PM number in digit Tree
[u/mrichter/AliRoot.git] / VZERO / AliVZEROReconstructor.h
1 #ifndef ALIVZERORECONSTRUCTOR_H
2 #define ALIVZERORECONSTRUCTOR_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 ///////////////////////////////////////////////////////////////////////////////
9 ///                                                                          //
10 /// class for VZERO reconstruction                                           //
11 ///                                                                          //
12 ///////////////////////////////////////////////////////////////////////////////
13
14 #include "AliReconstructor.h"
15 #include "AliCDBManager.h"
16 #include "AliCDBStorage.h"
17 #include "AliVZEROCalibData.h"
18 #include "AliCDBEntry.h"
19
20 class AliLoader;
21
22 class AliVZEROReconstructor: public AliReconstructor {
23 public:
24   AliVZEROReconstructor();
25   virtual ~AliVZEROReconstructor();
26
27   AliCDBStorage     *SetStorage(const char* uri);
28   AliVZEROCalibData *GetCalibData() const; 
29
30 private:
31
32   AliVZEROReconstructor(const AliVZEROReconstructor& reconstructor);
33   AliVZEROReconstructor& operator = (const AliVZEROReconstructor& reconstructor);
34   
35   AliVZEROCalibData *fCalibData;       //! calibration data
36  
37   ClassDef(AliVZEROReconstructor, 0)   // class for the VZERO reconstruction
38 };
39
40 #endif