]> git.uio.no Git - u/mrichter/AliRoot.git/blob - START/AliSTARTv1.h
Writing digits in the output file
[u/mrichter/AliRoot.git] / START / AliSTARTv1.h
1 #ifndef STARTV1_H
2 #define STARTV1_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 //  Manager and hits classes for set:START     //
9 ////////////////////////////////////////////////
10  
11 #include "AliSTART.h"
12  
13 class AliSTARTv1 : public AliSTART {
14   
15 public:
16
17   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};
18
19  
20   AliSTARTv1() {};
21   AliSTARTv1(const char *name, const char *title);
22   virtual       ~AliSTARTv1() {}
23   virtual void   CreateGeometry();
24   virtual void   CreateMaterials();
25   virtual void   DrawDetector();
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(AliSTARTv1,1)  //Class for START version 1
34 };
35
36 #endif
37
38