|
|
Go to the documentation of this file.
57 class ModuleCallingContext;
58 class ModuleDescription;
60 class PathsAndConsumesOfModulesBase;
238 : indention_(iPS.getUntrackedParameter<
std::
string>(
"indention")),
239 dumpContextForLabels_(),
240 dumpNonModuleContext_(iPS.getUntrackedParameter<
bool>(
"dumpNonModuleContext")),
241 dumpPathsAndConsumes_(iPS.getUntrackedParameter<
bool>(
"dumpPathsAndConsumes")),
242 printTimestamps_(iPS.getUntrackedParameter<
bool>(
"printTimestamps")),
243 dumpEventSetupInfo_(iPS.getUntrackedParameter<
bool>(
"dumpEventSetupInfo")) {
423 ->setComment(
"Prefix characters for output. The characters are repeated to form the indentation.");
424 desc.addUntracked<std::vector<std::string>>(
"dumpContextForLabels", std::vector<std::string>{})
426 "Prints context information to cout for the module transitions associated with these modules' labels");
427 desc.addUntracked<
bool>(
"dumpNonModuleContext",
false)
428 ->setComment(
"Prints context information to cout for the transitions not associated with any module label");
429 desc.addUntracked<
bool>(
"dumpPathsAndConsumes",
false)
431 "Prints information to cout about paths, endpaths, products consumed by modules and the dependencies between "
432 "modules created by the products they consume");
433 desc.addUntracked<
bool>(
"printTimestamps",
false)->setComment(
"Prints a time stamp for every transition");
434 desc.addUntracked<
bool>(
"dumpEventSetupInfo",
false)
436 "Prints info 3 times when an event setup cache is filled, before the lock, after the lock, and after "
438 descriptions.
add(
"Tracer",
desc);
440 "This service prints each phase the framework is processing, e.g. constructing a module,running a module, etc.");
457 std::vector<std::string>
const&
paths = pathsAndConsumes.
paths();
461 out <<
"end paths:\n";
462 std::vector<std::string>
const& endpaths = pathsAndConsumes.
endPaths();
463 for (
auto const& endpath : endpaths) {
464 out <<
" " << endpath <<
"\n";
466 for (
unsigned int j = 0;
j <
paths.size(); ++
j) {
467 std::vector<ModuleDescription const*>
const& modulesOnPath = pathsAndConsumes.
modulesOnPath(
j);
468 out <<
"modules on path " <<
paths.at(
j) <<
":\n";
469 for (
auto const&
desc : modulesOnPath) {
470 out <<
" " <<
desc->moduleLabel() <<
"\n";
473 for (
unsigned int j = 0;
j < endpaths.size(); ++
j) {
474 std::vector<ModuleDescription const*>
const& modulesOnEndPath = pathsAndConsumes.
modulesOnEndPath(
j);
475 out <<
"modules on end path " << endpaths.at(
j) <<
":\n";
476 for (
auto const&
desc : modulesOnEndPath) {
477 out <<
" " <<
desc->moduleLabel() <<
"\n";
481 out <<
"All modules and modules in the current process whose products they consume:\n";
482 out <<
"(This does not include modules from previous processes or the source)\n";
484 out <<
" " << module->moduleName() <<
"/\'" << module->moduleLabel() <<
"\'";
485 unsigned int moduleID = module->id();
487 throw cms::Exception(
"TestFailure") <<
"Tracer::preBeginJob, moduleDescription returns incorrect value";
489 std::vector<ModuleDescription const*>
const& modulesWhoseProductsAreConsumedBy =
491 if (!modulesWhoseProductsAreConsumedBy.empty()) {
492 out <<
" consumes products from these modules:\n";
493 for (
auto const& producingModule : modulesWhoseProductsAreConsumedBy) {
494 out <<
" " << producingModule->moduleName() <<
"/\'" << producingModule->moduleLabel() <<
"\'\n";
500 out <<
"All modules (listed by class and label) and all their consumed products.\n";
501 out <<
"Consumed products are listed by type, label, instance, process.\n";
502 out <<
"For products not in the event, \'processBlock\', \'run\' or \'lumi\' is added to indicate the TTree they "
504 out <<
"For products that are declared with mayConsume, \'may consume\' is added.\n";
505 out <<
"For products consumed for Views, \'element type\' is added\n";
506 out <<
"For products only read from previous processes, \'skip current process\' is added\n";
508 out <<
" " << module->moduleName() <<
"/\'" << module->moduleLabel() <<
"\'";
509 std::vector<ConsumesInfo> consumesInfo = pathsAndConsumes.
consumesInfo(module->id());
510 if (!consumesInfo.empty()) {
511 out <<
" consumes:\n";
512 for (
auto const&
info : consumesInfo) {
513 out <<
" " <<
info.type() <<
" \'" <<
info.label() <<
"\' \'" <<
info.instance();
514 out <<
"\' \'" <<
info.process() <<
"\'";
520 out <<
", processBlock";
522 if (!
info.alwaysGets()) {
523 out <<
", may consume";
526 out <<
", element type";
528 if (
info.skipCurrentProcess()) {
529 out <<
", skip current process";
577 out <<
" usedFallBack = " <<
b;
585 out <<
" usedFallBack = " <<
b;
593 out <<
" usedFallBack = " <<
b;
600 out <<
" usedFallBack = " <<
b;
608 <<
desc.moduleLabel() <<
"' id = " <<
desc.id();
620 <<
desc.moduleLabel() <<
"' id = " <<
desc.id();
632 <<
desc.moduleLabel() <<
"' id = " <<
desc.id();
644 <<
desc.moduleLabel() <<
"' id = " <<
desc.id();
945 <<
"' : stream = " << sc.
streamID();
956 <<
"' : stream = " << sc.
streamID();
967 <<
"' id = " <<
desc.id();
977 <<
"' id = " <<
desc.id();
987 out <<
" starting: begin job for module with label '" <<
desc.moduleLabel() <<
"' id = " <<
desc.id();
997 out <<
" finished: begin job for module with label '" <<
desc.moduleLabel() <<
"' id = " <<
desc.id();
1007 out <<
" starting: end job for module with label '" <<
desc.moduleLabel() <<
"' id = " <<
desc.id();
1017 out <<
" finished: end job for module with label '" <<
desc.moduleLabel() <<
"' id = " <<
desc.id();
1026 unsigned int nIndents = mcc.
depth() + 4;
1027 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1030 out <<
" starting: prefetching before processing event for module: stream = " << sc.
streamID() <<
" label = '"
1041 unsigned int nIndents = mcc.
depth() + 4;
1042 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1045 out <<
" finished: prefetching before processing event for module: stream = " << sc.
streamID() <<
" label = '"
1056 unsigned int nIndents = mcc.
depth() + 4;
1057 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1060 out <<
" starting: processing event for module: stream = " << sc.
streamID() <<
" label = '"
1071 unsigned int nIndents = mcc.
depth() + 4;
1072 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1075 out <<
" finished: processing event for module: stream = " << sc.
streamID() <<
" label = '"
1086 unsigned int nIndents = mcc.
depth() + 4;
1087 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1090 out <<
" starting: processing event acquire for module: stream = " << sc.
streamID() <<
" label = '"
1097 unsigned int nIndents = mcc.
depth() + 4;
1098 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1101 out <<
" finished: processing event acquire for module: stream = " << sc.
streamID() <<
" label = '"
1108 unsigned int nIndents = mcc.
depth() + 4;
1109 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1112 out <<
" starting: delayed processing event for module: stream = " << sc.
streamID() <<
" label = '"
1123 unsigned int nIndents = mcc.
depth() + 4;
1124 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1127 out <<
" finished: delayed processing event for module: stream = " << sc.
streamID() <<
" label = '"
1138 unsigned int nIndents = mcc.
depth() + 5;
1139 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1142 out <<
" starting: event delayed read from source: stream = " << sc.
streamID() <<
" label = '"
1149 unsigned int nIndents = mcc.
depth() + 5;
1150 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1153 out <<
" finished: event delayed read from source: stream = " << sc.
streamID() <<
" label = '"
1160 unsigned int nIndents = mcc.
depth() + 3;
1161 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1164 out <<
" starting: begin run for module: stream = " << sc.
streamID() <<
" label = '"
1175 unsigned int nIndents = mcc.
depth() + 3;
1176 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1179 out <<
" finished: begin run for module: stream = " << sc.
streamID() <<
" label = '"
1190 unsigned int nIndents = mcc.
depth() + 3;
1191 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1194 out <<
" starting: end run for module: stream = " << sc.
streamID() <<
" label = '"
1205 unsigned int nIndents = mcc.
depth() + 3;
1206 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1209 out <<
" finished: end run for module: stream = " << sc.
streamID() <<
" label = '"
1220 unsigned int nIndents = mcc.
depth() + 3;
1221 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1224 out <<
" starting: begin lumi for module: stream = " << sc.
streamID() <<
" label = '"
1235 unsigned int nIndents = mcc.
depth() + 3;
1236 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1239 out <<
" finished: begin lumi for module: stream = " << sc.
streamID() <<
" label = '"
1250 unsigned int nIndents = mcc.
depth() + 3;
1251 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1254 out <<
" starting: end lumi for module: stream = " << sc.
streamID() <<
" label = '"
1265 unsigned int nIndents = mcc.
depth() + 3;
1266 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1269 out <<
" finished: end lumi for module: stream = " << sc.
streamID() <<
" label = '"
1279 unsigned int nIndents = mcc.
depth() + 3;
1280 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1293 unsigned int nIndents = mcc.
depth() + 3;
1294 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1307 unsigned int nIndents = mcc.
depth() + 3;
1308 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1321 unsigned int nIndents = mcc.
depth() + 3;
1322 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1335 unsigned int nIndents = mcc.
depth() + 3;
1336 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1349 unsigned int nIndents = mcc.
depth() + 3;
1350 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1364 unsigned int nIndents = mcc.
depth() + 3;
1365 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1379 unsigned int nIndents = mcc.
depth() + 3;
1380 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1394 unsigned int nIndents = mcc.
depth() + 3;
1395 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1409 unsigned int nIndents = mcc.
depth() + 3;
1410 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1424 unsigned int nIndents = mcc.
depth() + 3;
1425 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1439 unsigned int nIndents = mcc.
depth() + 3;
1440 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1454 unsigned int nIndents = mcc.
depth() + 3;
1455 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1469 unsigned int nIndents = mcc.
depth() + 3;
1470 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1483 unsigned int nIndents = mcc.
depth() + 3;
1484 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1497 unsigned int nIndents = mcc.
depth() + 3;
1498 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1512 unsigned int nIndents = mcc.
depth() + 3;
1513 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1527 unsigned int nIndents = mcc.
depth() + 3;
1528 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1542 unsigned int nIndents = mcc.
depth() + 3;
1543 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1557 unsigned int nIndents = mcc.
depth() + 3;
1558 for (
unsigned int i = 0;
i < nIndents; ++
i) {
1573 out <<
" starting: constructing source: " <<
desc.moduleName();
1583 out <<
" finished: constructing source: " <<
desc.moduleName();
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 watchPostModuleAccessInputProcessBlock(PostModuleAccessInputProcessBlock::slot_type const &iSlot)
void watchPostGlobalWriteRun(PostGlobalWriteRun::slot_type const &iSlot)
void watchPostBeginProcessBlock(PostBeginProcessBlock::slot_type const &iSlot)
void postStreamEndRun(StreamContext const &)
void postSourceLumi(LuminosityBlockIndex)
void watchPreModuleEndProcessBlock(PreModuleEndProcessBlock::slot_type const &iSlot)
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 watchPostModuleBeginProcessBlock(PostModuleBeginProcessBlock::slot_type const &iSlot)
void watchPreModuleEndJob(PreModuleEndJob::slot_type const &iSlot)
void watchPostGlobalEndLumi(PostGlobalEndLumi::slot_type const &iSlot)
void preGlobalBeginLumi(GlobalContext const &)
void watchPreModuleWriteProcessBlock(PreModuleWriteProcessBlock::slot_type const &iSlot)
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 watchPreModuleBeginProcessBlock(PreModuleBeginProcessBlock::slot_type const &iSlot)
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 postModuleBeginProcessBlock(GlobalContext const &, ModuleCallingContext const &)
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 preModuleBeginProcessBlock(GlobalContext const &, ModuleCallingContext const &)
void postAccessInputProcessBlock(GlobalContext const &)
void watchPreModuleGlobalBeginLumi(PreModuleGlobalBeginLumi::slot_type const &iSlot)
void preallocate(service::SystemBounds const &)
void watchPreModuleStreamEndLumi(PreModuleStreamEndLumi::slot_type const &iSlot)
void watchPostWriteProcessBlock(PostWriteProcessBlock::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)
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 watchPreAccessInputProcessBlock(PreAccessInputProcessBlock::slot_type const &iSlot)
void watchPostModuleEventDelayedGet(PostModuleEventDelayedGet::slot_type const &iSlot)
void postEndProcessBlock(GlobalContext const &)
void postGlobalWriteRun(GlobalContext 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)
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 preEndProcessBlock(GlobalContext const &)
void postCloseFile(std::string const &, bool)
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)
void preWriteProcessBlock(GlobalContext const &)
void preAccessInputProcessBlock(GlobalContext 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
Log< level::System, true > LogAbsolute
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)
void watchPreBeginProcessBlock(PreBeginProcessBlock::slot_type const &iSlot)
std::string const & pathName() const
void watchPostModuleWriteLumi(PostModuleWriteLumi::slot_type const &iSlot)
void watchPreModuleAccessInputProcessBlock(PreModuleAccessInputProcessBlock::slot_type const &iSlot)
void preModuleEndStream(StreamContext const &, ModuleCallingContext const &)
void preModuleEndProcessBlock(GlobalContext const &, ModuleCallingContext const &)
void watchPostModuleEventPrefetching(PostModuleEventPrefetching::slot_type const &iSlot)
void preModuleEventDelayedGet(StreamContext const &, ModuleCallingContext const &)
void postWriteProcessBlock(GlobalContext 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 postStreamBeginRun(StreamContext const &)
void preModuleBeginJob(ModuleDescription const &md)
void watchPostStreamBeginLumi(PostStreamBeginLumi::slot_type const &iSlot)
void watchPreGlobalBeginLumi(PreGlobalBeginLumi::slot_type const &iSlot)
void preEventReadFromSource(StreamContext const &, ModuleCallingContext const &)
void watchPreModuleBeginJob(PreModuleBeginJob::slot_type const &iSlot)
void postModuleAccessInputProcessBlock(GlobalContext const &, ModuleCallingContext const &)
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 watchPostModuleWriteProcessBlock(PostModuleWriteProcessBlock::slot_type const &iSlot)
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 preModuleAccessInputProcessBlock(GlobalContext const &, ModuleCallingContext const &)
void postModuleEventDelayedGet(StreamContext const &, ModuleCallingContext const &)
void postModuleEndProcessBlock(GlobalContext const &, ModuleCallingContext const &)
void preModuleWriteRun(GlobalContext const &, ModuleCallingContext const &)
void preModuleGlobalBeginRun(GlobalContext const &, ModuleCallingContext const &)
void watchPostModuleEndProcessBlock(PostModuleEndProcessBlock::slot_type const &iSlot)
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)
void watchPostAccessInputProcessBlock(PostAccessInputProcessBlock::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 watchPreEndProcessBlock(PreEndProcessBlock::slot_type const &iSlot)
void postModuleStreamEndLumi(StreamContext const &, ModuleCallingContext const &)
void preModuleGlobalBeginLumi(GlobalContext const &, ModuleCallingContext const &)
void postModuleEndStream(StreamContext const &, ModuleCallingContext const &)
void preModuleWriteProcessBlock(GlobalContext 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 watchPostEndProcessBlock(PostEndProcessBlock::slot_type const &iSlot)
void postBeginProcessBlock(GlobalContext const &)
void preSourceConstruction(ModuleDescription const &md)
void watchPreModuleEventDelayedGet(PreModuleEventDelayedGet::slot_type const &iSlot)
void watchPostSourceConstruction(PostSourceConstruction::slot_type const &iSlot)
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 postModuleWriteProcessBlock(GlobalContext const &, ModuleCallingContext const &)
void postGlobalBeginLumi(GlobalContext const &)
void watchPreWriteProcessBlock(PreWriteProcessBlock::slot_type const &iSlot)
void preBeginProcessBlock(GlobalContext const &)
void preModuleWriteLumi(GlobalContext const &, ModuleCallingContext const &)
void preGlobalWriteLumi(GlobalContext const &)
PreGlobalEarlyTermination preGlobalEarlyTerminationSignal_
void preModuleGlobalEndLumi(GlobalContext const &, ModuleCallingContext const &)