]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliDetectorRecoParam.h
Announce changed
[u/mrichter/AliRoot.git] / STEER / AliDetectorRecoParam.h
1 #ifndef ALIDETECTORRECOPARAM_H
2 #define ALIDETECTORRECOPARAM_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 ///////////////////////////////////////////////////////////////////////////////
7 //                                                                           //
8 // Base Class for Detector reconstruction parameters                         //
9 //                                                                           //
10 ///////////////////////////////////////////////////////////////////////////////
11
12
13 #include "TNamed.h"
14
15 class AliDetectorRecoParam : public TNamed
16 {
17   
18  public: 
19   AliDetectorRecoParam();
20   virtual ~AliDetectorRecoParam();
21   void  Print(Option_t */*option*/) const {Dump();}
22   const Int_t * GetEventType() { return fEventType;}
23 protected:
24   Int_t fEventType[5]; // Reconstruction - event type        
25   
26   ClassDef(AliDetectorRecoParam, 1)
27 };
28
29
30 #endif