Inheritance diagram for ModuleB:

Public Member Functions | |
| ModuleB (const char *v) | |
| jobc::Result | Reco (edm::EventHandle &) |
| jobc::Result | Ana (const edm::EventHandle &) |
| void | Update (const cfg::Config &) |
|
|
Definition at line 33 of file testJobCModule.cc. References jobc::Module::SetCfgVersion(). 00033 : jobc::Module("ModuleB") { 00034 std::cout << "B()" << std::endl; 00035 this->SetCfgVersion(v); 00036 }
|
|
|
Reimplemented from jobc::Module. Definition at line 41 of file testJobCModule.cc. 00041 {
00042 std::cout << "BA" << std::endl;
00043 return jobc::kPassed;
00044 }
|
|
|
Reimplemented from jobc::Module. Definition at line 37 of file testJobCModule.cc. 00037 {
00038 std::cout << "BR" << std::endl;
00039 return jobc::kPassed;
00040 }
|
|
|
Implements cfg::Observer. Definition at line 45 of file testJobCModule.cc. 00045 {
00046 std::cout << "BUp" << std::endl;
00047 }
|
1.3.9.1