CMS 3D CMS Logo

HLTVertexPerformanceAnalyzer.cc
Go to the documentation of this file.
2 
3 using namespace edm;
4 using namespace reco;
5 
7 {
8  mainFolder_ = iConfig.getParameter<std::string>("mainFolder");
9  hlTriggerResults_ = consumes<TriggerResults>(iConfig.getParameter<InputTag> ("TriggerResults"));
10  VertexCollection_ = edm::vector_transform(iConfig.getParameter<std::vector<edm::InputTag> >( "Vertex" ), [this](edm::InputTag const & tag){return mayConsume< reco::VertexCollection>(tag);});
11  hltPathNames_ = iConfig.getParameter< std::vector<std::string> > ("HLTPathNames");
12  simVertexCollection_ = consumes<std::vector<SimVertex> >(iConfig.getParameter<edm::InputTag> ("SimVertexCollection"));
13 
14  EDConsumerBase::labelsForToken(hlTriggerResults_,label);
15  hlTriggerResults_Label = label.module;
16 
17  for(unsigned int i=0; i<VertexCollection_.size() ; i++){
18  EDConsumerBase::labelsForToken(VertexCollection_[i],label);
19  VertexCollection_Label.push_back(label.module);
20  }
21 }
22 
23 
25 {
26 }
27 
28 
30  triggerConfChanged_ = true;
31  EDConsumerBase::labelsForToken(hlTriggerResults_,label);
32 
33  hltConfigProvider_.init(iRun, iSetup, label.process, triggerConfChanged_);
34  const std::vector< std::string > & allHltPathNames = hltConfigProvider_.triggerNames();
35 
36  //fill hltPathIndexs_ with the trigger number of each hltPathNames_
37  for ( size_t trgs=0; trgs<hltPathNames_.size(); trgs++) {
38  unsigned int found = 1;
39  int it_mem = -1;
40  for (size_t it=0 ; it < allHltPathNames.size() ; ++it )
41  {
42  found = allHltPathNames.at(it).find(hltPathNames_[trgs]);
43  if ( found == 0 )
44  {
45  it_mem= (int) it;
46  }
47  }//for allallHltPathNames
48  hltPathIndexs_.push_back(it_mem);
49  }//for hltPathNames_
50 
51  //fill _isfoundHLTs for each hltPathNames_
52  for ( size_t trgs=0; trgs<hltPathNames_.size(); trgs++) {
53  if ( hltPathIndexs_[trgs] < 0 ) {
54  _isfoundHLTs.push_back(false);
55  }
56  else {
57  _isfoundHLTs.push_back(true);
58  }
59  }
60 }
61 
62 
64 {
65  bool trigRes=false;
66  using namespace edm;
67 
68  //get triggerResults
69  Handle<TriggerResults> TriggerResulsHandler;
70  if ( hlTriggerResults_Label == "" || hlTriggerResults_Label == "NULL" ) {
71  edm::LogInfo("NoTriggerResults") << "TriggerResults ==> Empty";
72  return;
73  }
74  iEvent.getByToken(hlTriggerResults_, TriggerResulsHandler);
75  if (TriggerResulsHandler.isValid()) trigRes=true;
76  if ( !trigRes ) { edm::LogInfo("NoTriggerResults") << "TriggerResults ==> not readable"; return;}
77  const TriggerResults & triggerResults = *(TriggerResulsHandler.product());
78 
79  //get simVertex
80  float simPV=0;
81 
83  iEvent.getByToken(simVertexCollection_, simVertexCollection);
84  if (!simVertexCollection.isValid()) { edm::LogInfo("NoSimVertex") << "SimVertex collection is invalid"; return;}
85  if (simVertexCollection->empty()) { edm::LogInfo("NoSimVertex") << "SimVertex collection is empty"; return;}
86  const SimVertex simPVh = *(simVertexCollection->begin());
87  simPV=simPVh.position().z();
88 
89  //fill the DQM plot
90  Handle<VertexCollection> VertexHandler;
91  for (unsigned int ind=0; ind<hltPathNames_.size();ind++) {
92  for (unsigned int coll=0; coll<VertexCollection_.size();coll++) {
93  bool VertexOK=false;
94  if ( !_isfoundHLTs[ind]) continue; //if the hltPath is not in the event, skip the event
95  if ( !triggerResults.accept(hltPathIndexs_[ind]) ) continue; //if the hltPath was not accepted skip the event
96 
97  //get the recoVertex
98  if (VertexCollection_Label.at(coll) != "" && VertexCollection_Label.at(coll) != "NULL" )
99  {
100  iEvent.getByToken(VertexCollection_.at(coll), VertexHandler);
101  if (VertexHandler.isValid()>0) VertexOK=true;
102  }
103 
104  if (VertexOK){
105  //calculate the variable (RecoVertex - SimVertex)
106  float value=VertexHandler->begin()->z()-simPV;
107 
108  //if value is over/under flow, assign the extreme value
109  float maxValue=H1_.at(ind)["Vertex_"+VertexCollection_Label.at(coll)]->getTH1F()->GetXaxis()->GetXmax();
110  if(value>maxValue) value=maxValue-0.0001;
111  if(value<-maxValue) value=-maxValue+0.0001;
112  //fill the histo
113  H1_.at(ind)["Vertex_"+VertexCollection_Label.at(coll)] -> Fill(value);
114  }
115  }// for on VertexCollection_
116  }//for on hltPathNames_
117 }
118 
119 
121 {
122  //book the DQM plots
123  using namespace std;
124  std::string dqmFolder;
125  for (unsigned int ind=0; ind<hltPathNames_.size();ind++) {
126  dqmFolder = Form("%s/Vertex/%s",mainFolder_.c_str(),hltPathNames_[ind].c_str());
127  H1_.push_back(std::map<std::string, MonitorElement *>());
128  ibooker.setCurrentFolder(dqmFolder);
129  for (unsigned int coll=0; coll<VertexCollection_.size();coll++) {
130  float maxValue = 0.02;
131  if(VertexCollection_Label.at(coll)==("hltFastPrimaryVertex")) maxValue = 2.; //for the hltFastPrimaryVertex use a larger scale (res ~ 1 cm)
132  float vertexU = maxValue;
133  float vertexL = -maxValue;
134  int vertexBins = 100;
135  if ( VertexCollection_Label.at(coll) != "" && VertexCollection_Label.at(coll) != "NULL" ) {
136  H1_.back()["Vertex_"+VertexCollection_Label.at(coll)] = ibooker.book1D("Vertex_"+VertexCollection_Label.at(coll), VertexCollection_Label.at(coll).c_str(), vertexBins, vertexL, vertexU );
137  H1_.back()["Vertex_"+VertexCollection_Label.at(coll)] -> setAxisTitle("vertex error (cm)",1);
138  }
139  }
140  }
141 }
142 
144 
T getParameter(std::string const &) const
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:579
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
bool accept() const
Has at least one path accepted the event?
void dqmBeginRun(const edm::Run &iRun, const edm::EventSetup &iSetup) override
auto vector_transform(std::vector< InputType > const &input, Function predicate) -> std::vector< typename std::remove_cv< typename std::remove_reference< decltype(predicate(input.front()))>::type >::type >
Definition: transform.h:11
int iEvent
Definition: GenABIO.cc:230
void Fill(HcalDetId &id, double val, std::vector< TH2F > &depth)
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:118
const math::XYZTLorentzVectorD & position() const
Definition: CoreSimVertex.h:26
Definition: value.py:1
void analyze(const edm::Event &, const edm::EventSetup &) override
bool isValid() const
Definition: HandleBase.h:74
JetCorrectorParametersCollection coll
Definition: classes.h:10
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:274
T const * product() const
Definition: Handle.h:81
static std::string const triggerResults("TriggerResults")
void labelsForToken(EDGetToken iToken, Labels &oLabels) const
fixed size matrix
HLT enums.
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
HLTVertexPerformanceAnalyzer(const edm::ParameterSet &)
Definition: Run.h:44