fe4da5cc |
1 | #ifndef FMDV0_H |
2 | #define FMDV0_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 and hits classes for set:FMD // |
10 | //////////////////////////////////////////////// |
11 | |
12 | #include "AliFMD.h" |
13 | |
14 | class AliFMDv0 : public AliFMD { |
15 | |
16 | public: |
17 | AliFMDv0(); |
18 | AliFMDv0(const char *name, const char *title); |
19 | virtual ~AliFMDv0() {} |
20 | virtual void CreateGeometry(); |
21 | virtual void CreateMaterials(); |
b316044f |
22 | virtual void DrawModule(); |
fe4da5cc |
23 | virtual Int_t IsVersion() const {return 0;} |
24 | |
25 | ClassDef(AliFMDv0,1) //Class for FMD version 0 |
26 | }; |
27 | |
28 | #endif |