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