]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STRUCT/AliFRAME.h
Using detector quality flag (taken from ALICE logbook) to decide whether to rpodcue...
[u/mrichter/AliRoot.git] / STRUCT / AliFRAME.h
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 fRefVolumeId1;    // Id of the reference volume
25   Int_t fRefVolumeId2;    // Id of the reference volume
26    ClassDef(AliFRAME,2)  //Class for Space Frame
27 };
28
29 #endif
30
31
32