b43eb0dc |
1 | #ifndef ALIPIPEV1_H |
2 | #define ALIPIPEV1_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 class for detector: PIPE // |
10 | //////////////////////////////////////////////// |
11 | |
12 | #include "AliPIPE.h" |
13 | |
14 | |
15 | class AliPIPEv1 : public AliPIPE { |
16 | |
17 | public: |
18 | AliPIPEv1(); |
19 | AliPIPEv1(const char *name, const char *title); |
20 | virtual ~AliPIPEv1() {} |
21 | virtual void CreateGeometry(); |
22 | virtual void CreateMaterials(); |
23 | virtual Int_t IsVersion() const {return 1;} |
eeacf08b |
24 | virtual void DrawModule() const; |
fe4da5cc |
25 | |
26 | ClassDef(AliPIPEv1,1) //Class for PIPE version 1 |
27 | }; |
28 | |
29 | #endif |