]> git.uio.no Git - u/mrichter/AliRoot.git/blob - CPV/AliCPVv0.h
Improvements in the looks
[u/mrichter/AliRoot.git] / CPV / AliCPVv0.h
1 #ifndef CPVv0_H
2 #define CPVv0_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 //  Manager and hits classes for set:CPV version 0    //
10 //  Coarse geometry                                   //
11 //                                                    //
12 //  Author: Yuri Kharlov, IHEP, Protvino              //
13 //  e-mail: Yuri.Kharlov@cern.ch                      //
14 //  Last modified: 17 September 1999                  //
15 ////////////////////////////////////////////////////////
16
17 // --- galice header files ---
18 #include "AliCPV.h"
19
20 class AliCPVv0 : public AliCPV
21 {
22   
23 public:
24            AliCPVv0();
25            AliCPVv0(const char *name, const char *title);
26   virtual ~AliCPVv0(){}
27   virtual void   CreateGeometry();
28   virtual Int_t  IsVersion() const {return 0;}
29   virtual void   StepManager();
30   
31   ClassDef(AliCPVv0,1)  //Hits manager for set:CPV version 0
32 };
33  
34 #endif
35