]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSv5.h
SetChildMomentumRange, SetChildPtRange, SetChildPhiRange, SetChildThetaRange added.
[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
fe4da5cc 12#include "TString.h"
fe4da5cc 13
58005f18 14#include "AliITS.h"
15#include "AliITSgeom.h"
16
17class AliITSv5 : public AliITS {
fe4da5cc 18private:
58005f18 19 Int_t fId5N; // The number of layers for geometry version 5
20 // The name of the layers as defined in the Geant tree.
21 char **fId5Name;
fe4da5cc 22
23public:
58005f18 24 AliITSv5();
25 AliITSv5(const char *name, const char *title);
1ef401ff 26 virtual ~AliITSv5() ;
58005f18 27 virtual void CreateGeometry();
28 virtual void CreateMaterials();
29 virtual void Init();
593d2ea1 30 virtual Int_t IsVersion() const {return 5;}
58005f18 31 virtual void StepManager();
fe4da5cc 32
56d6a1ef 33 ClassDef(AliITSv5,1) //Hits manager for ITS version 5 Official detailed geometry
fe4da5cc 34};
35
36#endif