]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSv5.h
Correction of the inheritance scheme
[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
855190cc 12#include "TString.h"
13#include "TBRIK.h"
58005f18 14#include "AliITS.h"
855190cc 15#include "AliITSgeom.h"
58005f18 16
17class AliITSv5 : public AliITS {
fe4da5cc 18
c9a71be1 19 public:
20 AliITSv5();
21 AliITSv5(const char *name, const char *title);
855190cc 22 AliITSv5(const AliITSv5 &source); // copy constructor
23 AliITSv5& operator=(const AliITSv5 &source); // assignment operator
c9a71be1 24 virtual ~AliITSv5() ;
855190cc 25 virtual void BuildGeometry();
26 virtual void CreateGeometry();
27 virtual void CreateMaterials();
c9a71be1 28 virtual void Init();
855190cc 29 virtual Int_t IsVersion() const {
30 // returns the ITS version number
31 return 5;
32 }
c9a71be1 33 virtual void StepManager();
855190cc 34
35 private:
36 Int_t fId5N; // The number of layers for geometry version 5
37 // The name of the layers as defined in the Geant tree.
38 char **fId5Name; // They are the names of the sensitive volumes
39
40
41
c9a71be1 42 ClassDef(AliITSv5,1)//Hits manager for ITS version 5 Official detailed geometry
fe4da5cc 43};
44
45#endif