]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSv1.h
Release version of ITS code
[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 {
e8189707 27 // returns the ITS version number
28 return 1;
29 }
c9a71be1 30 virtual void DrawModule();
31 virtual void StepManager();
b6668dd3 32
c9a71be1 33 ClassDef(AliITSv1,1) //Hits manager for set:ITS version 1 cource Geometry
fe4da5cc 34};
35
36#endif