8d7b49a7 |
1 | #ifndef ALIMUONV3_H |
2 | #define ALIMUONV3_H |
3 | /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
4 | * See cxx source for full Copyright notice */ |
5 | |
6 | ///////////////////////////////////////////////////////// |
7 | // Manager and hits classes for set:MUON version 3 // |
8 | ///////////////////////////////////////////////////////// |
9 | |
10 | #include "AliMUONv1.h" |
11 | |
12 | class AliMUONv3 : public AliMUONv1 { |
13 | public: |
14 | AliMUONv3(); |
15 | AliMUONv3(const char *name, const char *title); |
16 | virtual ~AliMUONv3() {} |
17 | virtual void StepManager(); |
18 | protected: |
19 | |
20 | private: |
21 | |
22 | ClassDef(AliMUONv3,1) // MUON Detector class Version 3 |
23 | }; |
24 | #endif |
25 | |
26 | |
27 | |
28 | |
29 | |
30 | |
31 | |