CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TopSingleLeptonHLTOfflineDQM.h
Go to the documentation of this file.
1 #ifndef TOPSINGLELEPTONHLTOFFLINEDQM
2 #define TOPSINGLELEPTONHLTOFFLINEDQM
3 
4 #include <string>
5 #include <vector>
6 
10 
19 
22 
24 
25 /*Originally from DQM/Physics by R. Wolf and J. Andrea*/
26 
44 namespace HLTOfflineDQMTopSingleLepton {
45 
47  public:
48 
49  public:
54 
56  void book(DQMStore::IBooker& store_);
58  void fill(const edm::Event& event, const edm::EventSetup& setup, const HLTConfigProvider& hltConfig, const std::vector<std::string> triggerPaths);
59 
60  private:
63  std::string monitorPath(const std::string& label) const { return label.substr(label.find(':')+1); };
66  std::string selectionPath(const std::string& label) const { return label.substr(0, label.find(':')); };
67 
69  void triggerBinLabels(std::string channel, const std::vector<std::string>& labels);
71  void fill(const edm::Event& event, const edm::TriggerResults& triggerTable, std::string channel, const std::vector<std::string>& labels) const;
72 
74  bool booked(const std::string histName) const { return hists_.find(histName.c_str())!=hists_.end(); };
76  void fill(const std::string histName, double value) const { if(booked(histName.c_str())) hists_.find(histName.c_str())->second->Fill(value); };
78  void fill(const std::string histName, double xValue, double yValue) const { if(booked(histName.c_str())) hists_.find(histName.c_str())->second->Fill(xValue, yValue); };
80  void fill(const std::string histName, double xValue, double yValue, double zValue) const { if(booked(histName.c_str())) hists_.find(histName.c_str())->second->Fill(xValue, yValue, zValue); };
81 
82  private:
87  std::vector< edm::EDGetTokenT< edm::View<reco::MET> > > mets_;
93 
99  std::vector<std::string> triggerPaths_;
100 
118 
121 
126 
147 
149  int logged_;
151  std::map<std::string,MonitorElement*> hists_;
152 
161  };
162 
163  inline void
164  MonitorSingleLepton::triggerBinLabels(std::string channel, const std::vector<std::string>& labels)
165  {
166  for(unsigned int idx=0; idx<labels.size(); ++idx){
167  hists_[(channel+"Mon_").c_str()]->setBinLabel( idx+1, "["+monitorPath(labels[idx])+"]", 1);
168  }
169  }
170 
171  inline void
172  MonitorSingleLepton::fill(const edm::Event& event, const edm::TriggerResults& triggerTable, std::string channel, const std::vector<std::string>& labels) const
173  {
174  for(unsigned int idx=0; idx<labels.size(); ++idx){
175  if( acceptHLT(event, triggerTable, monitorPath(labels[idx])) ){
176  fill((channel+"Mon_").c_str(), idx+0.5 );
177  }
178  }
179  }
180 
181 }
182 
183 #include <utility>
184 
190 
196 
222 //using HLTOfflineDQMTopSingleLepton::MonitorSingleLepton;
224 
226  public:
231  if( vertexSelect_ ) delete vertexSelect_;
232  if( beamspotSelect_ ) delete beamspotSelect_;
233  };
234 
236  virtual void dqmBeginRun(const edm::Run& r, const edm::EventSetup& c);
237  virtual void analyze(const edm::Event& event, const edm::EventSetup& setup);
238  void bookHistograms(DQMStore::IBooker &i, edm::Run const&, edm::EventSetup const&) override;
239 
240  private:
243  std::string objectType(const std::string& label) { return label.substr(0, label.find(':')); };
246  std::string selectionStep(const std::string& label) { return label.substr(label.find(':')+1); };
247 
248  private:
252  std::vector<std::string> triggerPaths_;
257 
262 
264 
265 
266 
269  std::vector<std::string> selectionOrder_;
275  std::map<std::string, std::pair<edm::ParameterSet, HLTOfflineDQMTopSingleLepton::MonitorSingleLepton*> > selection_;
276 
277  std::map<std::string, SelectionStepHLTBase*> selectmap_;
278 };
279 
280 #endif
int i
Definition: DBlmapReader.cc:9
define MonitorSingleLepton to be used
tuple cfg
Definition: looper.py:259
StringCutObjectSelector< reco::JetID > * jetIDSelect_
extra jetID selection on calo jets
std::map< std::string, SelectionStepHLTBase * > selectmap_
StringCutObjectSelector< reco::GsfElectron > * elecSelect_
extra selection on electrons
std::string monitorPath(const std::string &label) const
void fill(const std::string histName, double xValue, double yValue) const
fill histogram if it had been booked before (2-dim version)
virtual void analyze(const edm::Event &event, const edm::EventSetup &setup)
void bookHistograms(DQMStore::IBooker &i, edm::Run const &, edm::EventSetup const &) override
StringCutObjectSelector< reco::Vertex > * pvSelect_
extra selection on primary vertices; meant to investigate the pile-up effect
std::map< std::string, MonitorElement * > hists_
histogram container
edm::EDGetTokenT< reco::JetTagCollection > btagPur_
edm::EDGetTokenT< edm::View< reco::GsfElectron > > elecs_
input sources for monitoring
~TopSingleLeptonHLTOfflineDQM()
default destructor
std::string selectionStep(const std::string &label)
edm::EDGetTokenT< reco::JetIDValueMap > jetIDLabel_
jetID as an extra selection type
std::vector< edm::EDGetTokenT< edm::View< reco::MET > > > mets_
considers a vector of METs
void book(DQMStore::IBooker &store_)
book histograms in subdirectory directory
std::vector< std::string > selectionOrder_
MonitorSingleLepton(const char *label, const edm::ParameterSet &cfg, edm::ConsumesCollector &&iC)
default contructor
U second(std::pair< T, U > const &p)
edm::EDGetTokenT< trigger::TriggerEventWithRefs > triggerEventWithRefsTag_
edm::EDGetTokenT< edm::TriggerResults > triggerTable_
trigger table
edm::EDGetTokenT< std::vector< reco::Vertex > > vertex_
primary vertex
void fill(const edm::Event &event, const edm::EventSetup &setup, const HLTConfigProvider &hltConfig, const std::vector< std::string > triggerPaths)
fill monitor histograms with electronId and jetCorrections
StringCutObjectSelector< reco::BeamSpot > * beamspotSelect_
string cut selector
edm::EDGetTokenT< edm::View< reco::Muon > > muons_
std::map< std::string, std::pair< edm::ParameterSet, HLTOfflineDQMTopSingleLepton::MonitorSingleLepton * > > selection_
edm::EDGetTokenT< reco::JetTagCollection > btagEff_
btag discriminator labels
bool booked(const std::string histName) const
check if histogram was booked
void triggerBinLabels(std::string channel, const std::vector< std::string > &labels)
set configurable labels for trigger monitoring histograms
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
edm::EDGetTokenT< edm::View< reco::Vertex > > pvs_
std::vector< std::string > triggerPaths_
trigger paths
virtual void dqmBeginRun(const edm::Run &r, const edm::EventSetup &c)
do this during the event loop
StringCutObjectSelector< reco::Muon > * muonIso_
extra isolation criterion on muon
StringCutObjectSelector< reco::Vertex > * vertexSelect_
string cut selector
StringCutObjectSelector< reco::GsfElectron > * elecIso_
extra isolation criterion on electron
edm::EDGetTokenT< reco::BeamSpot > beamspot_
beamspot
bool acceptHLT(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
std::vector< reco::PFJetRef > VRpfjet
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
edm::EDGetTokenT< edm::View< reco::Jet > > jets_
std::string selectionPath(const std::string &label) const
void fill(const std::string histName, double value) const
fill histogram if it had been booked before
std::vector< reco::RecoChargedCandidateRef > VRmuon
std::string objectType(const std::string &label)
TopSingleLeptonHLTOfflineDQM(const edm::ParameterSet &cfg)
default constructor
edm::EDGetTokenT< edm::TriggerResults > triggerTable_
trigger table
std::vector< reco::ElectronRef > VRelectron
edm::EDGetTokenT< reco::JetTagCollection > btagVtx_
edm::EDGetTokenT< edm::ValueMap< float > > electronId_
electronId label
StringCutObjectSelector< reco::Muon > * muonSelect_
extra selection on muons
static std::string const triggerPaths
Definition: EdmProvDump.cc:41
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")
std::vector< int > Vids
Definition: Run.h:41