]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSv1.h
New drawing routine from Nico and Daniela.
[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"
13
14class AliITSv1 : public AliITS {
593d2ea1 15
c9a71be1 16 public:
17 AliITSv1();
18 AliITSv1(const char *name, const char *title);
b6668dd3 19 AliITSv1(const AliITSv1 &source); // copy constructor
20 AliITSv1& operator=(const AliITSv1 &source); // assignment operator
c9a71be1 21 virtual ~AliITSv1() ;
b6668dd3 22 virtual void BuildGeometry();
23 virtual void CreateGeometry();
24 virtual void CreateMaterials();
c9a71be1 25 virtual void Init();
b6668dd3 26 virtual Int_t IsVersion() const {
27 // returns the ITS version number
28 return 1;
29 }
c9a71be1 30 virtual void DrawModule();
31 virtual void StepManager();
b6668dd3 32
33 private:
34 Int_t fId1N; // The number of layers for geometry version 5
35 // The name of the layers as defined in the Geant tree.
36
37 char **fId1Name; // They are the names of the sensitive volumes
38
39
fe4da5cc 40
c9a71be1 41 ClassDef(AliITSv1,1) //Hits manager for set:ITS version 1 cource Geometry
fe4da5cc 42};
43
44#endif