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_Kinematics Class Reference

#include <TTbar_Kinematics.h>

Inheritance diagram for TTbar_Kinematics:
edm::EDAnalyzer

Public Member Functions

 TTbar_Kinematics (const edm::ParameterSet &)
 
 ~TTbar_Kinematics ()
 
- 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_
 
MonitorElementhBottomE
 
MonitorElementhBottomEta
 
MonitorElementhBottomEtaPt
 
MonitorElementhBottomEtaPz
 
MonitorElementhBottomMass
 
MonitorElementhBottomMassDeltaY
 
MonitorElementhBottomMassEta
 
MonitorElementhBottomMassPz
 
MonitorElementhBottomMassY
 
MonitorElementhBottomPt
 
MonitorElementhBottomPtPz
 
MonitorElementhBottomPz
 
MonitorElementhBottomY
 
MonitorElementhBottomYPz
 
edm::InputTag hepmcCollection_
 
MonitorElementhTopMass
 
MonitorElementhTopPt
 
MonitorElementhTopY
 
MonitorElementhTTbarMass
 
MonitorElementhTTbarPt
 
MonitorElementhTTbarY
 
MonitorElementhWminPz
 
MonitorElementhWplusPz
 
MonitorElementnEvt
 
TLorentzVector tlv_Bottom
 
TLorentzVector tlv_BottomBar
 
TLorentzVector tlv_Top
 
TLorentzVector tlv_TopBar
 
TLorentzVector tlv_TTbar
 
TLorentzVector tlv_Wmin
 
TLorentzVector tlv_Wplus
 
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 59 of file TTbar_Kinematics.h.

Constructor & Destructor Documentation

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

Definition at line 8 of file TTbar_Kinematics.cc.

References dbe, and cppFunctionSkipper::operator.

8  :
9  hepmcCollection_(iConfig.getParameter<edm::InputTag>("hepmcCollection"))
10  ,genEventInfoProductTag_(iConfig.getParameter<edm::InputTag>("genEventInfoProductTag"))
11 {
12  dbe = 0;
14 }
T getParameter(std::string const &) const
edm::InputTag genEventInfoProductTag_
DQMStore * dbe
ME&#39;s &quot;container&quot;.
edm::InputTag hepmcCollection_
TTbar_Kinematics::~TTbar_Kinematics ( )

Definition at line 17 of file TTbar_Kinematics.cc.

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

Member Function Documentation

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

Gathering the HepMCProduct information

Implements edm::EDAnalyzer.

Definition at line 32 of file TTbar_Kinematics.cc.

References PdtPdgMini::anti_b, PdtPdgMini::anti_t, PdtPdgMini::b, MonitorElement::Fill(), genEventInfoProductTag_, edm::Event::getByLabel(), hBottomE, hBottomEta, hBottomEtaPt, hBottomEtaPz, hBottomMass, hBottomMassDeltaY, hBottomMassEta, hBottomMassPz, hBottomMassY, hBottomPt, hBottomPtPz, hBottomPz, hBottomY, hBottomYPz, hepmcCollection_, hTopMass, hTopPt, hTopY, hTTbarMass, hTTbarPt, hTTbarY, hWminPz, hWplusPz, edm::HandleBase::isValid(), nEvt, PdtPdgMini::t, tlv_Bottom, tlv_BottomBar, tlv_Top, tlv_TopBar, tlv_TTbar, tlv_Wmin, tlv_Wplus, PdtPdgMini::W_minus, PdtPdgMini::W_plus, and weight.

