]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSv1.h
Delete only existent objects.
[u/mrichter/AliRoot.git] / ITS / AliITSv1.h
CommitLineData
56d6a1ef 1#ifndef ALIITSV1_H
2#define ALIITSV1_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
fe4da5cc 8/////////////////////////////////////////////////////////
9// Manager and hits classes for set: ITS version 1 //
10/////////////////////////////////////////////////////////
11
12#include "AliITS.h"
13
14class AliITSv1 : public AliITS {
593d2ea1 15
c9a71be1 16 private:
593d2ea1 17 Int_t fId1N; // The number of layers for geometry version 5
18 // The name of the layers as defined in the Geant tree.
19 char **fId1Name;
fe4da5cc 20
c9a71be1 21 public:
22 AliITSv1();
23 AliITSv1(const char *name, const char *title);
24 virtual ~AliITSv1() ;
25 virtual void BuildGeometry(); // for event display
26 virtual void CreateGeometry(); // for Geant simulation
27 virtual void CreateMaterials(); // for Geant simulation
28 virtual void Init();
29 virtual Int_t IsVersion() const {return 1;}
30 virtual void DrawModule();
31 virtual void StepManager();
fe4da5cc 32
c9a71be1 33 ClassDef(AliITSv1,1) //Hits manager for set:ITS version 1 cource Geometry
fe4da5cc 34};
35
36#endif