CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
GenericBenchmarkAnalyzer Class Reference

#include <GenericBenchmarkAnalyzer.h>

Inheritance diagram for GenericBenchmarkAnalyzer:
edm::EDAnalyzer GenericBenchmark edm::EDConsumerBase

Public Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &)
 
virtual void beginJob ()
 
virtual void endJob ()
 
 GenericBenchmarkAnalyzer (const edm::ParameterSet &)
 
virtual ~GenericBenchmarkAnalyzer ()
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
virtual ~EDConsumerBase () noexcept(false)
 
- Public Member Functions inherited from GenericBenchmark
template<typename C >
void fill (const C *RecoCollection, const C *GenCollection, bool startFromGen=false, bool PlotAgainstReco=true, bool onlyTwoJets=false, double recPt_cut=-1., double minEta_cut=-1., double maxEta_cut=-1., double deltaR_cut=-1.)
 
 GenericBenchmark ()
 
void setfile (TFile *file)
 
void setup (DQMStore *DQM=NULL, bool PlotAgainstReco_=true, float minDeltaEt=-100., float maxDeltaEt=50., float minDeltaPhi=-0.5, float maxDeltaPhi=0.5, bool doMetPlots=false)
 
void write (std::string Filename)
 
virtual ~GenericBenchmark ()(false)
 

Private Attributes

std::string benchmarkLabel_
 
double deltaR_cut
 
bool doMetPlots_
 
edm::InputTag inputRecoLabel_
 
edm::InputTag inputTruthLabel_
 
float maxDeltaEt_
 
float maxDeltaPhi_
 
double maxEta_cut
 
float minDeltaEt_
 
float minDeltaPhi_
 
double minEta_cut
 
edm::EDGetTokenT< edm::View< reco::Candidate > > myReco_
 
edm::EDGetTokenT< edm::View< reco::Candidate > > myTruth_
 
bool onlyTwoJets_
 
std::string outputFile_
 
bool plotAgainstRecoQuantities_
 
double recPt_cut
 
bool startFromGen_
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
- Protected Attributes inherited from GenericBenchmark
PFBenchmarkAlgoalgo_
 
DQMStoredbe_
 

Detailed Description

Definition at line 17 of file GenericBenchmarkAnalyzer.h.

Constructor & Destructor Documentation

GenericBenchmarkAnalyzer::GenericBenchmarkAnalyzer ( const edm::ParameterSet iConfig)
explicit

Definition at line 38 of file GenericBenchmarkAnalyzer.cc.

References benchmarkLabel_, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), and AlCaHLTBitMon_QueryRunRegistry::string.

