Diana Software
MTestUnroll.hh
Go to the documentation of this file.
1 #ifndef _M_TESTUNROLL_HH_
2 #define _M_TESTUNROLL_HH_
3 
39 #include "QModule.hh"
40 
41 class MTestUnroll : public Diana::QModule {
42 
43  public:
44 
46  void Init(Diana::QEvent& ev);
47 
49  void Do(Diana::QEvent& ev, const Diana::QEventList& neighbours);
50 
52  void Done();
53  private:
54 
55  unsigned long long fTestOK;
56  unsigned long long fTestKO;
57  unsigned long long fCallNumber;
58 
59 };
60 
61 #endif
62 
one-line description of your module
Definition: MTestUnroll.hh:41
unsigned long long fCallNumber
Definition: MTestUnroll.hh:57
void Init(Diana::QEvent &ev)
Init method.
Definition: MTestUnroll.cc:21
unsigned long long fTestOK
Definition: MTestUnroll.hh:55
void Done()
Done method.
Definition: MTestUnroll.cc:66
void Do(Diana::QEvent &ev, const Diana::QEventList &neighbours)
Do method.
Definition: MTestUnroll.cc:29
unsigned long long fTestKO
Definition: MTestUnroll.hh:56