13 firstRun_(pset.getUntrackedParameter<unsigned int>(
"firstRun", 1U)),
14 firstLumi_(pset.getUntrackedParameter<unsigned int>(
"firstLuminosityBlock", 0U)),
15 firstEvent_(pset.existsAs<unsigned int>(
"firstEvent",
false) ? pset.getUntrackedParameter<unsigned int>(
"firstEvent") :
16 pset.getUntrackedParameter<unsigned long long>(
"firstEvent", 1U)),
19 whichEventsToSkip_(pset.getUntrackedParameter<std::vector<
EventRange> >(
"eventsToSkip",std::vector<
EventRange>())),
20 whichEventsToProcess_(pset.getUntrackedParameter<std::vector<
EventRange> >(
"eventsToProcess",std::vector<
EventRange>())),
21 skippingLumis_(!(whichLumisToSkip_.
empty() && whichLumisToProcess_.
empty())),
22 skippingEvents_(!(whichEventsToSkip_.
empty() && whichEventsToProcess_.
empty())),
23 somethingToSkip_(skippingLumis_ || skippingEvents_ || !(firstRun_ <= 1U && firstLumi_ <= 1U && firstEvent_ <= 1U)) {
33 std::auto_ptr<EventSkipperByID>
36 if (!evSkp->somethingToSkip()) {
48 if(run == 0U) run = 1U;
115 ->setComment(
"Skip any run with run number < 'firstRun'.");
116 desc.
addUntracked<
unsigned int>(
"firstLuminosityBlock", 0U)
117 ->setComment(
"Skip any lumi in run 'firstRun' with lumi number < 'firstLuminosityBlock'.");
121 ->
setComment(
"'firstEvent' is an XOR group because it can have type uint32 or uint64, default:1\n"
122 "If 'firstLuminosityBlock' == 0, skip any event in run 'firstRun' with event number < 'firstEvent'.\n"
123 "If 'firstLuminosityBlock' != 0, skip any event in lumi 'firstRun:firstLuminosityBlock' with event number < 'firstEvent'.");
125 std::vector<LuminosityBlockRange> defaultLumis;
126 desc.
addUntracked<std::vector<LuminosityBlockRange> >(
"lumisToSkip", defaultLumis)
127 ->setComment(
"Skip any lumi inside the specified run:lumi range. In python do 'help(cms.LuminosityBlockRange)' for documentation.");
128 desc.
addUntracked<std::vector<LuminosityBlockRange> >(
"lumisToProcess", defaultLumis)
129 ->setComment(
"If not empty, skip any lumi outside the specified run:lumi range. In python do 'help(cms.LuminosityBlockRange)' for documentation.");
131 std::vector<EventRange> defaultEvents;
132 desc.
addUntracked<std::vector<EventRange> >(
"eventsToSkip", defaultEvents)
133 ->setComment(
"Skip any event inside the specified run:event or run:lumi:event range. In python do 'help(cms.EventRange)' for documentation.");
134 desc.
addUntracked<std::vector<EventRange> >(
"eventsToProcess", defaultEvents)
135 ->setComment(
"If not empty, skip any event outside the specified run:event or run:lumi:event range. In python do 'help(cms.EventRange)' for documentation.");
void setComment(std::string const &value)
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
bool skippingLumis() const
unsigned long long EventNumber_t
ParameterDescriptionNode * addNode(ParameterDescriptionNode const &node)
bool skipIt(RunNumber_t run, LuminosityBlockNumber_t lumi, EventNumber_t event) const
LuminosityBlockNumber_t firstLumi_
unsigned int LuminosityBlockNumber_t
bool skippingEvents() const
std::vector< LuminosityBlockRange > whichLumisToSkip_
std::vector< EventRange > whichEventsToProcess_
bool lessThanSpecial(EventRange const &lh, EventRange const &rh)
std::vector< LuminosityBlockRange > whichLumisToProcess_
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
std::vector< EventRange > whichEventsToSkip_
EventNumber_t firstEvent_
static void fillDescription(ParameterSetDescription &desc)
< trclass="colgroup">< tdclass="colgroup"colspan=5 > DT local reconstruction</td ></tr >< tr >< td >< ahref="classDTRecHit1DPair.html"> DTRecHit1DPair</a ></td >< td >< ahref="DataFormats_DTRecHit.html"> edm::RangeMap & lt
std::vector< EventRange > & sortAndRemoveOverlaps(std::vector< EventRange > &eventRange)
bool binary_search_all(ForwardSequence const &s, Datum const &d)
wrappers for std::binary_search
bool lessThan(EventRange const &lh, EventRange const &rh)
volatile std::atomic< bool > shutdown_flag false
static std::auto_ptr< EventSkipperByID > create(ParameterSet const &pset)
EventSkipperByID(ParameterSet const &pset)