]> git.uio.no Git - u/mrichter/AliRoot.git/blob - START/AliSTARTv0.h
OIbsolete includes removed (T.Kuhr)
[u/mrichter/AliRoot.git] / START / AliSTARTv0.h
1 #ifndef STARTV0_H
2 #define STARTV0_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:START     //
10 ////////////////////////////////////////////////
11  
12 #include "AliSTART.h"
13  
14 class AliSTARTv0 : public AliSTART {
15  
16 public:
17
18   enum constants {kAir=1, kSc=2, kVac=3, kCer=4, kGlass=6, kSteel=8, kRibber=9, kBrass=11, kLucite=12, kC=13, kPP=14, kAl=15};
19
20   AliSTARTv0() {};
21   AliSTARTv0(const char *name, const char *title);
22   virtual       ~AliSTARTv0() {}
23   virtual void   CreateGeometry();
24   virtual void   CreateMaterials();
25   virtual void   DrawModule();
26   virtual void   Init();
27   virtual Int_t  IsVersion() const {return 0;}
28   virtual void   StepManager();
29   
30 protected:
31    Int_t fIdSens1; // Sensetive volume  in START
32  
33   ClassDef(AliSTARTv0,1)  //Class for START version 0
34 };
35
36 #endif
37
38