CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTPrescaler.cc
Go to the documentation of this file.
1 //
3 // HLTPrescaler
4 // ------------
5 //
6 // 04/25/2008 Philipp Schieferdecker <philipp.schieferdecker@cern.ch>
8 
9 
19 
21 // initialize static member variables
23 
24 const unsigned int HLTPrescaler::prescaleSeed_ = 65537;
25 
27 // construction/destruction
29 
30 //_____________________________________________________________________________
32  prescaleSet_(0)
33  , prescaleFactor_(1)
34  , eventCount_(0)
35  , acceptCount_(0)
36  , offsetCount_(0)
37  , offsetPhase_(iConfig.getParameter<unsigned int>("offset"))
38  , prescaleService_(0)
39  , newLumi_(true)
40  , gtDigiTag_ (iConfig.getParameter<edm::InputTag>("L1GtReadoutRecordTag"))
41  , gtDigi1Token_ (consumes<L1GlobalTriggerReadoutRecord>(gtDigiTag_))
42  , gtDigi2Token_ (consumes<GlobalAlgBlkBxCollection>(gtDigiTag_))
43 {
46  else
47  LogDebug("NoPrescaleService")<<"PrescaleService unavailable, prescaleFactor=1!";
48 }
49 
50 //_____________________________________________________________________________
52 {
53 
54 }
55 
57 // implementation of member functions
59 
62  desc.add<unsigned int>("offset",0);
63  desc.add<edm::InputTag>("L1GtReadoutRecordTag",edm::InputTag("hltGtStage2Digis"));
64  descriptions.add("hltPrescaler", desc);
65 }
66 
67 //______________________________________________________________________________
69  edm::EventSetup const& iSetup)
70 {
71  newLumi_ = true;
72 }
73 
74 
75 //_____________________________________________________________________________
77 {
78  // during the first event of a LumiSection, read from the GT the prescale index for this
79  // LumiSection and get the corresponding prescale factor from the PrescaleService
80  if (newLumi_) {
81  newLumi_ = false;
82 
83  bool needsInit (eventCount_==0);
84 
85  if (prescaleService_) {
87  const unsigned int oldSet(prescaleSet_);
88  const unsigned int oldPrescale(prescaleFactor_);
89 
91  iEvent.getByToken(gtDigi2Token_,handle2);
92  if (handle2.isValid()) {
93  if (handle2->begin(0)!=handle2->end(0)) {
94  prescaleSet_ = static_cast<unsigned int>(handle2->begin(0)->getPreScColumn());
96  } else {
97  edm::LogWarning("HLT") << "Cannot read prescale column index from GT2 data: using default as defined by configuration or DAQ";
99  }
100  } else {
102  iEvent.getByToken(gtDigi1Token_,handle1);
103  if (handle1.isValid()) {
104  prescaleSet_ = handle1->gtFdlWord().gtPrescaleFactorIndexAlgo();
105  // gtPrescaleFactorIndexTech() is also available
106  // by construction, they should always return the same index
108  } else {
109  edm::LogWarning("HLT") << "Cannot read prescale column index from GT1 data: using default as defined by configuration or DAQ";
111  }
112  }
113 
114  if (prescaleSet_ != oldSet) {
115  edm::LogInfo("ChangedPrescale")
116  << "lumiBlockNb = " << iEvent.getLuminosityBlock().id().luminosityBlock()
117  << ", set = " << prescaleSet_ << " [" << oldSet <<"]"
118  << ", path = "<< pathName
119  << ": " << prescaleFactor_ << " [" <<oldPrescale<<"]";
120  // reset the prescale counter
121  needsInit = true;
122  }
123  }
124 
125  if (needsInit && (prescaleFactor_ != 0)) {
126  // initialize the prescale counter to the first event number multiplied by a big "seed"
128  }
129  }
130 
131  const bool result ( (prescaleFactor_ == 0) ?
132  false : ((eventCount_ + offsetCount_) % prescaleFactor_ == 0) );
133 
134  ++eventCount_;
135  if (result) ++acceptCount_;
136  return result;
137 }
138 
139 
140 //_____________________________________________________________________________
142 {
143  //since these are std::atomic, it is safe to increment them
144  // even if multiple endStreams are being called.
145  globalCache()->eventCount_ += eventCount_;
146  globalCache()->acceptCount_ += acceptCount_;
147  return;
148 }
149 
150 //_____________________________________________________________________________
152 {
153  unsigned int accept(efficiency->acceptCount_);
154  unsigned int event (efficiency->eventCount_);
155  edm::LogInfo("PrescaleSummary")
156  << accept << "/" << event
157  << " ("
158  << 100.*accept/static_cast<double>(std::max(1u,event))
159  << "% of events accepted).";
160  return;
161 }
162 
#define LogDebug(id)
LuminosityBlockID id() const
std::string const & pathName() const
Definition: PathContext.h:37
EventNumber_t event() const
Definition: EventID.h:41
virtual ~HLTPrescaler()
Definition: HLTPrescaler.cc:51
std::atomic< unsigned int > acceptCount_
Definition: HLTPrescaler.h:36
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
edm::service::PrescaleService * prescaleService_
prescale service
Definition: HLTPrescaler.h:88
virtual bool filter(edm::Event &iEvent, edm::EventSetup const &iSetup) override
Definition: HLTPrescaler.cc:76
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: HLTPrescaler.cc:60
virtual void beginLuminosityBlock(edm::LuminosityBlock const &lb, edm::EventSetup const &iSetup) override
Definition: HLTPrescaler.cc:68
bool accept(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
Definition: TopDQMHelpers.h:30
tuple result
Definition: mps_fire.py:84
static const unsigned int prescaleSeed_
&quot;seed&quot; used to initialize the prescale counter
Definition: HLTPrescaler.h:100
HLTPrescaler(edm::ParameterSet const &iConfig, const trigger::Efficiency *efficiency)
Definition: HLTPrescaler.cc:31
unsigned int acceptCount_
accept counter
Definition: HLTPrescaler.h:81
int iEvent
Definition: GenABIO.cc:230
ModuleCallingContext const * moduleCallingContext() const
Definition: Event.h:225
PathContext const * pathContext() const
unsigned int eventCount_
event counter
Definition: HLTPrescaler.h:78
bool newLumi_
check for (re)initialization of the prescale
Definition: HLTPrescaler.h:91
unsigned int prescaleSet_
l1 prescale set index
Definition: HLTPrescaler.h:72
LuminosityBlock const & getLuminosityBlock() const
Definition: Event.h:85
ParameterDescriptionBase * add(U const &iLabel, T const &value)
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
bool isValid() const
Definition: HandleBase.h:75
edm::EDGetTokenT< GlobalAlgBlkBxCollection > gtDigi2Token_
Definition: HLTPrescaler.h:96
unsigned long long uint64_t
Definition: Time.h:15
unsigned int getPrescale(std::string const &prescaledPath) const
LuminosityBlockNumber_t luminosityBlock() const
void add(std::string const &label, ParameterSetDescription const &psetDescription)
unsigned int offsetPhase_
Definition: HLTPrescaler.h:85
edm::EventID id() const
Definition: EventBase.h:59
edm::EDGetTokenT< L1GlobalTriggerReadoutRecord > gtDigi1Token_
Definition: HLTPrescaler.h:95
static void globalEndJob(const trigger::Efficiency *efficiency)
PlaceInPathContext const * placeInPathContext() const
unsigned int offsetCount_
initial offset
Definition: HLTPrescaler.h:84
unsigned int prescaleFactor_
accept one in prescaleFactor_; 0 means never to accept an event
Definition: HLTPrescaler.h:75
virtual void endStream() override
std::atomic< unsigned int > eventCount_
Definition: HLTPrescaler.h:35