DummyContinueModule.cc
Go to the documentation of this file.
1 #include <DummyContinueModule.h>
2 #include <iostream>
3 
4 using namespace std;
5 
6 
8 {
9 }
10 
11 
13 {
14 }
15 
16 
19 {
20  cout << "DummyContinueModule: Init" << endl;
21  return VModule::eSuccess;
22 }
23 
24 
27 {
28  cout << "DummyContinueModule: Run" << endl;
29  return VModule::eContinueLoop;
30 }
31 
32 
34 {
35  cout << "DummyContinueModule: Finish" << endl;
36  return VModule::eSuccess;
37 }
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)
VModule::ResultFlag Run(evt::Event &event)
Run: invoked once per event.
ResultFlag
Flag returned by module methods to the RunController.
Definition: VModule.h:60

, generated on Tue Sep 26 2023.