]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSv1.h
Implements all the new classes (JB, AM)
[u/mrichter/AliRoot.git] / ITS / AliITSv1.h
CommitLineData
56d6a1ef 1#ifndef ALIITSV1_H
2#define ALIITSV1_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 1 //
10/////////////////////////////////////////////////////////
11
12#include "AliITS.h"
56d6a1ef 13#include "AliITSgeom.h"
fe4da5cc 14
15class AliITSv1 : public AliITS {
593d2ea1 16
17private:
18 Int_t fId1N; // The number of layers for geometry version 5
19 // The name of the layers as defined in the Geant tree.
20 char **fId1Name;
fe4da5cc 21
22public:
23 AliITSv1();
24 AliITSv1(const char *name, const char *title);
1c1b73f8 25 virtual ~AliITSv1() ;
fe4da5cc 26 virtual void CreateGeometry();
27 virtual void CreateMaterials();
28 virtual void Init();
29 virtual Int_t IsVersion() const {return 1;}
2cb30c3a 30 virtual void DrawModule();
fe4da5cc 31 virtual void StepManager();
32
56d6a1ef 33 ClassDef(AliITSv1,1) //Hits manager for set:ITS version 1 cource Geometry
fe4da5cc 34};
35
36#endif