]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSv3.h
Introducing new frame 1099
[u/mrichter/AliRoot.git] / ITS / AliITSv3.h
CommitLineData
fe4da5cc 1#ifndef ITSv3_H
2#define ITSv3_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 3 //
10/////////////////////////////////////////////////////////
11
12#include "AliITS.h"
13
14class AliITSv3 : public AliITS {
15
593d2ea1 16private:
17 Int_t fId3N; // The number of layers for geometry version 5
18 // The name of the layers as defined in the Geant tree.
19 char **fId3Name;
20
fe4da5cc 21protected:
58005f18 22 Int_t fMinorVersionV3; //Minor version identifier
fe4da5cc 23
24public:
25 AliITSv3();
26 AliITSv3(const char *name, const char *title);
1c1b73f8 27 virtual ~AliITSv3() ;
fe4da5cc 28 virtual void CreateGeometry();
29 virtual void CreateMaterials();
30 virtual void Init();
31 virtual Int_t IsVersion() const {return 3;}
593d2ea1 32 virtual void SetMinorVersion(Int_t version) {fMinorVersionV3=version;}
fe4da5cc 33 virtual void StepManager();
34
35 ClassDef(AliITSv3,1) //Hits manager for set:ITS version 3
36};
37
38#endif