CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TopHLTSingleLeptonDQM.h
Go to the documentation of this file.
1 #ifndef TOPSINGLELEPTONDQM
2 #define TOPSINGLELEPTONDQM
3 
4 #include <string>
5 #include <vector>
6 
10 
19 /*Originally from DQM/Physics by R. Wolf and J. Andrea*/
20 
38 namespace TopHLTSingleLepton {
39 
41  public:
44 
45  public:
47  MonitorEnsemble(const char* label, const edm::ParameterSet& cfg);
50 
52  void book(std::string directory);
54  void fill(const edm::Event& event, const edm::EventSetup& setup);
55 
56  private:
59  std::string monitorPath(const std::string& label) const { return label.substr(label.find(':')+1); };
62  std::string selectionPath(const std::string& label) const { return label.substr(0, label.find(':')); };
63 
65  void triggerBinLabels(std::string channel, const std::vector<std::string> labels);
67  void fill(const edm::Event& event, const edm::TriggerResults& triggerTable, std::string channel, const std::vector<std::string> labels) const;
68 
70  bool booked(const std::string histName) const { return hists_.find(histName.c_str())!=hists_.end(); };
72  void fill(const std::string histName, double value) const { if(booked(histName.c_str())) hists_.find(histName.c_str())->second->Fill(value); };
74  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); };
76  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); };
77 
78  private:
82  std::string label_;
84  std::vector<edm::InputTag> mets_;
87 
92  std::vector<std::string> triggerPaths_;
93 
111 
114 
119 
121  std::string jetCorrector_;
128  std::string jetSelect_;
138 
140  int logged_;
144  std::map<std::string,MonitorElement*> hists_;
145  };
146 
147  inline void
148  MonitorEnsemble::triggerBinLabels(std::string channel, const std::vector<std::string> labels)
149  {
150  for(unsigned int idx=0; idx<labels.size(); ++idx){
151  hists_[(channel+"Mon_").c_str()]->setBinLabel( idx+1, "["+monitorPath(labels[idx])+"]", 1);
152  hists_[(channel+"Eff_").c_str()]->setBinLabel( idx+1, "["+selectionPath(labels[idx])+"]|["+monitorPath(labels[idx])+"]", 1);
153  }
154  }
155 
156  inline void
157  MonitorEnsemble::fill(const edm::Event& event, const edm::TriggerResults& triggerTable, std::string channel, const std::vector<std::string> labels) const
158  {
159  for(unsigned int idx=0; idx<labels.size(); ++idx){
160  if( acceptHLT(event, triggerTable, monitorPath(labels[idx])) ){
161  fill((channel+"Mon_").c_str(), idx+0.5 );
162  // take care to fill triggerMon_ before evts is being called
163  int evts = hists_.find((channel+"Mon_").c_str())->second->getBinContent(idx+1);
164  double value = hists_.find((channel+"Eff_").c_str())->second->getBinContent(idx+1);
165  fill((channel+"Eff_").c_str(), idx+0.5, 1./evts*(acceptHLT(event, triggerTable, selectionPath(labels[idx]))-value));
166  }
167  }
168  }
169 
170 }
171 
172 #include <utility>
173 
179 
184 
210 //using TopHLTSingleLepton::MonitorEnsemble;
212 
214  public:
219  if( vertexSelect_ ) delete vertexSelect_;
220  if( beamspotSelect_ ) delete beamspotSelect_;
221  };
222 
224  virtual void analyze(const edm::Event& event, const edm::EventSetup& setup);
225 
226  private:
229  std::string objectType(const std::string& label) { return label.substr(0, label.find(':')); };
232  std::string selectionStep(const std::string& label) { return label.substr(label.find(':')+1); };
233 
234  private:
238  std::vector<std::string> triggerPaths_;
243 
248 
251  std::vector<std::string> selectionOrder_;
257  std::map<std::string, std::pair<edm::ParameterSet, TopHLTSingleLepton::MonitorEnsemble*> > selection_;
258 };
259 
260 #endif
std::map< std::string, std::pair< edm::ParameterSet, TopHLTSingleLepton::MonitorEnsemble * > > selection_
edm::InputTag electronId_
electronId label
void book(std::string directory)
book histograms in subdirectory directory
Level verbosity_
verbosity level for booking
bool acceptHLT(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
StringCutObjectSelector< reco::JetID > * jetIDSelect_
extra jetID selection on calo jets
edm::InputTag elecs_
input sources for monitoring
std::vector< edm::InputTag > mets_
considers a vector of METs
int logged_
number of logged interesting events
std::string selectionPath(const std::string &label) const
edm::InputTag vertex_
primary vertex
StringCutObjectSelector< reco::GsfElectron > * elecSelect_
extra selection on electrons
double lowerEdge_
mass window upper and lower edge
edm::InputTag btagEff_
btag discriminator labels
U second(std::pair< T, U > const &p)
std::map< std::string, MonitorElement * > hists_
histogram container
define MonitorEnsembple to be used
std::string monitorPath(const std::string &label) const
edm::InputTag triggerTable_
trigger table
StringCutObjectSelector< reco::GsfElectron > * elecIso_
extra isolation criterion on electron
std::vector< std::string > triggerPaths_
trigger paths
StringCutObjectSelector< reco::BeamSpot > * beamspotSelect_
string cut selector
edm::InputTag beamspot_
beamspot
MonitorEnsemble(const char *label, const edm::ParameterSet &cfg)
default contructor
bool booked(const std::string histName) const
check if histogram was booked
StringCutObjectSelector< reco::Muon > * muonIso_
extra isolation criterion on muon
void fill(const edm::Event &event, const edm::EventSetup &setup)
fill monitor histograms with electronId and jetCorrections
void triggerBinLabels(std::string channel, const std::vector< std::string > labels)
set configurable labels for trigger monitoring histograms
edm::InputTag jetIDLabel_
jetID as an extra selection type
std::vector< std::string > triggerPaths_
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 fill(const std::string histName, double xValue, double yValue) const
fill histogram if it had been booked before (2-dim version)
StringCutObjectSelector< reco::Vertex > * pvSelect_
extra selection on primary vertices; meant to investigate the pile-up effect
std::vector< std::string > selectionOrder_
void fill(const std::string histName, double value) const
fill histogram if it had been booked before
TopHLTSingleLeptonDQM(const edm::ParameterSet &cfg)
default constructor
std::string selectionStep(const std::string &label)
edm::InputTag triggerTable_
trigger table
StringCutObjectSelector< reco::Vertex > * vertexSelect_
string cut selector
virtual void analyze(const edm::Event &event, const edm::EventSetup &setup)
do this during the event loop
~TopHLTSingleLeptonDQM()
default destructor
std::string objectType(const std::string &label)
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")
StringCutObjectSelector< reco::Muon > * muonSelect_
extra selection on muons