fe4da5cc |
1 | #ifndef ABSO_H |
2 | #define ABSO_H |
3 | //////////////////////////////////////////////// |
4 | // Manager class for detector: ABSO // |
5 | //////////////////////////////////////////////// |
6 | |
b8032157 |
7 | #include "AliModule.h" |
fe4da5cc |
8 | |
9 | |
b8032157 |
10 | class AliABSO : public AliModule { |
fe4da5cc |
11 | |
12 | public: |
13 | AliABSO(); |
14 | AliABSO(const char *name, const char *title); |
15 | virtual ~AliABSO() {} |
fe4da5cc |
16 | virtual void CreateGeometry(); |
17 | virtual void CreateMaterials(); |
18 | virtual void Init(); |
19 | virtual Int_t IsVersion() const {return 0;} |
b8032157 |
20 | virtual void DrawModule(); |
fe4da5cc |
21 | |
22 | |
23 | ClassDef(AliABSO,1) // Muon Absorber Class |
24 | }; |
25 | |
26 | #endif |