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

, generated on Tue Sep 26 2023.