CMS 3D CMS Logo

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

#include <TTbar_GenJetAnalyzer.h>

Inheritance diagram for TTbar_GenJetAnalyzer:
edm::EDAnalyzer

Public Member Functions

 TTbar_GenJetAnalyzer (const edm::ParameterSet &)
 
 ~TTbar_GenJetAnalyzer ()
 
- Public Member Functions inherited from edm::EDAnalyzer
 EDAnalyzer ()
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 

Private Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &)
 
virtual void beginJob ()
 
virtual void beginLuminosityBlock (edm::LuminosityBlock const &, edm::EventSetup const &)
 
virtual void beginRun (edm::Run const &, edm::EventSetup const &)
 
virtual void endJob ()
 
virtual void endLuminosityBlock (edm::LuminosityBlock const &, edm::EventSetup const &)
 
virtual void endRun (edm::Run const &, edm::EventSetup const &)
 

Private Attributes

DQMStoredbe
 ME's "container". More...
 
edm::InputTag genEventInfoProductTag_
 
std::map< std::string,
MonitorElement * > 
hists_
 
edm::InputTag jets_
 
double weight
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
typedef WorkerT< EDAnalyzerWorkerType
 
- Protected Member Functions inherited from edm::EDAnalyzer
CurrentProcessingContext const * currentContext () const
 

Detailed Description

Description: [one line class summary]

Implementation: [Notes on implementation]

Definition at line 57 of file TTbar_GenJetAnalyzer.h.

Constructor & Destructor Documentation

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

Definition at line 4 of file TTbar_GenJetAnalyzer.cc.

References dbe, and cppFunctionSkipper::operator.

4  :
5  jets_(iConfig.getParameter<edm::InputTag>("jets")),
6  genEventInfoProductTag_(iConfig.getParameter<edm::InputTag>("genEventInfoProductTag"))
7 {
8  //now do what ever initialization is needed
9  dbe = 0;
11 }
T getParameter(std::string const &) const
edm::InputTag genEventInfoProductTag_
DQMStore * dbe
ME&#39;s &quot;container&quot;.
TTbar_GenJetAnalyzer::~TTbar_GenJetAnalyzer ( )

Definition at line 14 of file TTbar_GenJetAnalyzer.cc.

15 {
16 
17  // do anything here that needs to be done at desctruction time
18  // (e.g. close files, deallocate resources etc.)
19 
20 }

Member Function Documentation

void TTbar_GenJetAnalyzer::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
privatevirtual

Implements edm::EDAnalyzer.

Definition at line 30 of file TTbar_GenJetAnalyzer.cc.

References genEventInfoProductTag_, edm::Event::getByLabel(), hists_, fwrapper::jets, jets_, and weight.

31 {
32  using namespace edm;
33 
34  // --- the MC weights ---
36  iEvent.getByLabel(genEventInfoProductTag_, evt_info);
37  if(!evt_info.isValid()) return;
38  weight = evt_info->weight() ;
39 
40  // Gather information in the GenJet collection
42  iEvent.getByLabel(jets_, jets );
43 
44  if(!jets.isValid()) return;
45  // loop Jet collection and fill histograms
46  int njets = 0;
47  for(std::vector<reco::GenJet>::const_iterator jet_it=jets->begin(); jet_it!=jets->end(); ++jet_it){
48 
49  ++njets;
50 
51  hists_["jetPtAll" ]->Fill( jet_it->pt() , weight );
52  hists_["jetEtaAll"]->Fill( jet_it->eta(), weight );
53 
54  if (njets == 1) { hists_["jetPt1" ]->Fill( jet_it->pt() , weight );
55  hists_["jetEta1"]->Fill( jet_it->eta(), weight );
56  }
57  if (njets == 2) { hists_["jetPt2" ]->Fill( jet_it->pt() , weight );
58  hists_["jetEta2"]->Fill( jet_it->eta(), weight );
59  }
60  if (njets == 3) { hists_["jetPt3" ]->Fill( jet_it->pt() , weight );
61  hists_["jetEta3"]->Fill( jet_it->eta(), weight );
62  }
63  if (njets == 4) { hists_["jetPt4" ]->Fill( jet_it->pt() , weight );
64  hists_["jetEta4"]->Fill( jet_it->eta(), weight );
65  }
66  }
67 
68 }
vector< PseudoJet > jets
edm::InputTag genEventInfoProductTag_
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
std::map< std::string, MonitorElement * > hists_
void TTbar_GenJetAnalyzer::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 73 of file TTbar_GenJetAnalyzer.cc.

