AMSDST
myRichRing.h
Go to the documentation of this file.
1 // Authors: M.Duranti - INFN di Perugia
2 #ifndef myRichRing_h
3 #define myRichRing_h
4 
5 #include "myRichRingBase.h"
6 
7 class myRichRing: public myRichRingBase {
8  public:
10  myRichRing();
12  ~myRichRing();
13 
14  Bool_t IsNaF;
15  Float_t ErrorBeta;
16 
17  virtual void Clear(Option_t* option="");
18  private:
19  virtual void init();
20 
21  public:
23 };
24 
25 #ifdef _WITHGBATCH_
26 
27 class myRichRingFiller: public myRichRing
28 {
29  public:
31  myRichRingFiller();
33  ~myRichRingFiller();
34 
35  void Fill(RichRingR* _ring);
36 
37  RichRingR* ring;
38 
39  virtual void Clear(Option_t* option="");
40  private:
41  virtual void init();
42 
43  public:
44  ClassDef(myRichRingFiller,1);
45 };
46 
47 #endif //#ifdef _WITHGBATCH_
48 
49 #endif