]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSv5.h
Introduction of the Copyright and cvs Log
[u/mrichter/AliRoot.git] / ITS / AliITSv5.h
CommitLineData
fe4da5cc 1#ifndef ITSv5_H
2#define ITSv5_H
58005f18 3////////////////////////////////////////////////////////////////////////
4// Manager and hits classes for ITS version 5
5////////////////////////////////////////////////////////////////////////
6
fe4da5cc 7#include "TString.h"
fe4da5cc 8
58005f18 9#include "AliITS.h"
10#include "AliITSgeom.h"
11
12class AliITSv5 : public AliITS {
fe4da5cc 13private:
58005f18 14 Int_t fId5N; // The number of layers for geometry version 5
15 // The name of the layers as defined in the Geant tree.
16 char **fId5Name;
fe4da5cc 17
18public:
58005f18 19 AliITSv5();
20 AliITSv5(const char *name, const char *title);
21 virtual ~AliITSv5() {}
22 virtual void CreateGeometry();
23 virtual void CreateMaterials();
24 virtual void Init();
25 inline virtual Int_t IsVersion() const {return 5;}
26 virtual void StepManager();
fe4da5cc 27
58005f18 28 ClassDef(AliITSv5,1) //Hits manager for ITS version 5
fe4da5cc 29};
30
31#endif