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