| 1 | #ifndef ALIFRAME_H |
| 2 | #define ALIFRAME_H |
| 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 detector: FRAME // |
| 10 | //////////////////////////////////////////////// |
| 11 | |
| 12 | #include "AliModule.h" |
| 13 | |
| 14 | |
| 15 | class AliFRAME : public AliModule { |
| 16 | |
| 17 | public: |
| 18 | AliFRAME(); |
| 19 | AliFRAME(const char *name, const char *title); |
| 20 | virtual ~AliFRAME() {} |
| 21 | virtual void Init() {} |
| 22 | virtual Int_t IsVersion() const =0; |
| 23 | protected: |
| 24 | Int_t fRefVolumeId; // Id of the reference volume |
| 25 | ClassDef(AliFRAME,2) //Class for Space Frame |
| 26 | }; |
| 27 | |
| 28 | #endif |
| 29 | |
| 30 | |
| 31 | |