|
|
Go to the documentation of this file.
57 class ModuleCallingContext;
58 class ModuleDescription;
60 class PathsAndConsumesOfModulesBase;
228 : indention_(iPS.getUntrackedParameter<
std::
string>(
"indention")),
229 dumpContextForLabels_(),
230 dumpNonModuleContext_(iPS.getUntrackedParameter<
bool>(
"dumpNonModuleContext")),
231 dumpPathsAndConsumes_(iPS.getUntrackedParameter<
bool>(
"dumpPathsAndConsumes")),
232 printTimestamps_(iPS.getUntrackedParameter<
bool>(
"printTimestamps")),
233 dumpEventSetupInfo_(iPS.getUntrackedParameter<
bool>(
"dumpEventSetupInfo")) {
397 ->setComment(
"Prefix characters for output. The characters are repeated to form the indentation.");
398 desc.
addUntracked<std::vector<std::string>>(
"dumpContextForLabels", std::vector<std::string>{})
400 "Prints context information to cout for the module transitions associated with these modules' labels");
402 ->setComment(
"Prints context information to cout for the transitions not associated with any module label");
405 "Prints information to cout about paths, endpaths, products consumed by modules and the dependencies between "
406 "modules created by the products they consume");
407 desc.
addUntracked<
bool>(
"printTimestamps",
false)->setComment(
"Prints a time stamp for every transition");
410 "Prints info 3 times when an event setup cache is filled, before the lock, after the lock, and after "
412 descriptions.
add(
"Tracer", desc);
414 "This service prints each phase the framework is processing, e.g. constructing a module,running a module, etc.");
431 std::vector<std::string>
const&
paths = pathsAndConsumes.
paths();
435 out <<
"end paths:\n";
436 std::vector<std::string>
const& endpaths = pathsAndConsumes.
endPaths();
437 for (
auto const& endpath : endpaths) {
438 out <<
" " << endpath <<
"\n";
440 for (
unsigned int j = 0;
j <
paths.size(); ++
j) {
441 std::vector<ModuleDescription const*>
const& modulesOnPath = pathsAndConsumes.
modulesOnPath(
j);
442 out <<
"modules on path " <<
paths.at(
j) <<
":\n";
443 for (
auto const& desc : modulesOnPath) {
444 out <<
" " << desc->moduleLabel() <<
"\n";
447 for (
unsigned int j = 0;
j < endpaths.size(); ++
j) {
448 std::vector<ModuleDescription const*>
const& modulesOnEndPath = pathsAndConsumes.
modulesOnEndPath(
j);
449 out <<
"modules on end path " << endpaths.at(
j) <<
":\n";
450 for (
auto const& desc : modulesOnEndPath) {
451 out <<
" " << desc->moduleLabel() <<
"\n";
455 out <<
"All modules and modules in the current process whose products they consume:\n";
456 out <<
"(This does not include modules from previous processes or the source)\n";
458 out <<
" " <<
module->moduleName() <<
"/\'" <<
module->moduleLabel() <<
"\'";
459 unsigned int moduleID =
module->id();
461 throw cms::Exception(
"TestFailure") <<
"Tracer::preBeginJob, moduleDescription returns incorrect value";
463 std::vector<ModuleDescription const*>
const& modulesWhoseProductsAreConsumedBy =
465 if (!modulesWhoseProductsAreConsumedBy.empty()) {
466 out <<
" consumes products from these modules:\n";
467 for (
auto const& producingModule : modulesWhoseProductsAreConsumedBy) {
468 out <<
" " << producingModule->moduleName() <<
"/\'" << producingModule->moduleLabel() <<
"\'\n";
474 out <<
"All modules (listed by class and label) and all their consumed products.\n";
475 out <<
"Consumed products are listed by type, label, instance, process.\n";
476 out <<
"For products not in the event, \'run\' or \'lumi\' is added to indicate the TTree they are from.\n";
477 out <<
"For products that are declared with mayConsume, \'may consume\' is added.\n";
478 out <<
"For products consumed for Views, \'element type\' is added\n";
479 out <<
"For products only read from previous processes, \'skip current process\' is added\n";
481 out <<
" " <<
module->moduleName() <<
"/\'" <<
module->moduleLabel() <<
"\'";
483 if (!consumesInfo.empty()) {
484 out <<
" consumes:\n";
485 for (
auto const&
info : consumesInfo) {
486 out <<
" " <<
info.type() <<
" \'" <<
info.label() <<
"\' \'" <<
info.instance();
487 out <<
"\' \'" <<
info.process() <<
"\'";
493 if (!
info.alwaysGets()) {
494 out <<
", may consume";
497 out <<
", element type";
499 if (
info.skipCurrentProcess()) {
500 out <<
", skip current process";
548 out <<
" usedFallBack = " <<
b;
556 out <<
" usedFallBack = " <<
b;
564 out <<
" usedFallBack = " <<
b;
571 out <<
" usedFallBack = " <<
b;
852 <<
"' : stream = " << sc.
streamID();
863 <<
"' : stream = " << sc.
streamID();
874 <<
"' id = " << desc.
id();
884 <<
"' id = " << desc.
id();
894 out <<
" starting: begin job for module with label '" << desc.
moduleLabel() <<
"' id = " << desc.
id();
904 out <<
" finished: begin job for module with label '" << desc.
moduleLabel() <<
"' id = " << desc.
id();
914 out <<
" starting: end job for module with label '" << desc.
moduleLabel() <<
"' id = " << desc.
id();
924 out <<
" finished: end job for module with label '" << desc.
moduleLabel() <<
"' id = " << desc.
id();
933 unsigned int nIndents = mcc.
depth() + 4;
934 for (
unsigned int i = 0;
i < nIndents; ++
i) {
937 out <<
" starting: prefetching before processing event for module: stream = " << sc.
streamID() <<
" label = '"
948 unsigned int nIndents = mcc.
depth() + 4;
949 for (
unsigned int i = 0;
i < nIndents; ++
i) {
952 out <<
" finished: prefetching before processing event for module: stream = " << sc.
streamID() <<
" label = '"
963 unsigned int nIndents = mcc.
depth() + 4;
964 for (
unsigned int i = 0;
i < nIndents; ++
i) {
967 out <<
" starting: processing event for module: stream = " << sc.
streamID() <<
" label = '"
978 unsigned int nIndents = mcc.
depth() + 4;
979 for (
unsigned int i = 0;
i < nIndents; ++
i) {
982 out <<
" finished: processing event for module: stream = " << sc.
streamID() <<
" label = '"
993 unsigned int nIndents = mcc.
depth() + 4;
994 for (
unsigned int i = 0;
i < nIndents; ++
i) {
997 out <<
" starting: processing event acquire for module: stream = " << sc.
streamID() <<
" label = '"
1004 unsigned int nIndents = mcc.
depth() + 4;
1005 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1008 out <<
" finished: processing event acquire for module: stream = " << sc.
streamID() <<
" label = '"
1015 unsigned int nIndents = mcc.
depth() + 4;
1016 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1019 out <<
" starting: delayed processing event for module: stream = " << sc.
streamID() <<
" label = '"
1030 unsigned int nIndents = mcc.
depth() + 4;
1031 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1034 out <<
" finished: delayed processing event for module: stream = " << sc.
streamID() <<
" label = '"
1045 unsigned int nIndents = mcc.
depth() + 5;
1046 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1049 out <<
" starting: event delayed read from source: stream = " << sc.
streamID() <<
" label = '"
1056 unsigned int nIndents = mcc.
depth() + 5;
1057 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1060 out <<
" finished: event delayed read from source: stream = " << sc.
streamID() <<
" label = '"
1067 unsigned int nIndents = mcc.
depth() + 3;
1068 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1071 out <<
" starting: begin run for module: stream = " << sc.
streamID() <<
" label = '"
1082 unsigned int nIndents = mcc.
depth() + 3;
1083 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1086 out <<
" finished: begin run for module: stream = " << sc.
streamID() <<
" label = '"
1097 unsigned int nIndents = mcc.
depth() + 3;
1098 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1101 out <<
" starting: end run for module: stream = " << sc.
streamID() <<
" label = '"
1112 unsigned int nIndents = mcc.
depth() + 3;
1113 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1116 out <<
" finished: end run for module: stream = " << sc.
streamID() <<
" label = '"
1127 unsigned int nIndents = mcc.
depth() + 3;
1128 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1131 out <<
" starting: begin lumi for module: stream = " << sc.
streamID() <<
" label = '"
1142 unsigned int nIndents = mcc.
depth() + 3;
1143 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1146 out <<
" finished: begin lumi for module: stream = " << sc.
streamID() <<
" label = '"
1157 unsigned int nIndents = mcc.
depth() + 3;
1158 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1161 out <<
" starting: end lumi for module: stream = " << sc.
streamID() <<
" label = '"
1172 unsigned int nIndents = mcc.
depth() + 3;
1173 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1176 out <<
" finished: end lumi for module: stream = " << sc.
streamID() <<
" label = '"
1187 unsigned int nIndents = mcc.
depth() + 3;
1188 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1202 unsigned int nIndents = mcc.
depth() + 3;
1203 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1217 unsigned int nIndents = mcc.
depth() + 3;
1218 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1232 unsigned int nIndents = mcc.
depth() + 3;
1233 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1247 unsigned int nIndents = mcc.
depth() + 3;
1248 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1262 unsigned int nIndents = mcc.
depth() + 3;
1263 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1277 unsigned int nIndents = mcc.
depth() + 3;
1278 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1292 unsigned int nIndents = mcc.
depth() + 3;
1293 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1307 unsigned int nIndents = mcc.
depth() + 3;
1308 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1322 unsigned int nIndents = mcc.
depth() + 3;
1323 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1337 unsigned int nIndents = mcc.
depth() + 3;
1338 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1352 unsigned int nIndents = mcc.
depth() + 3;
1353 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1368 out <<
" starting: constructing source: " << desc.
moduleName();
1370 out <<
"\n" << desc;
1378 out <<
" finished: constructing source: " << desc.
moduleName();
1380 out <<
"\n" << desc;
1388 out <<
"preLockEventSetupGet ";
1390 out << recordKey.
name() <<
" ";
1399 out <<
"postLockEventSetupGet ";
1401 out << recordKey.
name() <<
" ";
1410 out <<
"postEventSetupGet ";
1412 out << recordKey.
name() <<
" ";
void preStreamBeginLumi(StreamContext const &)
LuminosityBlockID const & luminosityBlockID() const
void postModuleEndJob(ModuleDescription const &md)
void watchPreModuleEndStream(PreModuleEndStream::slot_type const &iSlot)
void watchPreModuleBeginStream(PreModuleBeginStream::slot_type const &iSlot)
std::string const & moduleLabel() const
void preGlobalEndLumi(GlobalContext const &)
void watchPostStreamEndLumi(PostStreamEndLumi::slot_type const &iSlot)
void watchPostModuleGlobalEndRun(PostModuleGlobalEndRun::slot_type const &iSlot)
void postStreamBeginLumi(StreamContext const &)
void postModuleBeginStream(StreamContext const &, ModuleCallingContext const &)
void watchPostGlobalWriteRun(PostGlobalWriteRun::slot_type const &iSlot)
void postStreamEndRun(StreamContext const &)
void postSourceLumi(LuminosityBlockIndex)
void postModuleBeginJob(ModuleDescription const &md)
void preModuleStreamEndRun(StreamContext const &, ModuleCallingContext const &)
void watchPostSourceRun(PostSourceRun::slot_type const &iSlot)
void postEvent(StreamContext const &)
void watchPreSourceLumi(PreSourceLumi::slot_type const &iSlot)
void watchPostGlobalEndRun(PostGlobalEndRun::slot_type const &iSlot)
void postModuleStreamBeginRun(StreamContext const &, ModuleCallingContext const &)
void watchPostEventReadFromSource(PostEventReadFromSource::slot_type const &iSlot)
void preBeginJob(PathsAndConsumesOfModulesBase const &, ProcessContext const &)
void watchPostModuleStreamBeginLumi(PostModuleStreamBeginLumi::slot_type const &iSlot)
void postGlobalEndLumi(GlobalContext const &)
void preModuleEventAcquire(StreamContext const &, ModuleCallingContext const &)
void postModuleGlobalEndRun(GlobalContext const &, ModuleCallingContext const &)
void postSourceConstruction(ModuleDescription const &md)
void postStreamEndLumi(StreamContext const &)
void postModuleStreamEndRun(StreamContext const &, ModuleCallingContext const &)
void preStreamBeginRun(StreamContext const &)
void watchPostGlobalWriteLumi(PostGlobalEndLumi::slot_type const &iSlot)
void preCloseFile(std::string const &lfn, bool primary)
void preOpenFile(std::string const &, bool)
void watchPreModuleEndJob(PreModuleEndJob::slot_type const &iSlot)
void watchPostGlobalEndLumi(PostGlobalEndLumi::slot_type const &iSlot)
void preGlobalBeginLumi(GlobalContext const &)
std::string const & moduleName() const
PreSourceEarlyTermination preSourceEarlyTerminationSignal_
#define DEFINE_FWK_SERVICE(type)
void postEventReadFromSource(StreamContext const &, ModuleCallingContext const &)
void preStreamEndLumi(StreamContext const &)
void watchPostOpenFile(PostOpenFile::slot_type const &iSlot)
void postSourceRun(RunIndex)
void watchPreModuleWriteRun(PreModuleWriteRun::slot_type const &iSlot)
void watchPostModuleGlobalBeginRun(PostModuleGlobalBeginRun::slot_type const &iSlot)
void preSourceEvent(StreamID)
T getUntrackedParameter(std::string const &, T const &) const
TimeValue_t value() const
void watchPostModuleStreamEndRun(PostModuleStreamEndRun::slot_type const &iSlot)
ModuleDescription const * moduleDescription() const
void watchPreModuleStreamBeginRun(PreModuleStreamBeginRun::slot_type const &iSlot)
void preModuleStreamBeginRun(StreamContext const &, ModuleCallingContext const &)
void postModuleGlobalBeginLumi(GlobalContext const &, ModuleCallingContext const &)
void watchPreStreamBeginRun(PreStreamBeginRun::slot_type const &iSlot)
void postModuleEventAcquire(StreamContext const &, ModuleCallingContext const &)
LuminosityBlockNumber_t luminosityBlock() const
void watchPostEventSetupGet(PostEventSetupGet::slot_type const &iSlot)
void watchPreGlobalWriteLumi(PreGlobalWriteLumi::slot_type const &iSlot)
void prePathEvent(StreamContext const &, PathContext const &)
unsigned int maxNumberOfConcurrentLuminosityBlocks() const
void postModuleEventPrefetching(StreamContext const &, ModuleCallingContext const &)
void postModuleGlobalEndLumi(GlobalContext const &, ModuleCallingContext const &)
void watchPostModuleBeginStream(PostModuleBeginStream::slot_type const &iSlot)
void watchPreModuleWriteLumi(PreModuleWriteLumi::slot_type const &iSlot)
Tracer(const ParameterSet &, ActivityRegistry &)
std::vector< ConsumesInfo > consumesInfo(unsigned int moduleID) const
void watchPostSourceEvent(PostSourceEvent::slot_type const &iSlot)
bool dumpPathsAndConsumes_
void watchPreCloseFile(PreCloseFile::slot_type const &iSlot)
void watchPostModuleEndJob(PostModuleEndJob::slot_type const &iSlot)
void watchPostCloseFile(PostCloseFile::slot_type const &iSlot)
void watchPreModuleGlobalBeginLumi(PreModuleGlobalBeginLumi::slot_type const &iSlot)
void preallocate(service::SystemBounds const &)
void watchPreModuleStreamEndLumi(PreModuleStreamEndLumi::slot_type const &iSlot)
void watchPreGlobalWriteRun(PreGlobalWriteRun::slot_type const &iSlot)
void watchPostEndJob(PostEndJob::slot_type const &iSlot)
void watchPreStreamBeginLumi(PreStreamBeginLumi::slot_type const &iSlot)
void preStreamEndRun(StreamContext const &)
void watchPreModuleEventPrefetching(PreModuleEventPrefetching::slot_type const &iSlot)
void postGlobalWriteLumi(GlobalContext const &)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
const NameTag & name() const
void watchPreBeginJob(PreBeginJob::slot_type const &iSlot)
convenience function for attaching to signal
void watchPostModuleEndStream(PostModuleEndStream::slot_type const &iSlot)
unsigned int maxNumberOfConcurrentRuns() const
void watchPostModuleEventDelayedGet(PostModuleEventDelayedGet::slot_type const &iSlot)
void postGlobalWriteRun(GlobalContext const &)
void preLockEventSetupGet(eventsetup::ComponentDescription const *, eventsetup::EventSetupRecordKey const &, eventsetup::DataKey const &)
void preModuleConstruction(ModuleDescription const &md)
void watchPreEvent(PreEvent::slot_type const &iSlot)
void watchPostStreamBeginRun(PostStreamBeginRun::slot_type const &iSlot)
void preGlobalWriteRun(GlobalContext const &)
void preModuleStreamBeginLumi(StreamContext const &, ModuleCallingContext const &)
void postOpenFile(std::string const &, bool)
void preModuleEndJob(ModuleDescription const &md)
void watchPostBeginJob(PostBeginJob::slot_type const &iSlot)
convenience function for attaching to signal
void preSourceLumi(LuminosityBlockIndex)
const char * value() const
const char * name() const
void watchPreModuleStreamBeginLumi(PreModuleStreamBeginLumi::slot_type const &iSlot)
void watchPostModuleBeginJob(PostModuleBeginJob::slot_type const &iSlot)
void watchPostModuleConstruction(PostModuleConstruction::slot_type const &iSlot)
void watchPreGlobalEndRun(PreGlobalEndRun::slot_type const &iSlot)
void watchPreEventReadFromSource(PreEventReadFromSource::slot_type const &iSlot)
void postSourceEvent(StreamID)
void watchPreSourceConstruction(PreSourceConstruction::slot_type const &iSlot)
void watchPreSourceRun(PreSourceRun::slot_type const &iSlot)
void watchPostSourceLumi(PostSourceLumi::slot_type const &iSlot)
void postCloseFile(std::string const &, bool)
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
void watchPreModuleGlobalEndLumi(PreModuleGlobalEndLumi::slot_type const &iSlot)
void watchPreModuleStreamEndRun(PreModuleStreamEndRun::slot_type const &iSlot)
void watchPostEvent(PostEvent::slot_type const &iSlot)
std::vector< std::string > const & endPaths() const
void watchPostModuleGlobalEndLumi(PostModuleGlobalEndLumi::slot_type const &iSlot)
StreamID const & streamID() const
void postGlobalBeginRun(GlobalContext const &)
void watchPreStreamEndLumi(PreStreamEndLumi::slot_type const &iSlot)
std::vector< ModuleDescription const * > const & modulesWhoseProductsAreConsumedBy(unsigned int moduleID) const
void watchPostModuleWriteRun(PostModuleWriteRun::slot_type const &iSlot)
void setComment(std::string const &value)
char const * name() const
void preEvent(StreamContext const &)
EventNumber_t event() const
void watchPreModuleConstruction(PreModuleConstruction::slot_type const &iSlot)
std::vector< ModuleDescription const * > const & modulesOnPath(unsigned int pathIndex) const
void watchPostGlobalBeginLumi(PostGlobalBeginLumi::slot_type const &iSlot)
void postGlobalEndRun(GlobalContext const &)
LuminosityBlockNumber_t luminosityBlock() const
void preGlobalBeginRun(GlobalContext const &)
unsigned int maxNumberOfStreams() const
void postModuleEvent(StreamContext const &, ModuleCallingContext const &)
void preGlobalEndRun(GlobalContext const &)
std::string const & processName() const
void watchPostPathEvent(PostPathEvent::slot_type const &iSlot)
void watchPreModuleGlobalEndRun(PreModuleGlobalEndRun::slot_type const &iSlot)
void preModuleStreamEndLumi(StreamContext const &, ModuleCallingContext const &)
void watchPostModuleStreamEndLumi(PostModuleStreamEndLumi::slot_type const &iSlot)
std::string const & pathName() const
void watchPostModuleWriteLumi(PostModuleWriteLumi::slot_type const &iSlot)
void watchPostLockEventSetupGet(PostLockEventSetupGet::slot_type const &iSlot)
void preModuleEndStream(StreamContext const &, ModuleCallingContext const &)
void watchPostModuleEventPrefetching(PostModuleEventPrefetching::slot_type const &iSlot)
void preModuleEventDelayedGet(StreamContext const &, ModuleCallingContext const &)
void postModuleStreamBeginLumi(StreamContext const &, ModuleCallingContext const &)
void watchPreGlobalEndLumi(PreGlobalEndLumi::slot_type const &iSlot)
void watchPreallocate(Preallocate::slot_type const &iSlot)
void preModuleGlobalEndRun(GlobalContext const &, ModuleCallingContext const &)
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
void postEventSetupGet(eventsetup::ComponentDescription const *, eventsetup::EventSetupRecordKey const &, eventsetup::DataKey const &)
void postStreamBeginRun(StreamContext const &)
void preModuleBeginJob(ModuleDescription const &md)
void watchPostStreamBeginLumi(PostStreamBeginLumi::slot_type const &iSlot)
void watchPreGlobalBeginLumi(PreGlobalBeginLumi::slot_type const &iSlot)
void watchPreLockEventSetupGet(PreLockEventSetupGet::slot_type const &iSlot)
void preEventReadFromSource(StreamContext const &, ModuleCallingContext const &)
void watchPreModuleBeginJob(PreModuleBeginJob::slot_type const &iSlot)
Timestamp const & timestamp() const
void watchPreOpenFile(PreOpenFile::slot_type const &iSlot)
void watchPostModuleEvent(PostModuleEvent::slot_type const &iSlot)
bool dumpNonModuleContext_
void watchPreStreamEndRun(PreStreamEndRun::slot_type const &iSlot)
void watchPreModuleGlobalBeginRun(PreModuleGlobalBeginRun::slot_type const &iSlot)
void watchPostGlobalBeginRun(PostGlobalBeginRun::slot_type const &iSlot)
std::vector< std::string > const & paths() const
void postPathEvent(StreamContext const &, PathContext const &, HLTPathStatus const &)
std::set< std::string > dumpContextForLabels_
void watchPostModuleEventAcquire(PostModuleEventAcquire::slot_type const &iSlot)
void watchPreSourceEvent(PreSourceEvent::slot_type const &iSlot)
void postModuleEventDelayedGet(StreamContext const &, ModuleCallingContext const &)
void preModuleWriteRun(GlobalContext const &, ModuleCallingContext const &)
void preModuleGlobalBeginRun(GlobalContext const &, ModuleCallingContext const &)
void postLockEventSetupGet(eventsetup::ComponentDescription const *, eventsetup::EventSetupRecordKey const &, eventsetup::DataKey const &)
std::vector< ModuleDescription const * > const & modulesOnEndPath(unsigned int endPathIndex) const
std::ostream & operator<<(std::ostream &os, SimpleMemoryCheck::SignificantEvent const &se)
void watchPostModuleGlobalBeginLumi(PostModuleGlobalBeginLumi::slot_type const &iSlot)
Timestamp const & timestamp() const
void postModuleGlobalBeginRun(GlobalContext const &, ModuleCallingContext const &)
void watchPreGlobalBeginRun(PreGlobalBeginRun::slot_type const &iSlot)
PreStreamEarlyTermination preStreamEarlyTerminationSignal_
void watchPrePathEvent(PrePathEvent::slot_type const &iSlot)
void postModuleStreamEndLumi(StreamContext const &, ModuleCallingContext const &)
void preModuleGlobalBeginLumi(GlobalContext const &, ModuleCallingContext const &)
void postModuleEndStream(StreamContext const &, ModuleCallingContext const &)
ModuleDescription const * moduleDescription(unsigned int moduleID) const
void watchPreModuleEventAcquire(PreModuleEventAcquire::slot_type const &iSlot)
std::vector< ModuleDescription const * > const & allModules() const
void preSourceConstruction(ModuleDescription const &md)
void watchPreModuleEventDelayedGet(PreModuleEventDelayedGet::slot_type const &iSlot)
void watchPostSourceConstruction(PostSourceConstruction::slot_type const &iSlot)
const TypeTag & type() const
void preModuleEventPrefetching(StreamContext const &, ModuleCallingContext const &)
void watchPostModuleStreamBeginRun(PostModuleStreamBeginRun::slot_type const &iSlot)
void postModuleConstruction(ModuleDescription const &md)
void postModuleWriteRun(GlobalContext const &, ModuleCallingContext const &)
void watchPostStreamEndRun(PostStreamEndRun::slot_type const &iSlot)
void preModuleEvent(StreamContext const &, ModuleCallingContext const &)
EventID const & eventID() const
void watchPreModuleEvent(PreModuleEvent::slot_type const &iSlot)
void preModuleBeginStream(StreamContext const &, ModuleCallingContext const &)
void preSourceRun(RunIndex)
void postModuleWriteLumi(GlobalContext const &, ModuleCallingContext const &)
void postGlobalBeginLumi(GlobalContext const &)
void preModuleWriteLumi(GlobalContext const &, ModuleCallingContext const &)
void preGlobalWriteLumi(GlobalContext const &)
PreGlobalEarlyTermination preGlobalEarlyTerminationSignal_
void preModuleGlobalEndLumi(GlobalContext const &, ModuleCallingContext const &)