#include <Schedule.h>
Definition at line 351 of file Schedule.h.
edm::UnscheduledCallProducer::UnscheduledCallProducer |
( |
| ) |
|
|
inline |
Definition at line 353 of file Schedule.h.
std::map< std::string, Worker * > labelToWorkers_
void edm::UnscheduledCallProducer::addWorker |
( |
Worker * |
aWorker | ) |
|
|
inline |
template<typename T >
void edm::UnscheduledCallProducer::runNow |
( |
typename T::MyPrincipal & |
p, |
|
|
EventSetup const & |
es |
|
) |
| |
|
inline |
Definition at line 360 of file Schedule.h.
References cms::Exception::addContext(), edm::InLumi, edm::InRun, labelToWorkers_, and AlCaHLTBitMon_ParallelJobs::p.
368 it->second->doWork<
T>(
p, es, 0, &timer);
371 std::ostringstream ost;
373 ost <<
"Calling event method";
375 else if (T::begin_ && T::branchType_ ==
InRun) {
376 ost <<
"Calling beginRun";
378 else if (T::begin_ && T::branchType_ ==
InLumi) {
379 ost <<
"Calling beginLuminosityBlock";
381 else if (!T::begin_ && T::branchType_ ==
InLumi) {
382 ost <<
"Calling endLuminosityBlock";
384 else if (!T::begin_ && T::branchType_ ==
InRun) {
385 ost <<
"Calling endRun";
389 ost <<
"Calling unknown function";
391 ost <<
" for unscheduled module " << it->second->description().moduleName()
392 <<
"/'" << it->second->description().moduleLabel() <<
"'";
395 ost <<
"Processing " <<
p.id();
void addContext(std::string const &context)
std::map< std::string, Worker * > labelToWorkers_
Implements edm::UnscheduledHandler.
Definition at line 404 of file Schedule.h.
References cms::Exception::addContext(), event(), and labelToWorkers_.
408 std::map<std::string, Worker*>::const_iterator itFound =
413 itFound->second->doWork<OccurrenceTraits<EventPrincipal, BranchActionBegin> >(
event, eventSetup, iContext, &timer);
416 std::ostringstream ost;
417 ost <<
"Calling produce method for unscheduled module "
418 << itFound->second->description().moduleName() <<
"/'"
419 << itFound->second->description().moduleLabel() <<
"'";
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
void addContext(std::string const &context)
std::map< std::string, Worker * > labelToWorkers_
std::map<std::string, Worker*> edm::UnscheduledCallProducer::labelToWorkers_ |
|
private |