CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
PFCandidateDQMAnalyzer.cc
Go to the documentation of this file.
2 
4 
9 
12 
15 
16 //
17 // -- Constructor
18 //
20 
21 {
23  inputLabel_ = pSet_.getParameter<edm::InputTag>("InputCollection");
24  matchLabel_ = pSet_.getParameter<edm::InputTag>("MatchCollection");
25  benchmarkLabel_ = pSet_.getParameter<std::string>("BenchmarkLabel");
26  createEfficiencyHistos_ = pSet_.getParameter<bool>("CreateEfficiencyHistos");
27 
28  pfCandidateMonitor_.setParameters(parameterSet);
29 
30  myCand_ = consumes<edm::View<reco::Candidate>>(inputLabel_);
31  myMatchedCand_ = consumes<edm::View<reco::Candidate>>(matchLabel_);
32 
34 
35  subsystemname_ = "ParticleFlow";
37 
38  nBadEvents_ = 0;
39 }
40 
41 //
42 // -- BookHistograms
43 //
45  edm::Run const & /* iRun */,
46  edm::EventSetup const & /* iSetup */) {
48 
49  edm::LogInfo("PFCandidateDQMAnalyzer") << " PFCandidateDQMAnalyzer::bookHistograms "
50  << "Histogram Folder path set to " << eventInfoFolder_;
51 
53 }
54 
55 //
56 // -- Analyze
57 //
60  edm::Handle<edm::View<reco::Candidate>> matchedCandCollection;
62  iEvent.getByToken(myCand_, candCollection);
63  iEvent.getByToken(myMatchedCand_, matchedCandCollection);
64  } else {
65  iEvent.getByToken(myMatchedCand_, candCollection);
66  iEvent.getByToken(myCand_, matchedCandCollection);
67  }
68 
69  float maxRes = 0.0;
70  float minRes = 99.99;
71  if (candCollection.isValid() && matchedCandCollection.isValid()) {
72  pfCandidateMonitor_.fill(*candCollection, *matchedCandCollection, minRes, maxRes, pSet_);
73  }
74 }
75 
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
edm::EDGetTokenT< edm::View< reco::Candidate > > myCand_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
PFCandidateDQMAnalyzer(const edm::ParameterSet &parameterSet)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
edm::EDGetTokenT< edm::View< reco::Candidate > > myMatchedCand_
void setup(DQMStore::IBooker &b)
book histograms
void setParameters(float dRMax, bool matchCharge, Benchmark::Mode mode, float ptmin, float ptmax, float etamin, float etamax, float phimin, float phimax, bool refHistoFlag)
set the parameters locally
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
void analyze(edm::Event const &, edm::EventSetup const &) override
void fill(const T &candidateCollection, const C &matchedCandCollection, float &minVal, float &maxVal, const edm::ParameterSet &parameterSet)
fill histograms with all particle
int iEvent
Definition: GenABIO.cc:224
ParameterSet const & parameterSet(StableProvenance const &provenance, ProcessHistory const &history)
Definition: Provenance.cc:11
bool isValid() const
Definition: HandleBase.h:70
Log< level::Info, false > LogInfo
PFCandidateMonitor pfCandidateMonitor_
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
Definition: Run.h:45