]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSvPPRsymm.h
Major upgrade of AliRoot code
[u/mrichter/AliRoot.git] / ITS / AliITSvPPRsymm.h
CommitLineData
db915fea 1#ifndef ALIITSVPPRSYMM_H
2#define ALIITSVPPRSYMM_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8/////////////////////////////////////////////////////////
9// Manager and hits classes for set: ITS version 7 //
10/////////////////////////////////////////////////////////
11
12#include "AliITS.h"
13
14class AliITSvPPRsymm : public AliITS {
15
16 public:
17 AliITSvPPRsymm();
18 AliITSvPPRsymm(const char *name, const char *title);
19 AliITSvPPRsymm(const AliITSvPPRsymm &source); // copy constructor
20 AliITSvPPRsymm& operator=(const AliITSvPPRsymm &source); // assignment operator
21 virtual ~AliITSvPPRsymm() ;
22 virtual void BuildGeometry();
23 virtual void CreateGeometry();
24 virtual void CreateMaterials();
25 virtual void Init();
26 virtual Int_t IsVersion() const {
27 // returns the ITS version number
28 return 9;
29 }
30 virtual void DrawModule();
31 virtual void StepManager();
32
33 ClassDef(AliITSvPPRsymm,1) //Hits manager for set:ITS version 9
34 // PPR detailed Geometry symmetric
35};
36
37#endif