]> git.uio.no Git - u/mrichter/AliRoot.git/blame - START/AliSTARTv0.h
DrawModule declared const
[u/mrichter/AliRoot.git] / START / AliSTARTv0.h
CommitLineData
6ca40650 1#ifndef STARTV0_H
2#define STARTV0_H
3da30618 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
6ca40650 8////////////////////////////////////////////////
9// Manager and hits classes for set:START //
10////////////////////////////////////////////////
11
12#include "AliSTART.h"
13
14class AliSTARTv0 : public AliSTART {
4dccf17b 15
6ca40650 16public:
4dccf17b 17
e4da63c2 18
19 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, kOpGlass=16, kOpAir=17};
4dccf17b 20
6ca40650 21 AliSTARTv0() {};
22 AliSTARTv0(const char *name, const char *title);
23 virtual ~AliSTARTv0() {}
24 virtual void CreateGeometry();
25 virtual void CreateMaterials();
ba380e33 26 virtual void DrawModule() const;
6ca40650 27 virtual void Init();
28 virtual Int_t IsVersion() const {return 0;}
29 virtual void StepManager();
30
31protected:
32 Int_t fIdSens1; // Sensetive volume in START
33
34 ClassDef(AliSTARTv0,1) //Class for START version 0
35};
36
37#endif
38
39