CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTMuonValidator.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: HLTMuonValidator
4 // Class: HLTMuonValidator
5 //
6 
7 //
8 // Jason Slaunwhite and Jeff Klukas
9 //
10 //
11 
12 // system include files
13 #include <memory>
14 #include <iostream>
15 
16 // user include files
18 
24 
25 
28 
29 
30 #include "TFile.h"
31 #include "TDirectory.h"
32 #include "TPRegexp.h"
33 #include "boost/tuple/tuple.hpp"
34 
35 
36 
39 
40 
41 
43 
44 public:
45 
46  explicit HLTMuonValidator(const edm::ParameterSet&);
47 
48 private:
49 
50  // Analyzer Methods
51  virtual void beginJob();
52  virtual void dqmBeginRun(const edm::Run &, const edm::EventSetup &) override;
53  virtual void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override;
54  virtual void analyze(const edm::Event &, const edm::EventSetup &) override;
55  virtual void endRun(const edm::Run &, const edm::EventSetup &) override;
56  virtual void endJob();
57 
58  // Extra Methods
59  std::vector<std::string> moduleLabels(std::string);
60  std::vector<std::string> stepLabels(const std::vector<std::string>&);
61 
62  // Input from Configuration File
65  std::vector<std::string> hltPathsToCheck_;
66 
67  // Member Variables
68  std::vector<HLTMuonPlotter> analyzers_;
70  boost::tuple<
74 
75 };
76 
77 
78 
81 
82 using namespace std;
83 using namespace edm;
84 using namespace reco;
85 using namespace trigger;
86 
87 typedef vector<string> vstring;
88 
89 
90 
93 
95  pset_(pset),
96  hltProcessName_(pset.getParameter<string>("hltProcessName")),
97  hltPathsToCheck_(pset.getParameter<vstring>("hltPathsToCheck"))
98 {
99 
101 
102 }
103 
104 
105 
106 vector<string>
108 
109  vector<string> modules = hltConfig_.moduleLabels(path);
110  vector<string>::iterator iter = modules.begin();
111 
112  while (iter != modules.end())
113  if (iter->find("Filtered") == string::npos)
114  iter = modules.erase(iter);
115  else
116  ++iter;
117 
118  return modules;
119 
120 }
121 
122 
123 
124 vector<string>
125 HLTMuonValidator::stepLabels(const vector<string>& modules) {
126  vector<string> steps(1, "All");
127  for (size_t i = 0; i < modules.size(); i++) {
128  if ((modules[i].find("IsoFiltered") != string::npos)){
129  if (modules[i].find("L3") != string::npos)
130  steps.push_back("L3TkIso");
131  else
132  steps.push_back("L2Iso");
133  }
134  else if ((modules[i].find("pfecalIsoRhoFiltered") != string::npos)||(modules[i].find("pfecalOldIsoRhoFiltered") != string::npos)) {
135  if (modules[i].find("L3") != string::npos)
136  steps.push_back("L3EcalIso");
137  else if (modules[i].find("TkFiltered") != string::npos)
138  steps.push_back("TkEcalIso");
139  }
140  else if ((modules[i].find("pfhcalIsoRhoFiltered") != string::npos)||(modules[i].find("pfhcalOldIsoRhoFiltered") != string::npos)) {
141  if (modules[i].find("L3") != string::npos)
142  steps.push_back("L3HcalIso");
143  else if (modules[i].find("TkFiltered") != string::npos)
144  steps.push_back("TkHcalIso");
145  }
146  else if (modules[i].find("TkFiltered") != string::npos){
147  steps.push_back("Tk");
148  }
149  else if (modules[i].find("L3") != string::npos)
150  steps.push_back("L3");
151  else if (modules[i].find("L2") != string::npos)
152  steps.push_back("L2");
153  else if (modules[i].find("L1") != string::npos)
154  steps.push_back("L1");
155  else
156  return vector<string>();
157  }
158 
159  if (steps.size() < 2 || ((steps[1] != "L1")&&(steps[1] != "Tk")))
160  return vector<string>();
161  return steps;
162 
163 }
164 
165 
166 
167 void
169  const edm::EventSetup & iSetup)
170 {
171  // Initialize hltConfig
172  bool changedConfig;
173  if (!hltConfig_.init(iRun, iSetup, hltProcessName_, changedConfig)) {
174  LogError("HLTMuonVal") << "Initialization of HLTConfigProvider failed!!";
175  return;
176  }
177 
178  // Get the set of trigger paths we want to make plots for
179  set<string> hltPaths;
180  for (size_t i = 0; i < hltPathsToCheck_.size(); i++) {
181  TPRegexp pattern(hltPathsToCheck_[i]);
182  for (size_t j = 0; j < hltConfig_.triggerNames().size(); j++)
183  if (TString(hltConfig_.triggerNames()[j]).Contains(pattern))
184  hltPaths.insert(hltConfig_.triggerNames()[j]);
185  }
186 
187  // Initialize the analyzers
188  analyzers_.clear();
189  set<string>::iterator iPath;
190  for (iPath = hltPaths.begin(); iPath != hltPaths.end(); iPath++) {
191 
192  string path = * iPath;
193  string shortpath = path;
194  if (path.rfind("_v") < path.length())
195  shortpath = path.substr(0, path.rfind("_v"));
196 
197  vector<string> labels = moduleLabels(path);
198  vector<string> steps = stepLabels(labels);
199 
200  if (labels.size() > 0 && steps.size() > 0) {
201  HLTMuonPlotter analyzer(pset_, shortpath, labels, steps, myTokens_);
202  analyzers_.push_back(analyzer);
203  }
204  }
205 
206 }
207 
208 
209 
211  edm::Run const & iRun,
212  edm::EventSetup const & iSetup)
213 {
214 
215  // Call the beginRun (which books all the histograms)
216  vector<HLTMuonPlotter>::iterator iter;
217  for (iter = analyzers_.begin(); iter != analyzers_.end(); ++iter) {
218  iter->beginRun(iBooker, iRun, iSetup);
219  }
220 
221 }
222 
223 
224 
225 void
227  const EventSetup& iSetup)
228 {
229 
230  vector<HLTMuonPlotter>::iterator iter;
231  for (iter = analyzers_.begin(); iter != analyzers_.end(); ++iter) {
232  iter->analyze(iEvent, iSetup);
233  }
234 
235 }
236 
237 
238 
239 void
241 {
242 
243 }
244 
245 
246 
247 void
249  const edm::EventSetup& iSetup)
250 {
251 
252  // vector<HLTMuonPlotter>::iterator iter;
253  // for (iter = analyzers_.begin(); iter != analyzers_.end(); ++iter) {
254  // iter->endRun(iRun, iSetup);
255  // }
256 
257 }
258 
259 
260 
261 void
263 {
264 
265 }
266 
267 
268 
269 //define this as a plug-in
int i
Definition: DBlmapReader.cc:9
vector< string > vstring
Definition: ExoticaDQM.cc:86
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
std::vector< std::string > stepLabels(const std::vector< std::string > &)
const std::vector< std::string > & triggerNames() const
names of trigger paths
std::vector< HLTMuonPlotter > analyzers_
edm::ParameterSet pset_
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
std::vector< std::string > hltPathsToCheck_
boost::tuple< edm::EDGetTokenT< trigger::TriggerEventWithRefs >, edm::EDGetTokenT< reco::GenParticleCollection >, edm::EDGetTokenT< reco::MuonCollection > > myTokens_
static boost::tuple< edm::EDGetTokenT< trigger::TriggerEventWithRefs >, edm::EDGetTokenT< reco::GenParticleCollection >, edm::EDGetTokenT< reco::MuonCollection > > getTokens(const edm::ParameterSet &, edm::ConsumesCollector &&)
int iEvent
Definition: GenABIO.cc:230
virtual void analyze(const edm::Event &, const edm::EventSetup &) override
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
int j
Definition: DBlmapReader.cc:9
virtual void endJob()
std::vector< std::string > moduleLabels(std::string)
virtual void beginJob()
const std::vector< std::string > & moduleLabels(unsigned int trigger) const
label(s) of module(s) on a trigger path
virtual void endRun(const edm::Run &, const edm::EventSetup &) override
HLTConfigProvider hltConfig_
bool init(const edm::Run &iRun, const edm::EventSetup &iSetup, const std::string &processName, bool &changed)
d&#39;tor
std::string hltProcessName_
virtual void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
virtual void dqmBeginRun(const edm::Run &, const edm::EventSetup &) override
HLTMuonValidator(const edm::ParameterSet &)
Definition: Run.h:43