CMS 3D CMS Logo

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

#include <ScoutingTestAnalyzer.h>

Inheritance diagram for ScoutingTestAnalyzer:
ScoutingAnalyzerBase one::DQMEDAnalyzer< T > one::dqmimplementation::DQMBaseClass< T... >

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
void bookHistograms (DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
 
void endRun (edm::Run const &, edm::EventSetup const &) override
 
 ScoutingTestAnalyzer (const edm::ParameterSet &)
 
 ~ScoutingTestAnalyzer () override
 
- Public Member Functions inherited from one::DQMEDAnalyzer< T >
 DQMEDAnalyzer ()=default
 
 DQMEDAnalyzer (DQMEDAnalyzer< T... > const &)=delete
 
 DQMEDAnalyzer (DQMEDAnalyzer< T... > &&)=delete
 
 ~DQMEDAnalyzer () override=default
 

Private Attributes

MonitorElementm_jetEtaPhi
 
MonitorElementm_jetPt
 
edm::InputTag m_pfJetsCollectionTag
 
edm::EDGetTokenT< reco::CaloJetCollectionm_pfJetsCollectionTagToken_
 

Additional Inherited Members

- Protected Member Functions inherited from ScoutingAnalyzerBase
void analyze (const edm::Event &e, const edm::EventSetup &c) override
 
MonitorElementbookH1 (DQMStore::IBooker &, const std::string &name, const std::string &title, int nchX, double lowX, double highX, const std::string &titleX="", const std::string &titleY="Events", Option_t *option="E1 P")
 
MonitorElementbookH1andDivide (DQMStore::IBooker &, const std::string &name, MonitorElement *num, MonitorElement *denom, const std::string &titleX, const std::string &titleY, const std::string &title="")
 
MonitorElementbookH1BinArray (DQMStore::IBooker &, const std::string &name, const std::string &title, int nchX, float *xbinsize, const std::string &titleX="", const std::string &titleY="Events", Option_t *option="E1 P")
 
MonitorElementbookH1withSumw2 (DQMStore::IBooker &, const std::string &name, const std::string &title, int nchX, double lowX, double highX, const std::string &titleX="", const std::string &titleY="Events", Option_t *option="E1 P")
 
MonitorElementbookH1withSumw2BinArray (DQMStore::IBooker &, const std::string &name, const std::string &title, int nchX, float *xbinsize, const std::string &titleX="", const std::string &titleY="Events", Option_t *option="E1 P")
 
MonitorElementbookH2 (DQMStore::IBooker &, const std::string &name, const std::string &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, const std::string &titleX="", const std::string &titleY="", Option_t *option="COLZ")
 
MonitorElementbookH2andDivide (DQMStore::IBooker &, const std::string &name, MonitorElement *num, MonitorElement *denom, const std::string &titleX, const std::string &titleY, const std::string &title="")
 
MonitorElementbookH2withSumw2 (DQMStore::IBooker &, const std::string &name, const std::string &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, const std::string &titleX="", const std::string &titleY="", Option_t *option="COLZ")
 
MonitorElementbookP1 (DQMStore::IBooker &, const std::string &name, const std::string &title, int nchX, double lowX, double highX, double lowY, double highY, const std::string &titleX="", const std::string &titleY="", Option_t *option="E1 P")
 
std::string newName (const std::string &name)
 
void prepareBooking (DQMStore::IBooker &)
 
MonitorElementprofileX (DQMStore::IBooker &, MonitorElement *me2d, const std::string &title="", const std::string &titleX="", const std::string &titleY="", Double_t minimum=-1111, Double_t maximum=-1111)
 
MonitorElementprofileY (DQMStore::IBooker &, MonitorElement *me2d, const std::string &title="", const std::string &titleX="", const std::string &titleY="", Double_t minimum=-1111, Double_t maximum=-1111)
 
 ScoutingAnalyzerBase (const edm::ParameterSet &conf)
 
 ~ScoutingAnalyzerBase () override
 

Detailed Description

Definition at line 8 of file ScoutingTestAnalyzer.h.

Constructor & Destructor Documentation

ScoutingTestAnalyzer::ScoutingTestAnalyzer ( const edm::ParameterSet conf)
explicit

Definition at line 8 of file ScoutingTestAnalyzer.cc.

References edm::ParameterSet::getUntrackedParameter(), m_pfJetsCollectionTag, and m_pfJetsCollectionTagToken_.

8  : ScoutingAnalyzerBase(conf) {
9  m_pfJetsCollectionTag = conf.getUntrackedParameter<edm::InputTag>("pfJetsCollectionName");
10  // set Token(-s)
12  consumes<reco::CaloJetCollection>(conf.getUntrackedParameter<edm::InputTag>("pfJetsCollectionName"));
13 }
T getUntrackedParameter(std::string const &, T const &) const
edm::InputTag m_pfJetsCollectionTag
edm::EDGetTokenT< reco::CaloJetCollection > m_pfJetsCollectionTagToken_
ScoutingAnalyzerBase(const edm::ParameterSet &conf)
ScoutingTestAnalyzer::~ScoutingTestAnalyzer ( )
override

Definition at line 15 of file ScoutingTestAnalyzer.cc.

15 {}

Member Function Documentation

void ScoutingTestAnalyzer::analyze ( const edm::Event iEvent,
const edm::EventSetup c 
)
override

Definition at line 41 of file ScoutingTestAnalyzer.cc.

References MonitorElement::Fill(), edm::Event::getByToken(), m_jetEtaPhi, m_jetPt, and m_pfJetsCollectionTagToken_.

41  {
43  iEvent.getByToken(m_pfJetsCollectionTagToken_, calojets_handle);
44  /* This is an example of how C++11 can simplify or lifes. The auto keyword
45  make the compiler figure out by itself which is the type of the pfjets
46  object. The qualifier const of course still apply. Poor's man explaination:
47  "compiler, make pfjets a const ref and figure out for me the type"*/
48  auto const &calojets = *calojets_handle;
49 
50  // Again, C++11. A loop on a std::vector becomes as simple as this!
51  for (auto const &calojet : calojets) {
52  m_jetPt->Fill(calojet.pt());
53  m_jetEtaPhi->Fill(calojet.eta(), calojet.phi());
54  }
55 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
MonitorElement * m_jetEtaPhi
void Fill(long long x)
edm::EDGetTokenT< reco::CaloJetCollection > m_pfJetsCollectionTagToken_
MonitorElement * m_jetPt
void ScoutingTestAnalyzer::bookHistograms ( DQMStore::IBooker iBooker,
edm::Run const &  ,
edm::EventSetup const &   
)
override

Definition at line 18 of file ScoutingTestAnalyzer.cc.

References ScoutingAnalyzerBase::bookH1withSumw2(), ScoutingAnalyzerBase::bookH2withSumw2(), edm::InputTag::label(), m_jetEtaPhi, m_jetPt, m_pfJetsCollectionTag, ScoutingAnalyzerBase::prepareBooking(), and AlCaHLTBitMon_QueryRunRegistry::string.

18  {
20  std::string collection_name = m_pfJetsCollectionTag.label();
21 
22  /* This method allows us to book an Histogram in one line in a completely
23  * transparent way. Take your time to put axis titles!!!!*/
25  iBooker, collection_name + "_pt", collection_name + " Jet P_{T}", 50, 0., 500., "Jet P_{T} [GeV]");
26 
27  m_jetEtaPhi = bookH2withSumw2(iBooker,
28  collection_name + "_etaphi",
29  collection_name + " #eta #phi",
30  50,
31  -5,
32  5,
33  50,
34  -3.1415,
35  +3.1415,
36  "#eta^{Jet}",
37  "#phi^{Jet}");
38 }
void prepareBooking(DQMStore::IBooker &)
MonitorElement * m_jetEtaPhi
edm::InputTag m_pfJetsCollectionTag
MonitorElement * bookH1withSumw2(DQMStore::IBooker &, const std::string &name, const std::string &title, int nchX, double lowX, double highX, const std::string &titleX="", const std::string &titleY="Events", Option_t *option="E1 P")
MonitorElement * m_jetPt
std::string const & label() const
Definition: InputTag.h:36
MonitorElement * bookH2withSumw2(DQMStore::IBooker &, const std::string &name, const std::string &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, const std::string &titleX="", const std::string &titleY="", Option_t *option="COLZ")
void ScoutingTestAnalyzer::endRun ( edm::Run const &  ,
edm::EventSetup const &   
)
override

Definition at line 59 of file ScoutingTestAnalyzer.cc.

References edm::InputTag::label(), m_pfJetsCollectionTag, and AlCaHLTBitMon_QueryRunRegistry::string.

59  {
60  std::string collection_name = m_pfJetsCollectionTag.label();
61  /* This function is specific of this class and allows us to make a
62  * projection in one line
63  * The following code form the original TestAnalyser tried to book histograms
64  * in the endRun step. This is not allowed anymore.
65  * Since this is just a test class, there is no point in trying to fix the
66  * impossible. The profileX and profileY methods are only used in this test
67  * class anyway.
68  * */
75 }
edm::InputTag m_pfJetsCollectionTag
std::string const & label() const
Definition: InputTag.h:36

Member Data Documentation

MonitorElement* ScoutingTestAnalyzer::m_jetEtaPhi
private

Definition at line 20 of file ScoutingTestAnalyzer.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* ScoutingTestAnalyzer::m_jetPt
private

Definition at line 19 of file ScoutingTestAnalyzer.h.

Referenced by analyze(), and bookHistograms().

edm::InputTag ScoutingTestAnalyzer::m_pfJetsCollectionTag
private

Definition at line 18 of file ScoutingTestAnalyzer.h.

Referenced by bookHistograms(), endRun(), and ScoutingTestAnalyzer().

edm::EDGetTokenT<reco::CaloJetCollection> ScoutingTestAnalyzer::m_pfJetsCollectionTagToken_
private

Definition at line 22 of file ScoutingTestAnalyzer.h.

Referenced by analyze(), and ScoutingTestAnalyzer().