SubModuleB.h
Go to the documentation of this file.
1 #ifndef _SubModuleB_h_
2 #define _SubModuleB_h_
3 
4 #include <fwk/VModule.h>
5 #include <evt/Event.h>
6 
7 namespace SubModuleBNS{ // you should assign your module to a namespace
8 
18  class SubModuleB : public fwk::VModule{
19 
20  public:
21 
22  SubModuleB();
23  virtual ~SubModuleB();
24 
28 
29 
30  private :
31 
32  REGISTER_MODULE("SubModuleB",SubModuleB) ;
33  };
34 
35 } // SubModuleBNS namespace
36 
37 #endif
38 
39 // Configure (x)emacs for this file ...
40 // Local Variables:
41 // mode:c++
42 // compile-command: "make -k"
43 // End:
This module is called by the SuperModule.
Definition: SubModuleB.h:18
Module interface.
Definition: VModule.h:53
fwk::VModule::ResultFlag Init()
Initialize: invoked at beginning of run (NOT beginning of event)
Definition: SubModuleB.cc:16
ResultFlag
Flag returned by module methods to the RunController.
Definition: VModule.h:60
fwk::VModule::ResultFlag Finish()
Finish: invoked at end of the run (NOT end of the event)
Definition: SubModuleB.cc:31
REGISTER_MODULE("SubModuleB", SubModuleB)
fwk::VModule::ResultFlag Run(evt::Event &event)
Run: invoked once per event.
Definition: SubModuleB.cc:23

, generated on Tue Sep 26 2023.