33 {
34 
35  // --- the MC weights ---
37  iEvent.getByLabel(genEventInfoProductTag_, evt_info);
38  if(!evt_info.isValid()) return;
39  weight = evt_info->weight() ;
40 
41  /*
42  // --- get TopQuarkAnalysis TtGenEvent
43  Handle<TtGenEvent> genEvt;
44  iEvent.getByLabel("genEvt", genEvt);
45 
46  if(!genEvt.isValid())return;
47  */
48 
51  iEvent.getByLabel(hepmcCollection_, evt);
52 
53  //Get EVENT
54  HepMC::GenEvent *myGenEvent = new HepMC::GenEvent(*(evt->GetEvent()));
55 
57  bool top(false), antitop(false), antibottom(false), bottom(false), Wplus(false), Wmin(false);
58  for(HepMC::GenEvent::particle_const_iterator iter = myGenEvent->particles_begin(); iter != myGenEvent->particles_end(); iter++) {
59  if((*iter)->pdg_id()==PdtPdgMini::t || (*iter)->pdg_id()==PdtPdgMini::anti_t){
60  if( (*iter)->end_vertex()){
61  HepMC::GenVertex::particle_iterator des;
62  for(des = (*iter)->end_vertex()->particles_begin(HepMC::children);des!= (*iter)->end_vertex()->particles_end(HepMC::children);++des ){
63  if((*des)->pdg_id()==PdtPdgMini::b){
64  tlv_Bottom.SetPxPyPzE((*des)->momentum().px(),(*des)->momentum().py(),(*des)->momentum().pz(),(*des)->momentum().e());
65  bottom=true;
66  }
67  if((*des)->pdg_id()==PdtPdgMini::anti_b){
68  antibottom=true;
69  tlv_BottomBar.SetPxPyPzE((*des)->momentum().px(),(*des)->momentum().py(),(*des)->momentum().pz(),(*des)->momentum().e());
70  }
71  if((*des)->pdg_id()==PdtPdgMini::W_plus){
72  tlv_TopBar.SetPxPyPzE((*iter)->momentum().px(),(*iter)->momentum().py(),(*iter)->momentum().pz(),(*iter)->momentum().e()); antitop=true;
73  tlv_Wplus.SetPxPyPzE((*des)->momentum().px(),(*des)->momentum().py(),(*des)->momentum().pz(),(*des)->momentum().e()); Wplus=true;
74  }
75  if((*des)->pdg_id()==PdtPdgMini::W_minus){
76  tlv_Top.SetPxPyPzE((*iter)->momentum().px(),(*iter)->momentum().py(),(*iter)->momentum().pz(),(*iter)->momentum().e()); top=true;
77  tlv_Wmin.SetPxPyPzE((*des)->momentum().px(),(*des)->momentum().py(),(*des)->momentum().pz(),(*des)->momentum().e()); Wmin=true;
78  }
79  }
80  }
81  }
82  }
83 
84  tlv_TTbar = tlv_Top + tlv_TopBar ;
85 
86  //---topquarkquantities---
87  nEvt->Fill(0.5,weight);
88  if(top && antitop){
89  hTopPt->Fill(tlv_Top.Pt(),weight);
90  hTopPt->Fill(tlv_TopBar.Pt(),weight);
91 
92  hTopY->Fill(tlv_Top.Rapidity(),weight);
93  hTopY->Fill(tlv_TopBar.Rapidity(),weight);
94 
95  hTopMass->Fill(tlv_Top.M(),weight);
96  hTopMass->Fill(tlv_TopBar.M(),weight);
97 
98  //---ttbarpairquantities---
99  hTTbarPt->Fill(tlv_TTbar.Pt(),weight);
100  hTTbarY->Fill(tlv_TTbar.Rapidity(),weight);
101  hTTbarMass->Fill(tlv_TTbar.M(),weight);
102  }
103  if(bottom && antibottom){
104  hBottomPt->Fill(tlv_Bottom.Pt(),weight);
105  hBottomPt->Fill(tlv_BottomBar.Pt(),weight);
106 
107  hBottomEta->Fill(tlv_Bottom.Eta(),weight);
108  hBottomEta->Fill(tlv_BottomBar.Eta(),weight);
109 
110  //hBottomY->Fill(math::XYZTLorentzVector(bottom->momentum()).Rapidity(),weight);
111  //hBottomY->Fill(math::XYZTLorentzVector(antibottom->momentum()).Rapidity(),weight);
112 
113  hBottomY->Fill(tlv_Bottom.Rapidity(),weight);
114  hBottomY->Fill(tlv_BottomBar.Rapidity(),weight);
115 
116  hBottomPz->Fill(tlv_Bottom.Pz(),weight);
117  hBottomPz->Fill(tlv_BottomBar.Pz(),weight);
118 
119  hBottomE->Fill(tlv_Bottom.E(),weight);
120  hBottomE->Fill(tlv_BottomBar.E(),weight);
121 
122  hBottomMass->Fill(tlv_Bottom.M(),weight);
123  hBottomMass->Fill(tlv_BottomBar.M(),weight);
124 
125  hBottomPtPz->Fill(tlv_Bottom.Pt(),tlv_Bottom.Pz(),weight);
126  hBottomPtPz->Fill(tlv_BottomBar.Pt(),tlv_BottomBar.Pz(),weight);
127 
128  hBottomEtaPz->Fill(tlv_Bottom.Eta(),tlv_Bottom.Pz(),weight);
129  hBottomEtaPz->Fill(tlv_BottomBar.Eta(),tlv_BottomBar.Pz(),weight);
130 
131  hBottomEtaPt->Fill(tlv_Bottom.Eta(),tlv_Bottom.Pt(),weight);
132  hBottomEtaPt->Fill(tlv_BottomBar.Eta(),tlv_BottomBar.Pt(),weight);
133 
134  hBottomYPz->Fill(tlv_Bottom.Rapidity(),tlv_Bottom.Pz(),weight);
135  hBottomYPz->Fill(tlv_BottomBar.Rapidity(),tlv_BottomBar.Pz(),weight);
136 
137  hBottomMassPz->Fill(tlv_Bottom.M(),tlv_Bottom.Pz(),weight);
138  hBottomMassPz->Fill(tlv_BottomBar.M(),tlv_BottomBar.Pz(),weight);
139 
140  hBottomMassEta->Fill(tlv_Bottom.M(),tlv_Bottom.Eta(),weight);
141  hBottomMassEta->Fill(tlv_BottomBar.M(),tlv_BottomBar.Eta(),weight);
142 
143  hBottomMassY->Fill(tlv_Bottom.M(),tlv_Bottom.Rapidity(),weight);
144  hBottomMassY->Fill(tlv_BottomBar.M(),tlv_BottomBar.Rapidity(),weight);
145 
146  hBottomMassDeltaY->Fill(tlv_Bottom.M(),tlv_Bottom.Eta()-tlv_Bottom.Rapidity(),weight);
147  hBottomMassDeltaY->Fill(tlv_BottomBar.M(),tlv_BottomBar.Eta()-tlv_BottomBar.Rapidity(),weight);
148  }
149  if(Wplus && Wmin){
150  hWplusPz->Fill(tlv_Wplus.Pz(),weight);
151  hWminPz->Fill(tlv_Wmin.Pz(),weight);
152  }
153 }
MonitorElement * hBottomYPz
MonitorElement * nEvt
TLorentzVector tlv_Bottom
MonitorElement * hBottomMass
MonitorElement * hBottomPtPz
MonitorElement * hTTbarMass
MonitorElement * hBottomMassY
TLorentzVector tlv_Wplus
MonitorElement * hBottomEtaPt
void Fill(long long x)
MonitorElement * hBottomEta
TLorentzVector tlv_TopBar
MonitorElement * hTopMass
MonitorElement * hTTbarY
TLorentzVector tlv_TTbar
MonitorElement * hWminPz
bool isValid() const
Definition: HandleBase.h:76
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
TLorentzVector tlv_BottomBar
MonitorElement * hBottomMassPz
MonitorElement * hBottomMassEta
edm::InputTag genEventInfoProductTag_
MonitorElement * hBottomPz
MonitorElement * hTopY
TLorentzVector tlv_Wmin
MonitorElement * hTTbarPt
MonitorElement * hBottomMassDeltaY
MonitorElement * hBottomPt
MonitorElement * hTopPt
TLorentzVector tlv_Top
MonitorElement * hBottomE
MonitorElement * hWplusPz
edm::InputTag hepmcCollection_
MonitorElement * hBottomEtaPz
MonitorElement * hBottomY
void TTbar_Kinematics::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 158 of file TTbar_Kinematics.cc.

