CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
CandidateBenchmarkAnalyzer Class Reference

#include <CandidateBenchmarkAnalyzer.h>

Inheritance diagram for CandidateBenchmarkAnalyzer:
BenchmarkAnalyzer CandidateBenchmark edm::EDAnalyzer Benchmark

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &)
 
void beginJob ()
 
 CandidateBenchmarkAnalyzer (const edm::ParameterSet &parameterSet)
 
void endJob ()
 
- Public Member Functions inherited from BenchmarkAnalyzer
 BenchmarkAnalyzer ()
 
 BenchmarkAnalyzer (const edm::ParameterSet &)
 
virtual ~BenchmarkAnalyzer ()
 
- Public Member Functions inherited from edm::EDAnalyzer
 EDAnalyzer ()
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from CandidateBenchmark
 CandidateBenchmark (Mode mode)
 
template<class C >
void fill (const C &candidates)
 
void fillOne (const reco::Candidate &candidate)
 fill histograms with a given particle More...
 
void setup ()
 book histograms More...
 
void setup (const edm::ParameterSet &parameterSet)
 book histograms More...
 
virtual ~CandidateBenchmark ()
 
- Public Member Functions inherited from Benchmark
 Benchmark (Mode mode=DEFAULT)
 
bool isInRange (float pt, float eta, float phi) const
 
virtual void setDirectory (TDirectory *dir)
 
void setParameters (Mode mode)
 
void setRange (float ptMin, float ptMax, float etaMin, float etaMax, float phiMin, float phiMax)
 
void write ()
 write to the TFile, in plain ROOT mode. No need to call this function in DQM mode More...
 
virtual ~Benchmark ()
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
typedef WorkerT< EDAnalyzerWorkerType
 
- Public Types inherited from Benchmark
enum  Mode { DEFAULT, DQMOFFLINE, VALIDATION }
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
- Static Public Attributes inherited from Benchmark
static DQMStoreDQM_ = 0
 
- Protected Member Functions inherited from edm::EDAnalyzer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from Benchmark
TH1F * book1D (const char *histname, const char *title, int nbins, float xmin, float xmax)
 book a 1D histogram, either with DQM or plain root. More...
 
TH2F * book2D (const char *histname, const char *title, int nbinsx, float xmin, float xmax, int nbinsy, float ymin, float ymax)
 book a 2D histogram, either with DQM or plain root. More...
 
TH2F * book2D (const char *histname, const char *title, int nbinsx, float *xbins, int nbinsy, float ymin, float ymax)
 book a 2D histogram, either with DQM or plain root. More...
 
- Protected Attributes inherited from BenchmarkAnalyzer
std::string benchmarkLabel_
 benchmark label More...
 
edm::InputTag inputLabel_
 input collection More...
 
std::string outputFile_
 name of the output root file More...
 
- Protected Attributes inherited from CandidateBenchmark
TH1F * charge_
 
TH1F * eta_
 
bool histogramBooked_
 
TH1F * pdgId_
 COLIN add this histo. More...
 
TH1F * phi_
 
TH1F * pt_
 
- Protected Attributes inherited from Benchmark
TDirectory * dir_
 
float etaMax_
 
float etaMin_
 
Mode mode_
 
float phiMax_
 
float phiMin_
 
float ptMax_
 
float ptMin_
 

Detailed Description

Definition at line 11 of file CandidateBenchmarkAnalyzer.h.

Constructor & Destructor Documentation

CandidateBenchmarkAnalyzer::CandidateBenchmarkAnalyzer ( const edm::ParameterSet parameterSet)

Definition at line 18 of file CandidateBenchmarkAnalyzer.cc.

References edm::ParameterSet::getParameter(), and Benchmark::setRange().

18  :
19  BenchmarkAnalyzer(parameterSet),
20  CandidateBenchmark( (Benchmark::Mode) parameterSet.getParameter<int>("mode") )
21 {
22 
23  setRange( parameterSet.getParameter<double>("ptMin"),
24  parameterSet.getParameter<double>("ptMax"),
25  parameterSet.getParameter<double>("etaMin"),
26  parameterSet.getParameter<double>("etaMax"),
27  parameterSet.getParameter<double>("phiMin"),
28  parameterSet.getParameter<double>("phiMax") );
29 }
T getParameter(std::string const &) const
void setRange(float ptMin, float ptMax, float etaMin, float etaMax, float phiMin, float phiMax)
Definition: Benchmark.h:51

Member Function Documentation

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

Implements edm::EDAnalyzer.

Definition at line 41 of file CandidateBenchmarkAnalyzer.cc.

References runEdmFileComparison::collection, CandidateBenchmark::fill(), edm::Event::getByLabel(), and BenchmarkAnalyzer::inputLabel_.

42  {
43 
44 
45 
47  iEvent.getByLabel( inputLabel_, collection);
48 
49  fill( *collection );
50 }
void fill(const C &candidates)
edm::InputTag inputLabel_
input collection
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:359
void CandidateBenchmarkAnalyzer::beginJob ( void  )
virtual

Implements BenchmarkAnalyzer.

Definition at line 33 of file CandidateBenchmarkAnalyzer.cc.

References BenchmarkAnalyzer::beginJob(), and CandidateBenchmark::setup().

34 {
35 
37  setup();
38 }
virtual void beginJob()=0
void setup()
book histograms
void CandidateBenchmarkAnalyzer::endJob ( void  )
virtual

Reimplemented from edm::EDAnalyzer.

Definition at line 53 of file CandidateBenchmarkAnalyzer.cc.

53  {
54 }