AMSDST
myRichRingBase.h
Go to the documentation of this file.
1 // Authors: D.D'Urso - INFN di Perugia
2 #ifndef myRichRingBase_h
3 #define myRichRingBase_h
4 
5 #include "myObject.h"
6 
7 class myRichRingBase: public myObject {
8  public:
13 
14  UInt_t Status;
15  Float_t Beta;
16  Float_t Theta;
17 
18  public:
19  virtual void Clear(Option_t* option="")=0;
20  private:
21  virtual void init()=0;
22 
23  public:
25 };
26 
27 
28 #endif