]>
Commit | Line | Data |
---|---|---|
b3f8c96f | 1 | #ifndef ALISHILV0_H |
2 | #define ALISHILV0_H | |
6523e275 | 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 class for Module: SHIL // | |
10 | //////////////////////////////////////////////// | |
11 | ||
12 | #include "AliSHIL.h" | |
13 | ||
14 | ||
15 | class AliSHILv0 : public AliSHIL { | |
16 | ||
17 | public: | |
18 | AliSHILv0(); | |
19 | AliSHILv0(const char *name, const char *title); | |
20 | virtual ~AliSHILv0() {} | |
21 | virtual void CreateGeometry(); | |
22 | virtual void Init(); | |
23 | virtual Int_t IsVersion() const {return 0;} | |
b3f8c96f | 24 | virtual void SetPbCone(Bool_t flag=kTRUE) {fPbCone=flag;} |
25 | ||
26 | protected: | |
eeacf08b | 27 | Bool_t fPbCone; // flag for the Pb cone |
b3f8c96f | 28 | |
6523e275 | 29 | ClassDef(AliSHILv0,1) // Muon Shield Class (Open Geometry) |
b3f8c96f | 30 | |
6523e275 | 31 | }; |
32 | ||
33 | #endif |