]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSv3.h
New SPD geometry class for 300 micron pixels
[u/mrichter/AliRoot.git] / ITS / AliITSv3.h
CommitLineData
56d6a1ef 1#ifndef ALIITSV3_H
2#define ALIITSV3_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"
fe4da5cc 13
b3a22d72 14class AliITSv3 : public AliITS {
593d2ea1 15
c9a71be1 16 public:
17 AliITSv3();
18 AliITSv3(const char *name, const char *title);
b3a22d72 19 AliITSv3(const AliITSv3 &source); // copy constructor
20 AliITSv3& operator=(const AliITSv3 &source); // assignment operator
c9a71be1 21 virtual ~AliITSv3() ;
b3a22d72 22 virtual void BuildGeometry();
23 virtual void CreateGeometry();
24 virtual void CreateMaterials();
c9a71be1 25 virtual void Init();
b3a22d72 26 virtual Int_t IsVersion() const {
27 // returns the ITS version number
28 return 3;
29 }
30 virtual void SetMinorVersion(Int_t version) {
31 // sets the minor version
32 fMinorVersionV3=version;
33 }
c9a71be1 34 virtual void StepManager();
b3a22d72 35
36 protected:
37 Int_t fMinorVersionV3; //Minor version identifier
38
39 private:
40 Int_t fId3N; // The number of layers for geometry version 5
41 // The name of the layers as defined in the Geant tree.
42 char **fId3Name; // They are the names of the sensitive volumes
43
44
fe4da5cc 45
b3a22d72 46 ClassDef(AliITSv3,1)//Hits manager for set:ITS version 3, TP detailed geometry
fe4da5cc 47};
48
49#endif
56d6a1ef 50