SubModuleB.cc
Go to the documentation of this file.
1 #include <sstream>
2 
3 #include "SubModuleB.h"
4 #include <utl/ErrorLogger.h>
5 
6 using namespace std;
7 using namespace utl;
8 using namespace fwk;
9 
10 using namespace SubModuleBNS;
11 
12 SubModuleB::SubModuleB(){}
13 
14 SubModuleB::~SubModuleB(){}
15 
17  //
18  //
19  INFO(" SubModuleB::Init()");
20  return eSuccess;
21 }
22 
23 VModule::ResultFlag SubModuleB::Run(evt::Event& event){
24  //
25  //
26  INFO(" SubModuleB::Run()");
27 
28  return eSuccess;
29 }
30 
31 VModule::ResultFlag SubModuleB::Finish(){
32  //
33  //
34  INFO(" SubModuleB::Finish()");
35  return eSuccess;
36 }
#define INFO(message)
Macro for logging informational messages.
Definition: ErrorLogger.h:161
void Init()
Initialise the registry.
ResultFlag
Flag returned by module methods to the RunController.
Definition: VModule.h:60

, generated on Tue Sep 26 2023.