]> git.uio.no Git - u/mrichter/AliRoot.git/blame - START/AliSTARTv1.h
Possibility to store and retrieve TGeo geometry to/from file (R.Grosso)
[u/mrichter/AliRoot.git] / START / AliSTARTv1.h
CommitLineData
bc46b572 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
13class AliSTARTv1 : public AliSTART {
14
15public:
d65c9254 16
db173afc 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, kOpGlass=16, kOpAir=17, kOpAirNext=18, kOpGlassCathode=19};
d65c9254 18
19
bc46b572 20 AliSTARTv1() {};
21 AliSTARTv1(const char *name, const char *title);
db173afc 22 virtual ~AliSTARTv1();
bc46b572 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
30protected:
31 Int_t fIdSens1; // Sensetive volume in START
32
f3ed336b 33 ClassDef(AliSTARTv1,1) //Class for START version 1
bc46b572 34};
35
36#endif
37
38