Diana Software
MTestLight.hh
Go to the documentation of this file.
1 #ifndef _M_TESTLIGHT_HH_
2 #define _M_TESTLIGHT_HH_
3 
39 #include "QModule.hh"
40 
41 class MTestLight : public Diana::QModule {
42 
43  public:
44 
46  void Init(Diana::QEvent& ev);
47 
49  void Do(Diana::QEvent& ev);
50 
52  void Done();
53  private:
54  unsigned long long int fTestOK;
55  unsigned long long int fTestKO;
56 
57 };
58 
59 #endif
60 
one-line description of your module
Definition: MTestLight.hh:41
void Do(Diana::QEvent &ev)
Do method.
Definition: MTestLight.cc:31
unsigned long long int fTestKO
Definition: MTestLight.hh:55
unsigned long long int fTestOK
Definition: MTestLight.hh:54
void Done()
Done method.
Definition: MTestLight.cc:51
void Init(Diana::QEvent &ev)
Init method.
Definition: MTestLight.cc:24