Line data Source code
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 26 : virtual ~AliFRAME() {}
21 0 : virtual void Init() {}
22 : virtual Int_t IsVersion() const =0;
23 : protected:
24 : Int_t fRefVolumeId1; // Id of the reference volume
25 : Int_t fRefVolumeId2; // Id of the reference volume
26 20 : ClassDef(AliFRAME,2) //Class for Space Frame
27 : };
28 :
29 : #endif
30 :
31 :
32 :
|