DummyCheckCounterModuleValue5.cc
Go to the documentation of this file.
2 #include <DummyCounterModule.h>
3 #include <iostream>
4 
5 using namespace std;
6 
7 
9 {
10 }
11 
12 
14 {
15 }
16 
17 
20 {
21  cout << "DummyCheckCounterModuleValue5: Init" << endl;
22  return VModule::eSuccess;
23 }
24 
25 
28 {
29  cout << "DummyCheckCounterModuleValue5: Run. assert(" << DummyCounterModule::GetCounter() << "==5)" << endl;
31  return VModule::eSuccess;
32  return VModule::eFailure;
33 }
34 
35 
37 {
38  cout << "DummyCheckCounterModuleValue5: Finish" << endl;
39  return VModule::eSuccess;
40 }
VModule::ResultFlag Finish()
Finish: invoked at end of the run (NOT end of the event)
VModule::ResultFlag Init()
Initialize: invoked at beginning of run (NOT beginning of event)
ResultFlag
Flag returned by module methods to the RunController.
Definition: VModule.h:60
VModule::ResultFlag Run(evt::Event &event)
Run: invoked once per event.

, generated on Tue Sep 26 2023.