58 class ModuleCallingContext;
59 class ModuleDescription;
61 class PathsAndConsumesOfModulesBase;
229 using namespace edm::service;
235 TimeStamper(
bool enable) : enabled_(enable) {}
238 if (timestamp.enabled_)
250 : indention_(iPS.getUntrackedParameter<std::
string>(
"indention")),
251 dumpContextForLabels_(),
252 dumpNonModuleContext_(iPS.getUntrackedParameter<bool>(
"dumpNonModuleContext")),
253 dumpPathsAndConsumes_(iPS.getUntrackedParameter<bool>(
"dumpPathsAndConsumes")),
254 printTimestamps_(iPS.getUntrackedParameter<bool>(
"printTimestamps")),
255 dumpEventSetupInfo_(iPS.getUntrackedParameter<bool>(
"dumpEventSetupInfo")) {
446 ->setComment(
"Prefix characters for output. The characters are repeated to form the indentation.");
447 desc.
addUntracked<std::vector<std::string>>(
"dumpContextForLabels", std::vector<std::string>{})
449 "Prints context information to cout for the module transitions associated with these modules' labels");
451 ->setComment(
"Prints context information to cout for the transitions not associated with any module label");
454 "Prints information to cout about paths, endpaths, products consumed by modules and the dependencies between "
455 "modules created by the products they consume");
456 desc.
addUntracked<
bool>(
"printTimestamps",
false)->setComment(
"Prints a time stamp for every transition");
459 "Prints info 3 times when an event setup cache is filled, before the lock, after the lock, and after "
461 descriptions.
add(
"Tracer", desc);
463 "This service prints each phase the framework is processing, e.g. constructing a module,running a module, etc.");
480 std::vector<std::string>
const&
paths = pathsAndConsumes.
paths();
481 for (
auto const&
path : paths) {
482 out <<
" " <<
path <<
"\n";
484 out <<
"end paths:\n";
485 std::vector<std::string>
const& endpaths = pathsAndConsumes.
endPaths();
486 for (
auto const& endpath : endpaths) {
487 out <<
" " << endpath <<
"\n";
489 for (
unsigned int j = 0;
j < paths.size(); ++
j) {
490 std::vector<ModuleDescription const*>
const& modulesOnPath = pathsAndConsumes.
modulesOnPath(
j);
491 out <<
"modules on path " << paths.at(
j) <<
":\n";
492 for (
auto const&
desc : modulesOnPath) {
493 out <<
" " <<
desc->moduleLabel() <<
"\n";
496 for (
unsigned int j = 0;
j < endpaths.size(); ++
j) {
497 std::vector<ModuleDescription const*>
const& modulesOnEndPath = pathsAndConsumes.
modulesOnEndPath(
j);
498 out <<
"modules on end path " << endpaths.at(
j) <<
":\n";
499 for (
auto const&
desc : modulesOnEndPath) {
500 out <<
" " <<
desc->moduleLabel() <<
"\n";
504 out <<
"All modules and modules in the current process whose products they consume:\n";
505 out <<
"(This does not include modules from previous processes or the source)\n";
506 out <<
"(Exclusively considers Event products, not Run, Lumi, or ProcessBlock products)\n";
507 for (
auto const&
module : allModules) {
508 out <<
" " <<
module->moduleName() <<
"/\'" <<
module->moduleLabel() <<
"\'";
509 unsigned int moduleID =
module->id();
511 throw cms::Exception(
"TestFailure") <<
"Tracer::preBeginJob, moduleDescription returns incorrect value";
513 std::vector<ModuleDescription const*>
const& modulesWhoseProductsAreConsumedBy =
515 if (!modulesWhoseProductsAreConsumedBy.empty()) {
516 out <<
" consumes products from these modules:\n";
517 for (
auto const& producingModule : modulesWhoseProductsAreConsumedBy) {
518 out <<
" " << producingModule->moduleName() <<
"/\'" << producingModule->moduleLabel() <<
"\'\n";
524 out <<
"All modules (listed by class and label) and all their consumed products.\n";
525 out <<
"Consumed products are listed by type, label, instance, process.\n";
526 out <<
"For products not in the event, \'processBlock\', \'run\' or \'lumi\' is added to indicate the TTree they "
528 out <<
"For products that are declared with mayConsume, \'may consume\' is added.\n";
529 out <<
"For products consumed for Views, \'element type\' is added\n";
530 out <<
"For products only read from previous processes, \'skip current process\' is added\n";
531 for (
auto const*
module : allModules) {
532 out <<
" " <<
module->moduleName() <<
"/\'" <<
module->moduleLabel() <<
"\'";
534 if (!consumesInfo.empty()) {
535 out <<
" consumes:\n";
536 for (
auto const&
info : consumesInfo) {
537 out <<
" " <<
info.type() <<
" \'" <<
info.label() <<
"\' \'" <<
info.instance();
538 out <<
"\' \'" <<
info.process() <<
"\'";
544 out <<
", processBlock";
546 if (!
info.alwaysGets()) {
547 out <<
", may consume";
550 out <<
", element type";
552 if (
info.skipCurrentProcess()) {
553 out <<
", skip current process";
598 <<
" starting: source process block";
603 <<
" finished: source process block " <<
processName;
971 <<
"' : stream = " << sc.
streamID();
982 <<
"' : stream = " << sc.
streamID();
993 <<
"' id = " << desc.
id();
1003 <<
"' id = " << desc.
id();
1005 out <<
"\n" <<
desc;
1013 <<
"' id = " << desc.
id();
1015 out <<
"\n" <<
desc;
1023 <<
"' id = " << desc.
id();
1025 out <<
"\n" <<
desc;
1033 out <<
" starting: begin job for module with label '" << desc.
moduleLabel() <<
"' id = " << desc.
id();
1035 out <<
"\n" <<
desc;
1043 out <<
" finished: begin job for module with label '" << desc.
moduleLabel() <<
"' id = " << desc.
id();
1045 out <<
"\n" <<
desc;
1053 out <<
" starting: end job for module with label '" << desc.
moduleLabel() <<
"' id = " << desc.
id();
1055 out <<
"\n" <<
desc;
1063 out <<
" finished: end job for module with label '" << desc.
moduleLabel() <<
"' id = " << desc.
id();
1065 out <<
"\n" <<
desc;
1072 unsigned int nIndents = mcc.
depth() + 4;
1073 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1076 out <<
" starting: prefetching before processing event for module: stream = " << sc.
streamID() <<
" label = '"
1087 unsigned int nIndents = mcc.
depth() + 4;
1088 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1091 out <<
" finished: prefetching before processing event for module: stream = " << sc.
streamID() <<
" label = '"
1102 unsigned int nIndents = mcc.
depth() + 4;
1103 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1106 out <<
" starting: processing event for module: stream = " << sc.
streamID() <<
" label = '"
1117 unsigned int nIndents = mcc.
depth() + 4;
1118 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1121 out <<
" finished: processing event for module: stream = " << sc.
streamID() <<
" label = '"
1132 unsigned int nIndents = mcc.
depth() + 4;
1133 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1136 out <<
" starting: processing event acquire for module: stream = " << sc.
streamID() <<
" label = '"
1143 unsigned int nIndents = mcc.
depth() + 4;
1144 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1147 out <<
" finished: processing event acquire for module: stream = " << sc.
streamID() <<
" label = '"
1154 unsigned int nIndents = mcc.
depth() + 4;
1155 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1158 out <<
" starting: delayed processing event for module: stream = " << sc.
streamID() <<
" label = '"
1169 unsigned int nIndents = mcc.
depth() + 4;
1170 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1173 out <<
" finished: delayed processing event for module: stream = " << sc.
streamID() <<
" label = '"
1184 unsigned int nIndents = mcc.
depth() + 5;
1185 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1188 out <<
" starting: event delayed read from source: stream = " << sc.
streamID() <<
" label = '"
1195 unsigned int nIndents = mcc.
depth() + 5;
1196 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1199 out <<
" finished: event delayed read from source: stream = " << sc.
streamID() <<
" label = '"
1206 unsigned int nIndents = mcc.
depth() + 3;
1207 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1210 out <<
" starting: begin run for module: stream = " << sc.
streamID() <<
" label = '"
1221 unsigned int nIndents = mcc.
depth() + 3;
1222 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1225 out <<
" finished: begin run for module: stream = " << sc.
streamID() <<
" label = '"
1236 unsigned int nIndents = mcc.
depth() + 3;
1237 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1240 out <<
" starting: end run for module: stream = " << sc.
streamID() <<
" label = '"
1251 unsigned int nIndents = mcc.
depth() + 3;
1252 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1255 out <<
" finished: end run for module: stream = " << sc.
streamID() <<
" label = '"
1266 unsigned int nIndents = mcc.
depth() + 3;
1267 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1270 out <<
" starting: begin lumi for module: stream = " << sc.
streamID() <<
" label = '"
1281 unsigned int nIndents = mcc.
depth() + 3;
1282 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1285 out <<
" finished: begin lumi for module: stream = " << sc.
streamID() <<
" label = '"
1296 unsigned int nIndents = mcc.
depth() + 3;
1297 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1300 out <<
" starting: end lumi for module: stream = " << sc.
streamID() <<
" label = '"
1311 unsigned int nIndents = mcc.
depth() + 3;
1312 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1315 out <<
" finished: end lumi for module: stream = " << sc.
streamID() <<
" label = '"
1325 unsigned int nIndents = mcc.
depth() + 3;
1326 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1339 unsigned int nIndents = mcc.
depth() + 3;
1340 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1353 unsigned int nIndents = mcc.
depth() + 3;
1354 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1367 unsigned int nIndents = mcc.
depth() + 3;
1368 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1381 unsigned int nIndents = mcc.
depth() + 3;
1382 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1395 unsigned int nIndents = mcc.
depth() + 3;
1396 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1410 unsigned int nIndents = mcc.
depth() + 3;
1411 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1425 unsigned int nIndents = mcc.
depth() + 3;
1426 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1440 unsigned int nIndents = mcc.
depth() + 3;
1441 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1455 unsigned int nIndents = mcc.
depth() + 3;
1456 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1470 unsigned int nIndents = mcc.
depth() + 3;
1471 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1485 unsigned int nIndents = mcc.
depth() + 3;
1486 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1500 unsigned int nIndents = mcc.
depth() + 3;
1501 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1515 unsigned int nIndents = mcc.
depth() + 3;
1516 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1529 unsigned int nIndents = mcc.
depth() + 3;
1530 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1543 unsigned int nIndents = mcc.
depth() + 3;
1544 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1558 unsigned int nIndents = mcc.
depth() + 3;
1559 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1573 unsigned int nIndents = mcc.
depth() + 3;
1574 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1588 unsigned int nIndents = mcc.
depth() + 3;
1589 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1603 unsigned int nIndents = mcc.
depth() + 3;
1604 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1619 out <<
" starting: constructing source: " << desc.
moduleName();
1621 out <<
"\n" <<
desc;
1629 out <<
" finished: constructing source: " << desc.
moduleName();
1631 out <<
"\n" <<
desc;
1638 unsigned int nIndents = mcc.
depth() + 4;
1639 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1649 unsigned int nIndents = mcc.
depth() + 4;
1650 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1660 unsigned int nIndents = mcc.
depth() + 4;
1661 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1671 unsigned int nIndents = mcc.
depth() + 4;
1672 for (
unsigned int i = 0;
i < nIndents; ++
i) {
void watchPostModuleGlobalEndLumi(PostModuleGlobalEndLumi::slot_type const &iSlot)
void watchPostModuleConstruction(PostModuleConstruction::slot_type const &iSlot)
std::string const & pathName() const
EventNumber_t event() const
void watchPreModuleGlobalBeginRun(PreModuleGlobalBeginRun::slot_type const &iSlot)
void postEventReadFromSource(StreamContext const &, ModuleCallingContext const &)
T getUntrackedParameter(std::string const &, T const &) const
void preModuleWriteRun(GlobalContext const &, ModuleCallingContext const &)
void watchPreEvent(PreEvent::slot_type const &iSlot)
void postSourceRun(RunIndex)
void watchPreAccessInputProcessBlock(PreAccessInputProcessBlock::slot_type const &iSlot)
void postModuleDestruction(ModuleDescription const &md)
std::string const & processName() const
void preModuleDestruction(ModuleDescription const &md)
void watchPrePathEvent(PrePathEvent::slot_type const &iSlot)
void postModuleGlobalBeginRun(GlobalContext const &, ModuleCallingContext const &)
void watchPreallocate(Preallocate::slot_type const &iSlot)
void watchPostModuleEndProcessBlock(PostModuleEndProcessBlock::slot_type const &iSlot)
void postSourceProcessBlock(std::string const &)
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
void postModuleGlobalBeginLumi(GlobalContext const &, ModuleCallingContext const &)
void watchPreESModule(PreESModule::slot_type const &iSlot)
void postESModulePrefetching(eventsetup::EventSetupRecordKey const &, ESModuleCallingContext const &)
void watchPreModuleEventAcquire(PreModuleEventAcquire::slot_type const &iSlot)
void postModuleStreamEndLumi(StreamContext const &, ModuleCallingContext const &)
void postModuleEventAcquire(StreamContext const &, ModuleCallingContext const &)
void watchPostEndJob(PostEndJob::slot_type const &iSlot)
void preModuleGlobalBeginLumi(GlobalContext const &, ModuleCallingContext const &)
void postModuleConstruction(ModuleDescription const &md)
void postModuleEndStream(StreamContext const &, ModuleCallingContext const &)
std::vector< ConsumesInfo > consumesInfo(unsigned int moduleID) const
void preSourceRun(RunIndex)
void postModuleGlobalEndLumi(GlobalContext const &, ModuleCallingContext const &)
void watchPostModuleEndStream(PostModuleEndStream::slot_type const &iSlot)
void postModuleWriteLumi(GlobalContext const &, ModuleCallingContext const &)
void postModuleWriteProcessBlock(GlobalContext const &, ModuleCallingContext const &)
void watchPreModuleEvent(PreModuleEvent::slot_type const &iSlot)
void preBeginProcessBlock(GlobalContext const &)
void watchPreModuleConstruction(PreModuleConstruction::slot_type const &iSlot)
void watchPreModuleEndProcessBlock(PreModuleEndProcessBlock::slot_type const &iSlot)
void watchPreGlobalEndLumi(PreGlobalEndLumi::slot_type const &iSlot)
void watchPostEvent(PostEvent::slot_type const &iSlot)
void preallocate(service::SystemBounds const &)
LuminosityBlockID const & luminosityBlockID() const
void postStreamBeginLumi(StreamContext const &)
void watchPreStreamEndRun(PreStreamEndRun::slot_type const &iSlot)
void watchPreSourceConstruction(PreSourceConstruction::slot_type const &iSlot)
void preModuleGlobalEndLumi(GlobalContext const &, ModuleCallingContext const &)
void watchPostSourceConstruction(PostSourceConstruction::slot_type const &iSlot)
void watchPostStreamEndLumi(PostStreamEndLumi::slot_type const &iSlot)
void watchPreGlobalBeginLumi(PreGlobalBeginLumi::slot_type const &iSlot)
void preGlobalWriteRun(GlobalContext const &)
std::vector< ModuleDescription const * > const & modulesOnEndPath(unsigned int endPathIndex) const
void watchPostEndProcessBlock(PostEndProcessBlock::slot_type const &iSlot)
void watchPreEventReadFromSource(PreEventReadFromSource::slot_type const &iSlot)
void watchPreModuleDestruction(PreModuleDestruction::slot_type const &iSlot)
std::string const & moduleName() const
void watchPostPathEvent(PostPathEvent::slot_type const &iSlot)
void watchPostESModulePrefetching(PostESModulePrefetching::slot_type const &iSlot)
void watchPostModuleEvent(PostModuleEvent::slot_type const &iSlot)
void preModuleStreamBeginLumi(StreamContext const &, ModuleCallingContext const &)
void watchPostModuleGlobalBeginLumi(PostModuleGlobalBeginLumi::slot_type const &iSlot)
void watchPostModuleStreamEndLumi(PostModuleStreamEndLumi::slot_type const &iSlot)
void preGlobalEndLumi(GlobalContext const &)
void preModuleEndJob(ModuleDescription const &md)
void watchPostGlobalBeginLumi(PostGlobalBeginLumi::slot_type const &iSlot)
void watchPostModuleStreamBeginRun(PostModuleStreamBeginRun::slot_type const &iSlot)
void watchPostSourceEvent(PostSourceEvent::slot_type const &iSlot)
void watchPreModuleAccessInputProcessBlock(PreModuleAccessInputProcessBlock::slot_type const &iSlot)
void preCloseFile(std::string const &lfn)
void postCloseFile(std::string const &)
void watchPreBeginProcessBlock(PreBeginProcessBlock::slot_type const &iSlot)
void preModuleConstruction(ModuleDescription const &md)
std::vector< ModuleDescription const * > const & modulesOnPath(unsigned int pathIndex) const
void preBeginJob(PathsAndConsumesOfModulesBase const &, ProcessContext const &)
void watchPreEndProcessBlock(PreEndProcessBlock::slot_type const &iSlot)
void watchPreModuleBeginStream(PreModuleBeginStream::slot_type const &iSlot)
void postStreamEndRun(StreamContext const &)
void postGlobalEndLumi(GlobalContext const &)
void postSourceLumi(LuminosityBlockIndex)
void watchPreSourceProcessBlock(PreSourceProcessBlock::slot_type const &iSlot)
void watchPostESModule(PostESModule::slot_type const &iSlot)
LuminosityBlockNumber_t luminosityBlock() const
void postModuleBeginJob(ModuleDescription const &md)
void watchPreStreamEndLumi(PreStreamEndLumi::slot_type const &iSlot)
void postModuleStreamEndRun(StreamContext const &, ModuleCallingContext const &)
std::string const & moduleLabel() const
void watchPreModuleGlobalEndRun(PreModuleGlobalEndRun::slot_type const &iSlot)
void watchPreModuleEventPrefetching(PreModuleEventPrefetching::slot_type const &iSlot)
void watchPostModuleWriteRun(PostModuleWriteRun::slot_type const &iSlot)
std::vector< ModuleDescription const * > const & allModules() const
void watchPostModuleWriteProcessBlock(PostModuleWriteProcessBlock::slot_type const &iSlot)
void watchPostModuleWriteLumi(PostModuleWriteLumi::slot_type const &iSlot)
Timestamp const & timestamp() const
void preStreamEndLumi(StreamContext const &)
void watchPostModuleEventPrefetching(PostModuleEventPrefetching::slot_type const &iSlot)
void preEndProcessBlock(GlobalContext const &)
std::vector< std::string > const & endPaths() const
unsigned int maxNumberOfStreams() const
void preSourceProcessBlock()
void watchPreOpenFile(PreOpenFile::slot_type const &iSlot)
void watchPostGlobalBeginRun(PostGlobalBeginRun::slot_type const &iSlot)
void preAccessInputProcessBlock(GlobalContext const &)
void watchPostCloseFile(PostCloseFile::slot_type const &iSlot)
void watchPreGlobalEndRun(PreGlobalEndRun::slot_type const &iSlot)
void preESModule(eventsetup::EventSetupRecordKey const &, ESModuleCallingContext const &)
void preGlobalBeginRun(GlobalContext const &)
void watchPostBeginProcessBlock(PostBeginProcessBlock::slot_type const &iSlot)
void postModuleBeginProcessBlock(GlobalContext const &, ModuleCallingContext const &)
PreStreamEarlyTermination preStreamEarlyTerminationSignal_
PreSourceEarlyTermination preSourceEarlyTerminationSignal_
void preSourceEvent(StreamID)
void preGlobalEndRun(GlobalContext const &)
void watchPostSourceRun(PostSourceRun::slot_type const &iSlot)
void watchPostStreamBeginLumi(PostStreamBeginLumi::slot_type const &iSlot)
void preModuleStreamEndLumi(StreamContext const &, ModuleCallingContext const &)
Tracer(const ParameterSet &, ActivityRegistry &)
void preModuleStreamBeginRun(StreamContext const &, ModuleCallingContext const &)
void preESModulePrefetching(eventsetup::EventSetupRecordKey const &, ESModuleCallingContext const &)
void watchPreSourceLumi(PreSourceLumi::slot_type const &iSlot)
ModuleDescription const * moduleDescription(unsigned int moduleID) const
void prePathEvent(StreamContext const &, PathContext const &)
void postAccessInputProcessBlock(GlobalContext const &)
void watchPreModuleEventDelayedGet(PreModuleEventDelayedGet::slot_type const &iSlot)
void postModuleEventPrefetching(StreamContext const &, ModuleCallingContext const &)
edm::eventsetup::ComponentDescription const * componentDescription() const
ModuleDescription const * moduleDescription() const
const char * name() const
void postModuleStreamBeginLumi(StreamContext const &, ModuleCallingContext const &)
void postESModule(eventsetup::EventSetupRecordKey const &, ESModuleCallingContext const &)
void watchPreModuleBeginProcessBlock(PreModuleBeginProcessBlock::slot_type const &iSlot)
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
void watchPostModuleEventAcquire(PostModuleEventAcquire::slot_type const &iSlot)
void watchPostSourceProcessBlock(PostSourceProcessBlock::slot_type const &iSlot)
bool dumpPathsAndConsumes_
void watchPreModuleEndJob(PreModuleEndJob::slot_type const &iSlot)
void postGlobalWriteLumi(GlobalContext const &)
void preModuleBeginProcessBlock(GlobalContext const &, ModuleCallingContext const &)
void watchPostGlobalEndLumi(PostGlobalEndLumi::slot_type const &iSlot)
void watchPreWriteProcessBlock(PreWriteProcessBlock::slot_type const &iSlot)
void preModuleEndProcessBlock(GlobalContext const &, ModuleCallingContext const &)
void postEndProcessBlock(GlobalContext const &)
void postGlobalWriteRun(GlobalContext const &)
void watchPreSourceRun(PreSourceRun::slot_type const &iSlot)
void preModuleGlobalEndRun(GlobalContext const &, ModuleCallingContext const &)
void postStreamBeginRun(StreamContext const &)
std::ostream & operator<<(std::ostream &os, SimpleMemoryCheck::SignificantEvent const &se)
void watchPreModuleBeginJob(PreModuleBeginJob::slot_type const &iSlot)
void preStreamEndRun(StreamContext const &)
void postOpenFile(std::string const &)
void watchPostStreamEndRun(PostStreamEndRun::slot_type const &iSlot)
void preOpenFile(std::string const &)
void preEventReadFromSource(StreamContext const &, ModuleCallingContext const &)
void postModuleAccessInputProcessBlock(GlobalContext const &, ModuleCallingContext const &)
PreGlobalEarlyTermination preGlobalEarlyTerminationSignal_
void watchPreModuleGlobalBeginLumi(PreModuleGlobalBeginLumi::slot_type const &iSlot)
void watchPostModuleStreamEndRun(PostModuleStreamEndRun::slot_type const &iSlot)
void postPathEvent(StreamContext const &, PathContext const &, HLTPathStatus const &)
StreamID const & streamID() const
void watchPostModuleBeginProcessBlock(PostModuleBeginProcessBlock::slot_type const &iSlot)
void watchPreGlobalBeginRun(PreGlobalBeginRun::slot_type const &iSlot)
void watchPreModuleStreamBeginLumi(PreModuleStreamBeginLumi::slot_type const &iSlot)
void watchPreGlobalWriteLumi(PreGlobalWriteLumi::slot_type const &iSlot)
#define DEFINE_FWK_SERVICE(type)
void setComment(std::string const &value)
void preModuleAccessInputProcessBlock(GlobalContext const &, ModuleCallingContext const &)
void postModuleEventDelayedGet(StreamContext const &, ModuleCallingContext const &)
void watchPostModuleBeginStream(PostModuleBeginStream::slot_type const &iSlot)
void preSourceLumi(LuminosityBlockIndex)
void postModuleEndProcessBlock(GlobalContext const &, ModuleCallingContext const &)
void watchPostAccessInputProcessBlock(PostAccessInputProcessBlock::slot_type const &iSlot)
std::vector< ModuleDescription const * > const & modulesWhoseProductsAreConsumedBy(unsigned int moduleID, BranchType branchType=InEvent) const
unsigned int maxNumberOfConcurrentLuminosityBlocks() const
void watchPostSourceLumi(PostSourceLumi::slot_type const &iSlot)
void watchPreCloseFile(PreCloseFile::slot_type const &iSlot)
void watchPostModuleEventDelayedGet(PostModuleEventDelayedGet::slot_type const &iSlot)
void watchPostModuleGlobalEndRun(PostModuleGlobalEndRun::slot_type const &iSlot)
void watchPostGlobalWriteRun(PostGlobalWriteRun::slot_type const &iSlot)
void watchPostModuleStreamBeginLumi(PostModuleStreamBeginLumi::slot_type const &iSlot)
void postSourceEvent(StreamID)
void watchPreModuleStreamEndLumi(PreModuleStreamEndLumi::slot_type const &iSlot)
void watchPreModuleStreamBeginRun(PreModuleStreamBeginRun::slot_type const &iSlot)
void watchPostGlobalEndRun(PostGlobalEndRun::slot_type const &iSlot)
LuminosityBlockNumber_t luminosityBlock() const
void watchPreStreamBeginLumi(PreStreamBeginLumi::slot_type const &iSlot)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void watchPostOpenFile(PostOpenFile::slot_type const &iSlot)
void watchPreModuleEndStream(PreModuleEndStream::slot_type const &iSlot)
void postBeginProcessBlock(GlobalContext const &)
void preSourceConstruction(ModuleDescription const &md)
void watchPreBeginJob(PreBeginJob::slot_type const &iSlot)
convenience function for attaching to signal
void preModuleEventPrefetching(StreamContext const &, ModuleCallingContext const &)
void watchPreModuleWriteRun(PreModuleWriteRun::slot_type const &iSlot)
void postModuleWriteRun(GlobalContext const &, ModuleCallingContext const &)
void preModuleEvent(StreamContext const &, ModuleCallingContext const &)
void preModuleWriteProcessBlock(GlobalContext const &, ModuleCallingContext const &)
void preModuleBeginStream(StreamContext const &, ModuleCallingContext const &)
void watchPostStreamBeginRun(PostStreamBeginRun::slot_type const &iSlot)
void postGlobalBeginRun(GlobalContext const &)
void postGlobalEndRun(GlobalContext const &)
void postGlobalBeginLumi(GlobalContext const &)
void preGlobalWriteLumi(GlobalContext const &)
void watchPostGlobalWriteLumi(PostGlobalEndLumi::slot_type const &iSlot)
void preWriteProcessBlock(GlobalContext const &)
void watchPreStreamBeginRun(PreStreamBeginRun::slot_type const &iSlot)
void watchPostModuleAccessInputProcessBlock(PostModuleAccessInputProcessBlock::slot_type const &iSlot)
void watchPostModuleDestruction(PostModuleDestruction::slot_type const &iSlot)
std::vector< std::string > const & paths() const
void watchPreModuleStreamEndRun(PreModuleStreamEndRun::slot_type const &iSlot)
void watchPreModuleWriteProcessBlock(PreModuleWriteProcessBlock::slot_type const &iSlot)
void preEvent(StreamContext const &)
void watchPostModuleBeginJob(PostModuleBeginJob::slot_type const &iSlot)
void watchPostEventReadFromSource(PostEventReadFromSource::slot_type const &iSlot)
void watchPostModuleGlobalBeginRun(PostModuleGlobalBeginRun::slot_type const &iSlot)
void preModuleWriteLumi(GlobalContext const &, ModuleCallingContext const &)
void watchPreModuleWriteLumi(PreModuleWriteLumi::slot_type const &iSlot)
unsigned int maxNumberOfConcurrentRuns() const
void preStreamBeginLumi(StreamContext const &)
void postModuleEndJob(ModuleDescription const &md)
Log< level::System, true > LogAbsolute
void preModuleEndStream(StreamContext const &, ModuleCallingContext const &)
void postModuleEvent(StreamContext const &, ModuleCallingContext const &)
EventID const & eventID() const
void preModuleEventDelayedGet(StreamContext const &, ModuleCallingContext const &)
void watchPreSourceEvent(PreSourceEvent::slot_type const &iSlot)
void watchPreESModulePrefetching(PreESModulePrefetching::slot_type const &iSlot)
void postModuleBeginStream(StreamContext const &, ModuleCallingContext const &)
void preModuleEventAcquire(StreamContext const &, ModuleCallingContext const &)
bool dumpNonModuleContext_
void postWriteProcessBlock(GlobalContext const &)
void watchPreGlobalWriteRun(PreGlobalWriteRun::slot_type const &iSlot)
void preModuleBeginJob(ModuleDescription const &md)
void postStreamEndLumi(StreamContext const &)
void preModuleStreamEndRun(StreamContext const &, ModuleCallingContext const &)
void postEvent(StreamContext const &)
void preStreamBeginRun(StreamContext const &)
TimeValue_t value() const
void watchPostModuleEndJob(PostModuleEndJob::slot_type const &iSlot)
void postModuleStreamBeginRun(StreamContext const &, ModuleCallingContext const &)
void preGlobalBeginLumi(GlobalContext const &)
void watchPreModuleGlobalEndLumi(PreModuleGlobalEndLumi::slot_type const &iSlot)
void postModuleGlobalEndRun(GlobalContext const &, ModuleCallingContext const &)
void postSourceConstruction(ModuleDescription const &md)
std::set< std::string > dumpContextForLabels_
void preModuleGlobalBeginRun(GlobalContext const &, ModuleCallingContext const &)
void watchPostBeginJob(PostBeginJob::slot_type const &iSlot)
convenience function for attaching to signal
Timestamp const & timestamp() const
void watchPostWriteProcessBlock(PostWriteProcessBlock::slot_type const &iSlot)