References DQMStore::book1D(), DQMStore::book2D(), dbe, hBottomE, hBottomEta, hBottomEtaPt, hBottomEtaPz, hBottomMass, hBottomMassDeltaY, hBottomMassEta, hBottomMassPz, hBottomMassY, hBottomPt, hBottomPtPz, hBottomPz, hBottomY, hBottomYPz, hTopMass, hTopPt, hTopY, hTTbarMass, hTTbarPt, hTTbarY, hWminPz, hWplusPz, nEvt, MonitorElement::setAxisTitle(), and DQMStore::setCurrentFolder().

159 {
160  if(!dbe) return;
161  dbe->setCurrentFolder("Generator/TTbar");
162 
163  nEvt = dbe->book1D("nEvt", "n analyzed Events", 1, 0., 1.);
164 
165  hTopPt = dbe->book1D("TTbar_TopPt","t quark transverse momentum",1000,0.,1000.); hTopPt->setAxisTitle("t quark transverse momentum");
166  hTopY = dbe->book1D("TTbar_TopY","t quark rapidity",200,-5.,5.); hTopY->setAxisTitle("t quark rapidity");
167  hTopMass = dbe->book1D("TTbar_TopMass","t quark mass",500,0.,500.); hTopMass->setAxisTitle("t quark mass");
168 
169  hTTbarPt = dbe->book1D("TTbar_TTbarPt","tt pair transverse momentum",1000,0.,1000.); hTTbarPt->setAxisTitle("tt pair transverse momentum");
170  hTTbarY = dbe->book1D("TTbar_TTbarY","tt pair rapidity",200,-5.,5.); hTTbarY->setAxisTitle("tt pair rapidity");
171  hTTbarMass = dbe->book1D("TTbar_TTbarMass","tt pair mass",1000,0.,1000.); hTTbarMass->setAxisTitle("tt pair mass");
172 
173  hBottomPt = dbe->book1D("TTbar_BottomPt","b quark transverse momentum",1000,0.,1000.); hBottomPt->setAxisTitle("b quark transverse momentum");
174  hBottomEta = dbe->book1D("TTbar_BottomEta","b quark pseudo-rapidity",200,-5.,5.); hBottomEta->setAxisTitle("b quark pseudo-rapidity");
175  hBottomY = dbe->book1D("TTbar_BottomY","b quark rapidity",200,-5.,5.); hBottomY->setAxisTitle("b quark rapidity");
176  hBottomPz = dbe->book1D("TTbar_BottomPz","b quark longitudinal momentum",200,-100.,100.); hBottomPz->setAxisTitle("b quark longitudinal momentum");
177  hBottomE = dbe->book1D("TTbar_BottomE","b quark energy",1000,0.,1000.); hBottomE->setAxisTitle("b quark energy");
178  hBottomMass = dbe->book1D("TTbar_BottomMass","b quark mass",50,0.,5.); hBottomMass->setAxisTitle("b quark mass");
179 
180  hBottomPtPz = dbe->book2D("TTbar_BottomPtPz","b quark longitudinal vs transverse momentum",1000,0.,1000.,200,-100.,100.); hBottomPtPz->setAxisTitle("P_{z} (GeV)",1);hBottomPtPz->setAxisTitle("P_{t} (GeV)",2);
181  hBottomEtaPz = dbe->book2D("TTbar_BottomEtaPz","b quark longitudinal momentum vs pseudorapidity",200,-5.,5.,200,-100.,100.); hBottomEtaPz->setAxisTitle("#eta",1);hBottomEtaPz->setAxisTitle("P_{z} (GeV)",1);
182  hBottomEtaPt = dbe->book2D("TTbar_BottomEtaPt"," quark transveral momentum vs pseudorapidity",200,-5.,5.,1000,0.,1000.); hBottomEtaPt->setAxisTitle("#eta");hBottomEtaPt->setAxisTitle("P_{t} (GeV)");
183  hBottomYPz = dbe->book2D("TTbar_BottomYPz","b quark longitudinal momentum vs rapidity",200,-5.,5.,200,-100.,100.); hBottomYPz->setAxisTitle("Y");hBottomYPz->setAxisTitle("P_{z} (GeV)");
184  hBottomMassPz = dbe->book2D("TTbar_BottomMassPz","b quark longitudinal momentum vs mass",50,0.,5.,200,-100.,100.); hBottomMassPz->setAxisTitle("M (GeV)");hBottomMassPz->setAxisTitle("P_{z} (GeV)");
185  hBottomMassEta = dbe->book2D("TTbar_BottomMassEta","b quark pseudorapidity vs mass",50,0.,5.,200,-5.,5.); hBottomMassEta->setAxisTitle("M (GeV)");hBottomMassEta->setAxisTitle("#eta");
186  hBottomMassY = dbe->book2D("TTbar_BottomMassY","b quark rapidity vs mass",50,0.,5.,200,-5.,5.); hBottomMassY->setAxisTitle("M (GeV)"); hBottomMassY->setAxisTitle("Y");
187  hBottomMassDeltaY = dbe->book2D("TTbar_BottomMassDeltaY","b quark pseudorapidity - rapidity vs mass",50,0.,50.,2000,-5.,5.); hBottomMassDeltaY->setAxisTitle("M (GeV)");hBottomMassDeltaY->setAxisTitle("Y");
188 
189  hWplusPz = dbe->book1D("TTbar_WplusPz","W+ boson longitudinal momentum",200,-100.,100.); hWplusPz->setAxisTitle("W+ boson longitudinal momentum");
190  hWminPz = dbe->book1D("TTbar_WminPz","W- boson longitudinal momentum",200,-100.,100.); hWminPz->setAxisTitle("W- boson longitudinal momentum");
191 
192 }
MonitorElement * hBottomYPz
MonitorElement * nEvt
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:717
MonitorElement * hBottomMass
MonitorElement * hBottomPtPz
MonitorElement * hTTbarMass
MonitorElement * hBottomMassY
MonitorElement * hBottomEtaPt
MonitorElement * hBottomEta
MonitorElement * hTopMass
MonitorElement * hTTbarY
MonitorElement * hWminPz
MonitorElement * hBottomMassPz
MonitorElement * hBottomMassEta
MonitorElement * hBottomPz
MonitorElement * hTopY
MonitorElement * hTTbarPt
MonitorElement * hBottomMassDeltaY
MonitorElement * hBottomPt
MonitorElement * hTopPt
MonitorElement * hBottomE
MonitorElement * hWplusPz
DQMStore * dbe
ME&#39;s &quot;container&quot;.
MonitorElement * book2D(const char *name, const char *title, int nchX, double lowX, double highX, int nchY, double lowY, double highY)
Book 2D histogram.
Definition: DQMStore.cc:845
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
MonitorElement * hBottomEtaPz
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:429
MonitorElement * hBottomY
void TTbar_Kinematics::beginLuminosityBlock ( edm::LuminosityBlock const &  ,
edm::EventSetup const &   
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 214 of file TTbar_Kinematics.cc.

215 {
216 }
void TTbar_Kinematics::beginRun ( edm::Run const &  ,
edm::EventSetup const &   
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 202 of file TTbar_Kinematics.cc.

203 {
204 }
void TTbar_Kinematics::endJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 196 of file TTbar_Kinematics.cc.

197 {
198 }
void TTbar_Kinematics::endLuminosityBlock ( edm::LuminosityBlock const &  ,
edm::EventSetup const &   
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 220 of file TTbar_Kinematics.cc.

221 {
222 }
void TTbar_Kinematics::endRun ( edm::Run const &  ,
edm::EventSetup const &   
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 208 of file TTbar_Kinematics.cc.

209 {
210 }
void TTbar_Kinematics::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 226 of file TTbar_Kinematics.cc.

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

226  {
227  //The following says we do not know what parameters are allowed so do no validation
228  // Please change this to state exactly what you do use, even if it is no parameters
230  desc.setUnknown();
231  descriptions.addDefault(desc);
232 }
void addDefault(ParameterSetDescription const &psetDescription)

Member Data Documentation

DQMStore* TTbar_Kinematics::dbe
private

ME's "container".

Definition at line 79 of file TTbar_Kinematics.h.

Referenced by beginJob(), and TTbar_Kinematics().

edm::InputTag TTbar_Kinematics::genEventInfoProductTag_
private

Definition at line 82 of file TTbar_Kinematics.h.

Referenced by analyze().

MonitorElement* TTbar_Kinematics::hBottomE
private

Definition at line 109 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hBottomEta
private

Definition at line 106 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hBottomEtaPt
private

Definition at line 117 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hBottomEtaPz
private

Definition at line 116 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hBottomMass
private

Definition at line 110 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hBottomMassDeltaY
private

Definition at line 122 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hBottomMassEta
private

Definition at line 120 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hBottomMassPz
private

Definition at line 119 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hBottomMassY
private

Definition at line 121 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hBottomPt
private

Definition at line 105 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hBottomPtPz
private

Definition at line 115 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hBottomPz
private

Definition at line 108 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hBottomY
private

Definition at line 107 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hBottomYPz
private

Definition at line 118 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

edm::InputTag TTbar_Kinematics::hepmcCollection_
private

Definition at line 81 of file TTbar_Kinematics.h.

Referenced by analyze().

MonitorElement* TTbar_Kinematics::hTopMass
private

Definition at line 99 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hTopPt
private

Definition at line 97 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hTopY
private

Definition at line 98 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hTTbarMass
private

Definition at line 103 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hTTbarPt
private

Definition at line 101 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hTTbarY
private

Definition at line 102 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hWminPz
private

Definition at line 113 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::hWplusPz
private

Definition at line 112 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

MonitorElement* TTbar_Kinematics::nEvt
private

Definition at line 96 of file TTbar_Kinematics.h.

Referenced by analyze(), and beginJob().

TLorentzVector TTbar_Kinematics::tlv_Bottom
private

Definition at line 89 of file TTbar_Kinematics.h.

Referenced by analyze().

TLorentzVector TTbar_Kinematics::tlv_BottomBar
private

Definition at line 90 of file TTbar_Kinematics.h.

Referenced by analyze().

TLorentzVector TTbar_Kinematics::tlv_Top
private

Definition at line 87 of file TTbar_Kinematics.h.

Referenced by analyze().

TLorentzVector TTbar_Kinematics::tlv_TopBar
private

Definition at line 88 of file TTbar_Kinematics.h.

Referenced by analyze().

TLorentzVector TTbar_Kinematics::tlv_TTbar
private

Definition at line 94 of file TTbar_Kinematics.h.

Referenced by analyze().

TLorentzVector TTbar_Kinematics::tlv_Wmin
private

Definition at line 92 of file TTbar_Kinematics.h.

Referenced by analyze().

TLorentzVector TTbar_Kinematics::tlv_Wplus
private

Definition at line 91 of file TTbar_Kinematics.h.

Referenced by analyze().

double TTbar_Kinematics::weight
private

Definition at line 85 of file TTbar_Kinematics.h.

Referenced by analyze().