CMS 3D CMS Logo

EgHLTOfflineClient.h
Go to the documentation of this file.
1 #ifndef DQMOFFLINE_TRIGGER_EGHLTOFFLINECLIENT
2 #define DQMOFFLINE_TRIGGER_EGHLTOFFLINECLIENT
3 
4 // -*- C++ -*-
5 //
6 // Package: EgammaHLTOfflineClient
7 // Class: EgammaHLTOffline
8 //
9 /*
10  Description: This is a DQM client meant to plot high-level HLT trigger
11  quantities as stored in the HLT results object TriggerResults for the Egamma triggers
12 
13  Notes:
14  Currently I would like to plot simple histograms of three seperate types of variables
15  1) global event quantities: eg nr of electrons
16  2) di-object quanities: transverse mass, di-electron mass
17  3) single object kinematic and id variables: eg et,eta,isolation
18 
19 */
20 //
21 // Original Author: Sam Harper
22 // Created: June 2008
23 //
24 //
25 //
26 
29 
30 #include <vector>
31 #include <string>
32 
33 class DQMStore;
34 class MonitorElement;
35 
36 
38 
39  private:
40  // DQMStore* dbe_; //dbe seems to be the standard name for this, I dont know why. We of course dont own it
42 
43  std::vector<std::string> eleHLTFilterNames_;//names of the filters monitored using electrons to make plots for
44  std::vector<std::string> eleHLTFilterNames2Leg_;
45  std::vector<std::string> eleTightLooseTrigNames_;
46  std::vector<std::string> phoHLTFilterNames_;//names of the filters monitored using photons to make plots for
47  std::vector<std::string> phoHLTFilterNames2Leg_;
48  std::vector<std::string> phoTightLooseTrigNames_;
49 
50 
51  std::vector<std::string> eleN1EffVars_;
52  std::vector<std::string> eleSingleEffVars_;
53  std::vector<std::string> eleEffTags_;
54 
55  std::vector<std::string> phoN1EffVars_;
56  std::vector<std::string> phoSingleEffVars_;
57  std::vector<std::string> phoEffTags_;
58 
59  std::vector<std::string> eleTrigTPEffVsVars_;
60  std::vector<std::string> phoTrigTPEffVsVars_;
61  std::vector<std::string> eleLooseTightTrigEffVsVars_;
62  std::vector<std::string> phoLooseTightTrigEffVsVars_;
63 
64  std::vector<std::string> eleHLTvOfflineVars_;
65  std::vector<std::string> phoHLTvOfflineVars_;
66 
70 
72  bool isSetup_;
74 
75 
76  //disabling copying/assignment (in theory this is copyable but lets not just in case)
78  EgHLTOfflineClient& operator=(const EgHLTOfflineClient& rhs){return *this;}
79 
80  public:
81  explicit EgHLTOfflineClient(const edm::ParameterSet& );
82  ~EgHLTOfflineClient() override;
83 
84 
85  // virtual void beginJob();
86  // virtual void analyze(const edm::Event&, const edm::EventSetup&); //dummy
87  // virtual void endJob();
88  void beginRun(const edm::Run& run, const edm::EventSetup& c) override;
89  // virtual void endRun(const edm::Run& run, const edm::EventSetup& c);
90 
91  // virtual void beginLuminosityBlock(const edm::LuminosityBlock& lumiSeg,const edm::EventSetup& context){}
92  // DQM Client Diagnostic
93  // virtual void endLuminosityBlock(const edm::LuminosityBlock& lumiSeg,const edm::EventSetup& c);
94  void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override; //performed in the endJob
96  edm::LuminosityBlock const &, edm::EventSetup const&) override; //performed in the endLumi
97 
98  //at somepoint these all may migrate to a helper class
99  void createN1EffHists(const std::string& filterName, const std::string& baseName,
100  const std::string& region, const std::vector<std::string>& varNames, DQMStore::IBooker &,
102 
103  void createSingleEffHists(const std::string& filterName, const std::string& baseName,
104  const std::string& region, const std::vector<std::string>& varNames, DQMStore::IBooker &,
106 
107  void createLooseTightTrigEff(const std::vector<std::string>& tightLooseTrigNames,
108  const std::string& region, const std::vector<std::string>& vsVarNames,
110 
111  void createTrigTagProbeEffHists(const std::string& filterName, const std::string& region,
112  const std::vector<std::string>& vsVarNames, const std::string& objName, DQMStore::IBooker &,
114 
115  void createTrigTagProbeEffHistsNewAlgo(const std::string& filterName, const std::string& region,
116  const std::vector<std::string>& vsVarNames, const std::string& objName, DQMStore::IBooker &,
118 
119  void createTrigTagProbeEffHists2Leg(const std::string& filterNameLeg1,
120  const std::string& filterNameLeg2, const std::string& region,
121  const std::vector<std::string>& vsVarNames, const std::string& objName, DQMStore::IBooker &,
123 
124  void createHLTvsOfflineHists(const std::string& filterName, const std::string& baseName,
125  const std::string& region, const std::vector<std::string>& varNames, DQMStore::IBooker &,
127 
129  const std::string& title, const MonitorElement* numer, const MonitorElement* denom,
131 
133  const std::string& name, const std::string& title, const MonitorElement* pass,
135 
137  const std::string& name, const std::string& title, const MonitorElement* pass,
139 
141  const std::string& name, const std::string& title, const MonitorElement* pass,
142  const MonitorElement* fail, const MonitorElement* tagtag, DQMStore::IBooker &,
144 
145  MonitorElement* makeEffMonElem2Leg(const std::string& filter, const std::string& name,
146  const std::string& title, const MonitorElement* Leg1Eff,
147  const MonitorElement* Leg2NotLeg1Source, const MonitorElement* all, DQMStore::IBooker &,
149 
150 private:
151  void runClient_(DQMStore::IBooker &, DQMStore::IGetter &); //master function which runs the client
152 
153 };
154 
155 
156 #endif
void createTrigTagProbeEffHists(const std::string &filterName, const std::string &region, const std::vector< std::string > &vsVarNames, const std::string &objName, DQMStore::IBooker &, DQMStore::IGetter &)
MonitorElement * FillHLTvsOfflineHist(const std::string &filter, const std::string &name, const std::string &title, const MonitorElement *numer, const MonitorElement *denom, DQMStore::IBooker &, DQMStore::IGetter &)
void createTrigTagProbeEffHistsNewAlgo(const std::string &filterName, const std::string &region, const std::vector< std::string > &vsVarNames, const std::string &objName, DQMStore::IBooker &, DQMStore::IGetter &)
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
std::vector< std::string > eleHLTFilterNames_
std::vector< std::string > phoHLTFilterNames2Leg_
std::vector< std::string > phoLooseTightTrigEffVsVars_
EgHLTOfflineClient(const EgHLTOfflineClient &rhs)
std::vector< std::string > phoTrigTPEffVsVars_
std::vector< std::string > eleTightLooseTrigNames_
void dqmEndLuminosityBlock(DQMStore::IBooker &, DQMStore::IGetter &, edm::LuminosityBlock const &, edm::EventSetup const &) override
std::vector< std::string > phoN1EffVars_
std::vector< std::string > eleHLTvOfflineVars_
std::vector< std::string > eleTrigTPEffVsVars_
void createSingleEffHists(const std::string &filterName, const std::string &baseName, const std::string &region, const std::vector< std::string > &varNames, DQMStore::IBooker &, DQMStore::IGetter &)
void createLooseTightTrigEff(const std::vector< std::string > &tightLooseTrigNames, const std::string &region, const std::vector< std::string > &vsVarNames, const std::string &objName, DQMStore::IBooker &, DQMStore::IGetter &)
EgHLTOfflineClient & operator=(const EgHLTOfflineClient &rhs)
std::vector< std::string > phoEffTags_
std::vector< std::string > phoSingleEffVars_
void createHLTvsOfflineHists(const std::string &filterName, const std::string &baseName, const std::string &region, const std::vector< std::string > &varNames, DQMStore::IBooker &, DQMStore::IGetter &)
char const * varNames[]
MonitorElement * makeEffMonElem2Leg(const std::string &filter, const std::string &name, const std::string &title, const MonitorElement *Leg1Eff, const MonitorElement *Leg2NotLeg1Source, const MonitorElement *all, DQMStore::IBooker &, DQMStore::IGetter &)
MonitorElement * makeEffMonElemFromPassAndAll(const std::string &filterName, const std::string &name, const std::string &title, const MonitorElement *pass, const MonitorElement *all, DQMStore::IBooker &, DQMStore::IGetter &)
void runClient_(DQMStore::IBooker &, DQMStore::IGetter &)
void createTrigTagProbeEffHists2Leg(const std::string &filterNameLeg1, const std::string &filterNameLeg2, const std::string &region, const std::vector< std::string > &vsVarNames, const std::string &objName, DQMStore::IBooker &, DQMStore::IGetter &)
std::vector< std::string > eleN1EffVars_
std::vector< std::string > phoTightLooseTrigNames_
std::vector< std::string > phoHLTvOfflineVars_
MonitorElement * makeEffMonElemFromPassAndFail(const std::string &filterName, const std::string &name, const std::string &title, const MonitorElement *pass, const MonitorElement *fail, DQMStore::IBooker &, DQMStore::IGetter &)
std::vector< std::string > phoHLTFilterNames_
std::vector< std::string > eleLooseTightTrigEffVsVars_
void createN1EffHists(const std::string &filterName, const std::string &baseName, const std::string &region, const std::vector< std::string > &varNames, DQMStore::IBooker &, DQMStore::IGetter &)
std::vector< std::string > eleEffTags_
void beginRun(const edm::Run &run, const edm::EventSetup &c) override
MonitorElement * makeEffMonElemFromPassAndFailAndTagTag(const std::string &filter, const std::string &name, const std::string &title, const MonitorElement *pass, const MonitorElement *fail, const MonitorElement *tagtag, DQMStore::IBooker &, DQMStore::IGetter &)
def fail(errstr="")
Definition: Run.h:44
std::vector< std::string > eleHLTFilterNames2Leg_
~EgHLTOfflineClient() override
std::vector< std::string > eleSingleEffVars_