CMS 3D CMS Logo

List of all members | Public Member Functions | Private Types | Private Member Functions | Private Attributes
JetPlotsExample< Jet > Class Template Reference

#include <JetPlotsExample.h>

Inheritance diagram for JetPlotsExample< Jet >:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 JetPlotsExample (edm::ParameterSet const &cfg)
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
 ~EDAnalyzer () override
 
- 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 &&)=default
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
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
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Types

typedef std::vector< Jet > JetCollection
 

Private Member Functions

void analyze (edm::Event const &e, edm::EventSetup const &iSetup) override
 
void beginJob () override
 
void endJob () override
 
void FillHist1D (const TString &histName, const Double_t &x)
 

Private Attributes

std::string HistoFileName
 
std::string JetAlgorithm
 
TFile * m_file
 
std::map< TString, TH1 * > m_HistNames1D
 
int NJets
 

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 &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- Protected Member Functions inherited from edm::EDConsumerBase
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (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 ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 

Detailed Description

template<class Jet>
class JetPlotsExample< Jet >

Definition at line 15 of file JetPlotsExample.h.

Member Typedef Documentation

◆ JetCollection

template<class Jet >
typedef std::vector<Jet> JetPlotsExample< Jet >::JetCollection
private

Definition at line 20 of file JetPlotsExample.h.

Constructor & Destructor Documentation

◆ JetPlotsExample()

template<class Jet >
JetPlotsExample< Jet >::JetPlotsExample ( edm::ParameterSet const &  cfg)

Definition at line 24 of file JetPlotsExample.cc.

24  {
25  JetAlgorithm = cfg.getParameter<std::string>("JetAlgorithm");
26  HistoFileName = cfg.getParameter<std::string>("HistoFileName");
27  NJets = cfg.getParameter<int>("NJets");
28 }

References looper::cfg, and AlCaHLTBitMon_QueryRunRegistry::string.

Member Function Documentation

◆ analyze()

template<class Jet >
void JetPlotsExample< Jet >::analyze ( edm::Event const &  e,
edm::EventSetup const &  iSetup 
)
overrideprivatevirtual

Implements edm::EDAnalyzer.

Definition at line 46 of file JetPlotsExample.cc.

46  {
49  evt.getByLabel(JetAlgorithm, jets);
50  typename JetCollection::const_iterator i_jet;
51  int index = 0;
52  TString hname;
54  hname = "NumberOfJets";
55  FillHist1D(hname, jets->size());
57  for (i_jet = jets->begin(); i_jet != jets->end() && index < NJets; ++i_jet) {
58  hname = "JetPt";
59  FillHist1D(hname, i_jet->pt());
60  hname = "JetEta";
61  FillHist1D(hname, i_jet->eta());
62  hname = "JetPhi";
63  FillHist1D(hname, i_jet->phi());
64  index++;
65  }
66 }

References edm::Event::getByLabel(), and singleTopDQM_cfi::jets.

◆ beginJob()

template<class Jet >
void JetPlotsExample< Jet >::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 31 of file JetPlotsExample.cc.

31  {
32  TString hname;
33  m_file = new TFile(HistoFileName.c_str(), "RECREATE");
35  hname = "JetPt";
36  m_HistNames1D[hname] = new TH1F(hname, hname, 100, 0, 1000);
37  hname = "JetEta";
38  m_HistNames1D[hname] = new TH1F(hname, hname, 120, -6, 6);
39  hname = "JetPhi";
40  m_HistNames1D[hname] = new TH1F(hname, hname, 100, -M_PI, M_PI);
41  hname = "NumberOfJets";
42  m_HistNames1D[hname] = new TH1F(hname, hname, 100, 0, 100);
43 }

References M_PI.

◆ endJob()

template<class Jet >
void JetPlotsExample< Jet >::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 69 of file JetPlotsExample.cc.

69  {
71  if (m_file != nullptr) {
72  m_file->cd();
73  for (std::map<TString, TH1*>::iterator hid = m_HistNames1D.begin(); hid != m_HistNames1D.end(); hid++)
74  hid->second->Write();
75  delete m_file;
76  m_file = nullptr;
77  }
78 }

◆ FillHist1D()

template<class Jet >
void JetPlotsExample< Jet >::FillHist1D ( const TString &  histName,
const Double_t &  x 
)
private

Definition at line 81 of file JetPlotsExample.cc.

81  {
82  std::map<TString, TH1*>::iterator hid = m_HistNames1D.find(histName);
83  if (hid == m_HistNames1D.end())
84  std::cout << "%fillHist -- Could not find histogram with name: " << histName << std::endl;
85  else
86  hid->second->Fill(value);
87 }

References gather_cfg::cout.

Member Data Documentation

◆ HistoFileName

template<class Jet >
std::string JetPlotsExample< Jet >::HistoFileName
private

Definition at line 31 of file JetPlotsExample.h.

◆ JetAlgorithm

template<class Jet >
std::string JetPlotsExample< Jet >::JetAlgorithm
private

Definition at line 29 of file JetPlotsExample.h.

◆ m_file

template<class Jet >
TFile* JetPlotsExample< Jet >::m_file
private

Definition at line 26 of file JetPlotsExample.h.

◆ m_HistNames1D

template<class Jet >
std::map<TString, TH1*> JetPlotsExample< Jet >::m_HistNames1D
private

Definition at line 25 of file JetPlotsExample.h.

◆ NJets

template<class Jet >
int JetPlotsExample< Jet >::NJets
private

Definition at line 33 of file JetPlotsExample.h.

gather_cfg.cout
cout
Definition: gather_cfg.py:144
JetPlotsExample::m_file
TFile * m_file
Definition: JetPlotsExample.h:26
singleTopDQM_cfi.jets
jets
Definition: singleTopDQM_cfi.py:42
edm::Handle
Definition: AssociativeIterator.h:50
JetPlotsExample::JetAlgorithm
std::string JetAlgorithm
Definition: JetPlotsExample.h:29
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
JetPlotsExample::FillHist1D
void FillHist1D(const TString &histName, const Double_t &x)
Definition: JetPlotsExample.cc:81
JetPlotsExample::HistoFileName
std::string HistoFileName
Definition: JetPlotsExample.h:31
value
Definition: value.py:1
M_PI
#define M_PI
Definition: BXVectorInputProducer.cc:50
looper.cfg
cfg
Definition: looper.py:297
JetPlotsExample::NJets
int NJets
Definition: JetPlotsExample.h:33
AlignmentPI::index
index
Definition: AlignmentPayloadInspectorHelper.h:46
JetPlotsExample::m_HistNames1D
std::map< TString, TH1 * > m_HistNames1D
Definition: JetPlotsExample.h:25