fe4da5cc |
1 | #ifndef ABSO_H |
2 | #define ABSO_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: ABSO // |
10 | //////////////////////////////////////////////// |
11 | |
b8032157 |
12 | #include "AliModule.h" |
fe4da5cc |
13 | |
14 | |
b8032157 |
15 | class AliABSO : public AliModule { |
fe4da5cc |
16 | |
17 | public: |
18 | AliABSO(); |
19 | AliABSO(const char *name, const char *title); |
20 | virtual ~AliABSO() {} |
fe4da5cc |
21 | virtual void CreateGeometry(); |
22 | virtual void CreateMaterials(); |
23 | virtual void Init(); |
24 | virtual Int_t IsVersion() const {return 0;} |
b8032157 |
25 | virtual void DrawModule(); |
fe4da5cc |
26 | |
27 | |
28 | ClassDef(AliABSO,1) // Muon Absorber Class |
29 | }; |
30 | |
31 | #endif |