SubModuleA.h
Go to the documentation of this file.
1 #ifndef _SubModuleA_h_
2 #define _SubModuleA_h_
3 
4 #include <fwk/VModule.h>
5 #include <evt/Event.h>
6 
7 namespace SubModuleANS{ // you should assign your module to a namespace
8 
18  class SubModuleA : public fwk::VModule{
19 
20  public:
21 
22  SubModuleA();
23  virtual ~SubModuleA();
24 
28 
29 
30  private :
31 
32  REGISTER_MODULE("SubModuleA",SubModuleA) ;
33  };
34 
35 } // SubModuleANS 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: SubModuleA.h:18
fwk::VModule::ResultFlag Finish()
Finish: invoked at end of the run (NOT end of the event)
Definition: SubModuleA.cc:34
fwk::VModule::ResultFlag Run(evt::Event &event)
Run: invoked once per event.
Definition: SubModuleA.cc:26
fwk::VModule::ResultFlag Init()
Initialize: invoked at beginning of run (NOT beginning of event)
Definition: SubModuleA.cc:19
Module interface.
Definition: VModule.h:53
ResultFlag
Flag returned by module methods to the RunController.
Definition: VModule.h:60
REGISTER_MODULE("SubModuleA", SubModuleA)

, generated on Tue Sep 26 2023.