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