Line data Source code
1 : #ifndef ALIPIPEV0_H
2 : #define ALIPIPEV0_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 class for detector: PIPE version 0 //
10 : /////////////////////////////////////////////////////////
11 :
12 : #include "AliPIPE.h"
13 :
14 : class AliPIPEv0 : public AliPIPE {
15 :
16 : public:
17 : enum constants {kC=6, kAlu=9, kInox=19, kGetter=20, kBe=5, kVac=16,
18 : kAir=15, kAlBe=21, kPA = 22, kAirHigh = 35};
19 :
20 : AliPIPEv0();
21 : AliPIPEv0(const char *name, const char *title);
22 0 : virtual ~AliPIPEv0() {}
23 : virtual void CreateGeometry();
24 : virtual void CreateMaterials();
25 0 : virtual void SetPipeMaterial(Int_t mat = kBe) {fPipeMaterial = mat;}
26 0 : virtual Int_t IsVersion() const {return 0;}
27 : protected:
28 : Int_t fPipeMaterial; // Pipe material (Al, Be, or Inox)
29 :
30 12 : ClassDef(AliPIPEv0,2) //Class for PIPE version 0
31 : };
32 :
33 : #endif
|