39 {
40 
41  inputTruthLabel_ = iConfig.getParameter<edm::InputTag>("InputTruthLabel");
42  inputRecoLabel_ = iConfig.getParameter<edm::InputTag>("InputRecoLabel");
43  outputFile_ = iConfig.getUntrackedParameter<std::string>("OutputFile");
44  benchmarkLabel_ = iConfig.getParameter<std::string>("BenchmarkLabel");
45  startFromGen_ = iConfig.getParameter<bool>("StartFromGen");
46  plotAgainstRecoQuantities_ = iConfig.getParameter<bool>("PlotAgainstRecoQuantities");
47  onlyTwoJets_ = iConfig.getParameter<bool>("OnlyTwoJets");
48  recPt_cut = iConfig.getParameter<double>("recPt");
49  minEta_cut = iConfig.getParameter<double>("minEta");
50  maxEta_cut = iConfig.getParameter<double>("maxEta");
51  deltaR_cut = iConfig.getParameter<double>("deltaRMax");
52 
53  minDeltaEt_ = iConfig.getParameter<double>("minDeltaEt");
54  maxDeltaEt_ = iConfig.getParameter<double>("maxDeltaEt");
55  minDeltaPhi_ = iConfig.getParameter<double>("minDeltaPhi");
56  maxDeltaPhi_ = iConfig.getParameter<double>("maxDeltaPhi");
57  doMetPlots_ = iConfig.getParameter<bool>("doMetPlots");
58 
59  if (outputFile_.size() > 0)
60  edm::LogInfo("OutputInfo") << " ParticleFLow Task histograms will be saved to '" << outputFile_.c_str()<< "'";
61  else edm::LogInfo("OutputInfo") << " ParticleFlow Task histograms will NOT be saved";
62 
63  myTruth_ = consumes< edm::View<reco::Candidate> >(inputTruthLabel_);
64  myReco_ = consumes< edm::View<reco::Candidate> >(inputRecoLabel_);
65 
66 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
edm::EDGetTokenT< edm::View< reco::Candidate > > myTruth_
edm::EDGetTokenT< edm::View< reco::Candidate > > myReco_
GenericBenchmarkAnalyzer::~GenericBenchmarkAnalyzer ( )
virtual

Definition at line 68 of file GenericBenchmarkAnalyzer.cc.

68 { }

Member Function Documentation

void GenericBenchmarkAnalyzer::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Definition at line 90 of file GenericBenchmarkAnalyzer.cc.

References gather_cfg::cout, lumiContext::fill, edm::Event::getByToken(), and edm::Handle< T >::product().

92 {
93 
94  // Typedefs to use views
95  typedef edm::View<reco::Candidate> candidateCollection ;
96  typedef edm::View<reco::Candidate> candidateCollection ;
97 
98  const candidateCollection *truth_candidates;
99  const candidateCollection *reco_candidates;
100 
101  // ==========================================================
102  // Retrieve!
103  // ==========================================================
104 
105  {
106  // Get Truth Candidates (GenCandidates, GenJets, etc.)
107  Handle<candidateCollection> truth_hnd;
108  bool isGen = iEvent.getByToken(myTruth_, truth_hnd);
109 
110  if ( !isGen ) {
111  std::cout << "Warning : no Gen jets in input !" << std::endl;
112  return;
113  }
114 
115  truth_candidates = truth_hnd.product();
116 
117  // Get Reco Candidates (PFlow, CaloJet, etc.)
119  bool isReco = iEvent.getByToken(myReco_, reco_hnd);
120  if ( !isReco ) {
121  std::cout << "Warning : no Reco jets in input !" << std::endl;
122  return;
123  }
124  reco_candidates = reco_hnd.product();
125 
126  // no longer needed with template-ized Benchmark
127  //const PFCandidateCollection *pf_candidates = reco_hnd.product();
128  //static CandidateCollection reco_storage = algo_->makeCandidateCollection(pf_candidates);
129  //reco_candidates = &reco_storage;
130 
131  }
132  if (!truth_candidates || !reco_candidates) {
133 
134  edm::LogInfo("OutputInfo") << " failed to retrieve data required by ParticleFlow Task";
135  edm::LogInfo("OutputInfo") << " ParticleFlow Task cannot continue...!";
136  return;
137 
138  }
139 
140  // ==========================================================
141  // Analyze!
142  // ==========================================================
143 
144  fill(reco_candidates,truth_candidates,
147 }
void fill(const C *RecoCollection, const C *GenCollection, bool startFromGen=false, bool PlotAgainstReco=true, bool onlyTwoJets=false, double recPt_cut=-1., double minEta_cut=-1., double maxEta_cut=-1., double deltaR_cut=-1.)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:460
edm::EDGetTokenT< edm::View< reco::Candidate > > myTruth_
edm::EDGetTokenT< edm::View< reco::Candidate > > myReco_
T const * product() const
Definition: Handle.h:81
void GenericBenchmarkAnalyzer::beginJob ( void  )
virtual

Reimplemented from edm::EDAnalyzer.

Definition at line 71 of file GenericBenchmarkAnalyzer.cc.

References benchmarkLabel_, dbe_, Utilities::operator, callgraph::path, GeneralSetup::setup(), and AlCaHLTBitMon_QueryRunRegistry::string.

72 {
73 
74  // get ahold of back-end interface
76 
77  if (dbe_) {
78  //dbe_->setVerbose(1);
79  //string path = "PFTask/Benchmarks/" + benchmarkLabel_ + "/";
80  std::string path = "ParticleFlow/" + benchmarkLabel_ + "/" ;
81  if (plotAgainstRecoQuantities_) path += "Reco"; else path += "Gen";
82  dbe_->setCurrentFolder(path.c_str());
84 
85  }
86 
87 }
void setup(DQMStore *DQM=NULL, bool PlotAgainstReco_=true, float minDeltaEt=-100., float maxDeltaEt=50., float minDeltaPhi=-0.5, float maxDeltaPhi=0.5, bool doMetPlots=false)
void GenericBenchmarkAnalyzer::endJob ( void  )
virtual

Reimplemented from edm::EDAnalyzer.

Definition at line 149 of file GenericBenchmarkAnalyzer.cc.

References dbe_.

150 {
151 
152  // Store the DAQ Histograms
153  if (outputFile_.size() != 0)
154  dbe_->save(outputFile_);
155 }

Member Data Documentation

std::string GenericBenchmarkAnalyzer::benchmarkLabel_
private

Definition at line 35 of file GenericBenchmarkAnalyzer.h.

double GenericBenchmarkAnalyzer::deltaR_cut
private

Definition at line 42 of file GenericBenchmarkAnalyzer.h.

bool GenericBenchmarkAnalyzer::doMetPlots_
private

Definition at line 47 of file GenericBenchmarkAnalyzer.h.

edm::InputTag GenericBenchmarkAnalyzer::inputRecoLabel_
private

Definition at line 34 of file GenericBenchmarkAnalyzer.h.

edm::InputTag GenericBenchmarkAnalyzer::inputTruthLabel_
private

Definition at line 33 of file GenericBenchmarkAnalyzer.h.

float GenericBenchmarkAnalyzer::maxDeltaEt_
private

Definition at line 44 of file GenericBenchmarkAnalyzer.h.

float GenericBenchmarkAnalyzer::maxDeltaPhi_
private

Definition at line 46 of file GenericBenchmarkAnalyzer.h.

double GenericBenchmarkAnalyzer::maxEta_cut
private

Definition at line 41 of file GenericBenchmarkAnalyzer.h.

float GenericBenchmarkAnalyzer::minDeltaEt_
private

Definition at line 43 of file GenericBenchmarkAnalyzer.h.

float GenericBenchmarkAnalyzer::minDeltaPhi_
private

Definition at line 45 of file GenericBenchmarkAnalyzer.h.

double GenericBenchmarkAnalyzer::minEta_cut
private

Definition at line 40 of file GenericBenchmarkAnalyzer.h.

edm::EDGetTokenT< edm::View<reco::Candidate> > GenericBenchmarkAnalyzer::myReco_
private

Definition at line 32 of file GenericBenchmarkAnalyzer.h.

edm::EDGetTokenT< edm::View<reco::Candidate> > GenericBenchmarkAnalyzer::myTruth_
private

Definition at line 31 of file GenericBenchmarkAnalyzer.h.

bool GenericBenchmarkAnalyzer::onlyTwoJets_
private

Definition at line 38 of file GenericBenchmarkAnalyzer.h.

std::string GenericBenchmarkAnalyzer::outputFile_
private

Definition at line 30 of file GenericBenchmarkAnalyzer.h.

bool GenericBenchmarkAnalyzer::plotAgainstRecoQuantities_
private

Definition at line 37 of file GenericBenchmarkAnalyzer.h.

double GenericBenchmarkAnalyzer::recPt_cut
private

Definition at line 39 of file GenericBenchmarkAnalyzer.h.

bool GenericBenchmarkAnalyzer::startFromGen_
private

Definition at line 36 of file GenericBenchmarkAnalyzer.h.