References DQMStore::book1D(), dbe, hists_, and DQMStore::setCurrentFolder().

74 {
75  if(!dbe) return;
76  dbe->setCurrentFolder("Generator/TTbar");
77  hists_["jetPtAll" ] = dbe->book1D("TTbar_jetPtAll" , "pt" , 1000, 0., 1000.);
78  hists_["jetPt1" ] = dbe->book1D("TTbar_jetPt1" , "pt" , 1000, 0., 1000.);
79  hists_["jetPt2" ] = dbe->book1D("TTbar_jetPt2" , "pt" , 1000, 0., 1000.);
80  hists_["jetPt3" ] = dbe->book1D("TTbar_jetPt3" , "pt" , 1000, 0., 1000.);
81  hists_["jetPt4" ] = dbe->book1D("TTbar_jetPt4" , "pt" , 1000, 0., 1000.);
82 
83  hists_["jetEtaAll"] = dbe->book1D("TTbar_jetEtaAll", "eta", 100, -5., 5.);
84  hists_["jetEta1" ] = dbe->book1D("TTbar_jetEta1" , "eta", 100, -5., 5.);
85  hists_["jetEta2" ] = dbe->book1D("TTbar_jetEta2" , "eta", 100, -5., 5.);
86  hists_["jetEta3" ] = dbe->book1D("TTbar_jetEta3" , "eta", 100, -5., 5.);
87  hists_["jetEta4" ] = dbe->book1D("TTbar_jetEta4" , "eta", 100, -5., 5.);
88 }
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:717
std::map< std::string, MonitorElement * > hists_
DQMStore * dbe
ME&#39;s &quot;container&quot;.
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:429
void TTbar_GenJetAnalyzer::beginLuminosityBlock ( edm::LuminosityBlock const &  ,
edm::EventSetup const &   
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 110 of file TTbar_GenJetAnalyzer.cc.

111 {
112 }
void TTbar_GenJetAnalyzer::beginRun ( edm::Run const &  ,
edm::EventSetup const &   
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 98 of file TTbar_GenJetAnalyzer.cc.

99 {
100 }
void TTbar_GenJetAnalyzer::endJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 92 of file TTbar_GenJetAnalyzer.cc.

93 {
94 }
void TTbar_GenJetAnalyzer::endLuminosityBlock ( edm::LuminosityBlock const &  ,
edm::EventSetup const &   
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 116 of file TTbar_GenJetAnalyzer.cc.

117 {
118 }
void TTbar_GenJetAnalyzer::endRun ( edm::Run const &  ,
edm::EventSetup const &   
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 104 of file TTbar_GenJetAnalyzer.cc.

105 {
106 }
void TTbar_GenJetAnalyzer::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 122 of file TTbar_GenJetAnalyzer.cc.

References edm::ConfigurationDescriptions::addDefault(), and edm::ParameterSetDescription::setUnknown().

122  {
123  //The following says we do not know what parameters are allowed so do no validation
124  // Please change this to state exactly what you do use, even if it is no parameters
126  desc.setUnknown();
127  descriptions.addDefault(desc);
128 }
void addDefault(ParameterSetDescription const &psetDescription)

Member Data Documentation

DQMStore* TTbar_GenJetAnalyzer::dbe
private

ME's "container".

Definition at line 77 of file TTbar_GenJetAnalyzer.h.

Referenced by beginJob(), and TTbar_GenJetAnalyzer().

edm::InputTag TTbar_GenJetAnalyzer::genEventInfoProductTag_
private

Definition at line 80 of file TTbar_GenJetAnalyzer.h.

Referenced by analyze().

std::map<std::string, MonitorElement*> TTbar_GenJetAnalyzer::hists_
private

Definition at line 81 of file TTbar_GenJetAnalyzer.h.

Referenced by analyze(), and beginJob().

edm::InputTag TTbar_GenJetAnalyzer::jets_
private

Definition at line 79 of file TTbar_GenJetAnalyzer.h.

Referenced by analyze().

double TTbar_GenJetAnalyzer::weight
private

Definition at line 83 of file TTbar_GenJetAnalyzer.h.

Referenced by analyze().