CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Types

typedef std::vector< Jet > JetCollection
 

Private Member Functions

void analyze (edm::Event const &e, edm::EventSetup const &iSetup)
 
void beginJob ()
 
void endJob ()
 
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 &)
 
- 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)
 

Detailed Description

template<class Jet>
class JetPlotsExample< Jet >

Definition at line 15 of file JetPlotsExample.h.

Member Typedef Documentation

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

Definition at line 20 of file JetPlotsExample.h.

Constructor & Destructor Documentation

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

Definition at line 25 of file JetPlotsExample.cc.

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

26 {
27  JetAlgorithm = cfg.getParameter<std::string> ("JetAlgorithm");
28  HistoFileName = cfg.getParameter<std::string> ("HistoFileName");
29  NJets = cfg.getParameter<int> ("NJets");
30 }
tuple cfg
Definition: looper.py:293
std::string HistoFileName
std::string JetAlgorithm

Member Function Documentation

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

Implements edm::EDAnalyzer.

Definition at line 49 of file JetPlotsExample.cc.

References edm::Event::getByLabel(), cmsHarvester::index, and fwrapper::jets.

50 {
53  evt.getByLabel(JetAlgorithm,jets);
54  typename JetCollection::const_iterator i_jet;
55  int index = 0;
56  TString hname;
58  hname = "NumberOfJets";
59  FillHist1D(hname,jets->size());
61  for(i_jet = jets->begin(); i_jet != jets->end() && index < NJets; ++i_jet)
62  {
63  hname = "JetPt";
64  FillHist1D(hname,i_jet->pt());
65  hname = "JetEta";
66  FillHist1D(hname,i_jet->eta());
67  hname = "JetPhi";
68  FillHist1D(hname,i_jet->phi());
69  index++;
70  }
71 }
void FillHist1D(const TString &histName, const Double_t &x)
std::string JetAlgorithm
vector< PseudoJet > jets
template<class Jet >
void JetPlotsExample< Jet >::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 33 of file JetPlotsExample.cc.

References M_PI.

34 {
35  TString hname;
36  m_file = new TFile(HistoFileName.c_str(),"RECREATE");
38  hname = "JetPt";
39  m_HistNames1D[hname] = new TH1F(hname,hname,100,0,1000);
40  hname = "JetEta";
41  m_HistNames1D[hname] = new TH1F(hname,hname,120,-6,6);
42  hname = "JetPhi";
43  m_HistNames1D[hname] = new TH1F(hname,hname,100,-M_PI,M_PI);
44  hname = "NumberOfJets";
45  m_HistNames1D[hname] = new TH1F(hname,hname,100,0,100);
46 }
std::string HistoFileName
std::map< TString, TH1 * > m_HistNames1D
#define M_PI
template<class Jet >
void JetPlotsExample< Jet >::endJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 74 of file JetPlotsExample.cc.

75 {
77  if (m_file !=0)
78  {
79  m_file->cd();
80  for (std::map<TString, TH1*>::iterator hid = m_HistNames1D.begin(); hid != m_HistNames1D.end(); hid++)
81  hid->second->Write();
82  delete m_file;
83  m_file = 0;
84  }
85 }
std::map< TString, TH1 * > m_HistNames1D
template<class Jet >
void JetPlotsExample< Jet >::FillHist1D ( const TString &  histName,
const Double_t &  x 
)
private

Definition at line 88 of file JetPlotsExample.cc.

References gather_cfg::cout.

89 {
90  std::map<TString, TH1*>::iterator hid=m_HistNames1D.find(histName);
91  if (hid==m_HistNames1D.end())
92  std::cout << "%fillHist -- Could not find histogram with name: " << histName << std::endl;
93  else
94  hid->second->Fill(value);
95 }
std::map< TString, TH1 * > m_HistNames1D
tuple cout
Definition: gather_cfg.py:121

Member Data Documentation

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

Definition at line 31 of file JetPlotsExample.h.

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

Definition at line 29 of file JetPlotsExample.h.

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

Definition at line 26 of file JetPlotsExample.h.

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

Definition at line 25 of file JetPlotsExample.h.

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

Definition at line 33 of file JetPlotsExample.h.