File indexing completed on 2023-10-25 09:46:55
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #include "FWCore/Framework/src/one/implementorsMethods.h"
0017 #include "FWCore/Framework/interface/one/OutputModule.h"
0018
0019 namespace edm {
0020
0021 class ModuleCallingContext;
0022
0023 namespace one {
0024 namespace impl {
0025 template class SharedResourcesUser<edm::one::OutputModuleBase>;
0026 }
0027 namespace outputmodule {
0028 void RunWatcher::doBeginRun_(RunForOutput const& r) { beginRun(r); }
0029 void RunWatcher::doEndRun_(RunForOutput const& r) { endRun(r); }
0030
0031 void LuminosityBlockWatcher::doBeginLuminosityBlock_(LuminosityBlockForOutput const& lb) {
0032 beginLuminosityBlock(lb);
0033 }
0034 void LuminosityBlockWatcher::doEndLuminosityBlock_(LuminosityBlockForOutput const& lb) { endLuminosityBlock(lb); }
0035 void InputFileWatcher::doRespondToOpenInputFile_(FileBlock const& iB) { respondToOpenInputFile(iB); }
0036 void InputFileWatcher::doRespondToCloseInputFile_(FileBlock const& iB) { respondToCloseInputFile(iB); }
0037 }
0038 }
0039 }