CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TTbar_GenJetAnalyzer.cc
Go to the documentation of this file.
2 
3 
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 
12  genEventInfoProductTagToken_=consumes<GenEventInfoProduct>(genEventInfoProductTag_);
13  jetsToken_=consumes<std::vector<reco::GenJet> >(jets_);
14 
15 }
16 
17 
19 {
20 
21  // do anything here that needs to be done at desctruction time
22  // (e.g. close files, deallocate resources etc.)
23 
24 }
25 
26 
27 //
28 // member functions
29 //
30 
31 // ------------ method called for each event ------------
32 void
33 
35 {
36  using namespace edm;
37 
38  // --- the MC weights ---
40  iEvent.getByToken(genEventInfoProductTagToken_, evt_info);
41  if(!evt_info.isValid()) return;
42  weight = evt_info->weight() ;
43 
44  // Gather information in the GenJet collection
46  iEvent.getByToken(jetsToken_, jets );
47 
48  if(!jets.isValid()) return;
49  // loop Jet collection and fill histograms
50  int njets = 0;
51  for(std::vector<reco::GenJet>::const_iterator jet_it=jets->begin(); jet_it!=jets->end(); ++jet_it){
52 
53  ++njets;
54 
55  hists_["jetPtAll" ]->Fill( jet_it->pt() , weight );
56  hists_["jetEtaAll"]->Fill( jet_it->eta(), weight );
57 
58  if (njets == 1) { hists_["jetPt1" ]->Fill( jet_it->pt() , weight );
59  hists_["jetEta1"]->Fill( jet_it->eta(), weight );
60  }
61  if (njets == 2) { hists_["jetPt2" ]->Fill( jet_it->pt() , weight );
62  hists_["jetEta2"]->Fill( jet_it->eta(), weight );
63  }
64  if (njets == 3) { hists_["jetPt3" ]->Fill( jet_it->pt() , weight );
65  hists_["jetEta3"]->Fill( jet_it->eta(), weight );
66  }
67  if (njets == 4) { hists_["jetPt4" ]->Fill( jet_it->pt() , weight );
68  hists_["jetEta4"]->Fill( jet_it->eta(), weight );
69  }
70  }
71 
72 }
73 
74 
75 // ------------ method called once each job just before starting event loop ------------
76 void
78 {
79  if(!dbe) return;
80  dbe->setCurrentFolder("Generator/TTbar");
81  hists_["jetPtAll" ] = dbe->book1D("TTbar_jetPtAll" , "pt" , 1000, 0., 1000.);
82  hists_["jetPt1" ] = dbe->book1D("TTbar_jetPt1" , "pt" , 1000, 0., 1000.);
83  hists_["jetPt2" ] = dbe->book1D("TTbar_jetPt2" , "pt" , 1000, 0., 1000.);
84  hists_["jetPt3" ] = dbe->book1D("TTbar_jetPt3" , "pt" , 1000, 0., 1000.);
85  hists_["jetPt4" ] = dbe->book1D("TTbar_jetPt4" , "pt" , 1000, 0., 1000.);
86 
87  hists_["jetEtaAll"] = dbe->book1D("TTbar_jetEtaAll", "eta", 100, -5., 5.);
88  hists_["jetEta1" ] = dbe->book1D("TTbar_jetEta1" , "eta", 100, -5., 5.);
89  hists_["jetEta2" ] = dbe->book1D("TTbar_jetEta2" , "eta", 100, -5., 5.);
90  hists_["jetEta3" ] = dbe->book1D("TTbar_jetEta3" , "eta", 100, -5., 5.);
91  hists_["jetEta4" ] = dbe->book1D("TTbar_jetEta4" , "eta", 100, -5., 5.);
92 }
93 
94 // ------------ method called once each job just after ending the event loop ------------
95 void
97 {
98 }
99 
100 // ------------ method called when starting to processes a run ------------
101 void
103 {
104 }
105 
106 // ------------ method called when ending the processing of a run ------------
107 void
109 {
110 }
111 
112 // ------------ method called when starting to processes a luminosity block ------------
113 void
115 {
116 }
117 
118 // ------------ method called when ending the processing of a luminosity block ------------
119 void
121 {
122 }
123 
124 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
125 void
127  //The following says we do not know what parameters are allowed so do no validation
128  // Please change this to state exactly what you do use, even if it is no parameters
130  desc.setUnknown();
131  descriptions.addDefault(desc);
132 }
133 
edm::EDGetTokenT< std::vector< reco::GenJet > > jetsToken_
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:872
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
virtual void analyze(const edm::Event &, const edm::EventSetup &)
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
int iEvent
Definition: GenABIO.cc:243
void addDefault(ParameterSetDescription const &psetDescription)
vector< PseudoJet > jets
virtual void endLuminosityBlock(edm::LuminosityBlock const &, edm::EventSetup const &)
edm::InputTag genEventInfoProductTag_
edm::EDGetTokenT< GenEventInfoProduct > genEventInfoProductTagToken_
std::map< std::string, MonitorElement * > hists_
virtual void beginRun(edm::Run const &, edm::EventSetup const &)
DQMStore * dbe
ME&#39;s &quot;container&quot;.
virtual void endRun(edm::Run const &, edm::EventSetup const &)
virtual void beginLuminosityBlock(edm::LuminosityBlock const &, edm::EventSetup const &)
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:584
Definition: Run.h:41
TTbar_GenJetAnalyzer(const edm::ParameterSet &)