]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STRUCT/AliFRAME.h
New layout of the non-absorber side provided by Y. Viyogi. Not the final design
[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  
24    ClassDef(AliFRAME,1)  //Class for Space Frame
25 };
26
27 #endif
28
29
30