CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
HGCalTriggerNtupleGenTau Class Reference
Inheritance diagram for HGCalTriggerNtupleGenTau:
HGCalTriggerNtupleBase

Public Member Functions

void fill (const edm::Event &, const edm::EventSetup &) final
 
 HGCalTriggerNtupleGenTau (const edm::ParameterSet &)
 
void initialize (TTree &, const edm::ParameterSet &, edm::ConsumesCollector &&) final
 
- Public Member Functions inherited from HGCalTriggerNtupleBase
 HGCalTriggerNtupleBase (const edm::ParameterSet &conf)
 
virtual ~HGCalTriggerNtupleBase ()
 

Private Member Functions

void clear () final
 
bool isChargedPion (const reco::GenParticle &daughter) const
 
bool isElectron (const reco::GenParticle &daughter) const
 
bool isGamma (const reco::GenParticle &daughter) const
 
bool isGoodTau (const reco::GenParticle &candidate) const
 
bool isIntermediateResonance (const reco::GenParticle &daughter) const
 
bool isMuon (const reco::GenParticle &daughter) const
 
bool isNeutralPion (const reco::GenParticle &daughter) const
 
bool isStableLepton (const reco::GenParticle &daughter) const
 

Private Attributes

edm::EDGetToken gen_token_
 
std::vector< int > gentau_decayMode_
 
std::vector< float > gentau_energy_
 
std::vector< float > gentau_eta_
 
std::vector< float > gentau_mass_
 
std::vector< float > gentau_phi_
 
std::vector< std::vector< float > > gentau_products_energy_
 
std::vector< std::vector< float > > gentau_products_eta_
 
std::vector< std::vector< int > > gentau_products_id_
 
std::vector< std::vector< float > > gentau_products_mass_
 
std::vector< std::vector< float > > gentau_products_phi_
 
std::vector< std::vector< float > > gentau_products_pt_
 
std::vector< float > gentau_pt_
 
std::vector< int > gentau_totNcharged_
 
std::vector< int > gentau_totNgamma_
 
std::vector< int > gentau_totNproducts_
 
std::vector< float > gentau_vis_energy_
 
std::vector< float > gentau_vis_eta_
 
std::vector< float > gentau_vis_mass_
 
std::vector< float > gentau_vis_phi_
 
std::vector< float > gentau_vis_pt_
 
bool isPythia8generator_
 

Additional Inherited Members

Detailed Description

Definition at line 9 of file HGCalTriggerNtupleGenTau.cc.

Constructor & Destructor Documentation

HGCalTriggerNtupleGenTau::HGCalTriggerNtupleGenTau ( const edm::ParameterSet conf)

Definition at line 64 of file HGCalTriggerNtupleGenTau.cc.

References initialize().

65 {
66 }
HGCalTriggerNtupleBase(const edm::ParameterSet &conf)

Member Function Documentation

void HGCalTriggerNtupleGenTau::clear ( void  )
finalprivatevirtual

Implements HGCalTriggerNtupleBase.

Definition at line 298 of file HGCalTriggerNtupleGenTau.cc.

References gentau_decayMode_, gentau_energy_, gentau_eta_, gentau_mass_, gentau_phi_, gentau_products_energy_, gentau_products_eta_, gentau_products_id_, gentau_products_mass_, gentau_products_phi_, gentau_products_pt_, gentau_pt_, gentau_totNcharged_, gentau_totNgamma_, gentau_totNproducts_, gentau_vis_energy_, gentau_vis_eta_, gentau_vis_mass_, gentau_vis_phi_, and gentau_vis_pt_.

Referenced by fill().

299 {
300  gentau_pt_.clear();
301  gentau_eta_.clear();
302  gentau_phi_.clear();
303  gentau_energy_.clear();
304  gentau_mass_.clear();
305  gentau_decayMode_.clear();
306  gentau_vis_pt_.clear();
307  gentau_vis_eta_.clear();
308  gentau_vis_phi_.clear();
309  gentau_vis_energy_.clear();
310  gentau_vis_mass_.clear();
311  gentau_totNproducts_.clear();
312  gentau_totNgamma_.clear();
313  gentau_totNcharged_.clear();
314  gentau_products_pt_.clear();
315  gentau_products_eta_.clear();
316  gentau_products_phi_.clear();
317  gentau_products_energy_.clear();
318  gentau_products_mass_.clear();
319  gentau_products_id_.clear();
320 }
std::vector< std::vector< float > > gentau_products_mass_
std::vector< std::vector< float > > gentau_products_phi_
std::vector< float > gentau_vis_phi_
std::vector< std::vector< float > > gentau_products_pt_
std::vector< std::vector< float > > gentau_products_eta_
std::vector< float > gentau_vis_pt_
std::vector< float > gentau_vis_energy_
std::vector< std::vector< float > > gentau_products_energy_
std::vector< float > gentau_vis_mass_
std::vector< std::vector< int > > gentau_products_id_
std::vector< float > gentau_vis_eta_
std::vector< int > gentau_totNproducts_
std::vector< int > gentau_totNcharged_
std::vector< float > gentau_energy_
void HGCalTriggerNtupleGenTau::fill ( const edm::Event e,
const edm::EventSetup es 
)
finalvirtual

Implements HGCalTriggerNtupleBase.

Definition at line 152 of file HGCalTriggerNtupleGenTau.cc.

References clear(), BPhysicsValidation_cfi::daughters, gen_token_, gentau_decayMode_, gentau_energy_, gentau_eta_, gentau_mass_, gentau_phi_, gentau_products_energy_, gentau_products_eta_, gentau_products_id_, gentau_products_mass_, gentau_products_phi_, gentau_products_pt_, gentau_pt_, gentau_totNcharged_, gentau_totNgamma_, gentau_totNproducts_, gentau_vis_energy_, gentau_vis_eta_, gentau_vis_mass_, gentau_vis_phi_, gentau_vis_pt_, edm::Event::getByToken(), isChargedPion(), isElectron(), isGamma(), isGoodTau(), isIntermediateResonance(), isMuon(), isNeutralPion(), isPythia8generator_, isStableLepton(), parseEventContent::prod, and edm::RefVector< C, T, F >::push_back().

Referenced by isIntermediateResonance().

153 {
155  e.getByToken(gen_token_, gen_particles_h);
156  const reco::GenParticleCollection& gen_particles = *gen_particles_h;
157 
158  clear();
159 
160  for(const auto& particle : gen_particles)
161  {
162 
163  /* select good taus */
164  if( isGoodTau( particle ) ){
165 
166  LorentzVector tau_p4vis(0.,0.,0.,0.);
167  gentau_pt_.emplace_back( particle.pt() );
168  gentau_eta_.emplace_back( particle.eta() );
169  gentau_phi_.emplace_back( particle.phi() );
170  gentau_energy_.emplace_back( particle.energy() );
171  gentau_mass_.emplace_back( particle.mass() );
172 
173  int n_pi=0;
174  int n_piZero=0;
175  int n_gamma=0;
176  int n_ele=0;
177  int n_mu=0;
178 
179  std::vector<float> tau_products_pt;
180  std::vector<float> tau_products_eta;
181  std::vector<float> tau_products_phi;
182  std::vector<float> tau_products_energy;
183  std::vector<float> tau_products_mass;
184  std::vector< int > tau_products_id;
185 
186  /* loop over tau daughters */
187  const reco::GenParticleRefVector& daughters = particle.daughterRefVector();
188 
189  for( const auto& daughter : daughters ){
190 
191  reco::GenParticleRefVector finalProds;
192 
193  if( isStableLepton( *daughter ) ){
194  if( isElectron( *daughter ) ){
195  n_ele++;
196  }
197  else if( isMuon( *daughter ) ){
198  n_mu++;
199  }
200  tau_p4vis+=(daughter->p4());
201  finalProds.push_back( daughter );
202  }
203 
204  if( isChargedPion( *daughter ) ){
205  n_pi++;
206  tau_p4vis+=(daughter->p4());
207  finalProds.push_back( daughter );
208  }
209 
210  if( isNeutralPion( *daughter ) ){
211  n_piZero++;
212  const reco::GenParticleRefVector& grandaughters = daughter->daughterRefVector();
213  for( const auto& grandaughter : grandaughters ){
214  if( isGamma( *grandaughter ) ){
215  n_gamma++;
216  tau_p4vis+=(grandaughter->p4());
217  finalProds.push_back( daughter );
218  }
219  }
220  }
221 
222  /* Here the selection of the decay product according to the Pythia6 decayTree */
223  if( !isPythia8generator_ ){
224  if( isIntermediateResonance( *daughter ) ){
225  const reco::GenParticleRefVector& grandaughters = daughter->daughterRefVector();
226  for( const auto& grandaughter : grandaughters ){
227  if( isChargedPion( *grandaughter ) ){
228  n_pi++;
229  tau_p4vis+=(grandaughter->p4());
230  finalProds.push_back( daughter );
231  }
232  if( isNeutralPion( *grandaughter ) ){
233  n_piZero++;
234  const reco::GenParticleRefVector& descendants = grandaughter->daughterRefVector();
235  for( const auto& descendant : descendants ){
236  if( isGamma( *descendant ) ){
237  n_gamma++;
238  tau_p4vis+=(descendant->p4());
239  finalProds.push_back( daughter );
240  }
241  }
242  }
243  }
244  }
245  }
246 
247  /* Fill daughter informations */
248  for( const auto& prod : finalProds ){
249  tau_products_pt.emplace_back( prod->pt() );
250  tau_products_eta.emplace_back( prod->eta() );
251  tau_products_phi.emplace_back( prod->phi() );
252  tau_products_energy.emplace_back( prod->energy() );
253  tau_products_mass.emplace_back( prod->mass() );
254  tau_products_id.emplace_back( prod->pdgId() );
255  }
256 
257  }
258 
259  /* assign the tau-variables */
260  gentau_vis_pt_.emplace_back(tau_p4vis.Pt());
261  gentau_vis_eta_.emplace_back(tau_p4vis.Eta());
262  gentau_vis_phi_.emplace_back(tau_p4vis.Phi());
263  gentau_vis_energy_.emplace_back(tau_p4vis.E());
264  gentau_vis_mass_.emplace_back(tau_p4vis.M());
265  gentau_totNproducts_.emplace_back(n_pi + n_gamma);
266  gentau_totNgamma_.emplace_back(n_gamma);
267  gentau_totNcharged_.emplace_back(n_pi);
268 
269  gentau_products_pt_.emplace_back(tau_products_pt);
270  gentau_products_eta_.emplace_back(tau_products_eta);
271  gentau_products_phi_.emplace_back(tau_products_phi);
272  gentau_products_energy_.emplace_back(tau_products_energy);
273  gentau_products_mass_.emplace_back(tau_products_mass);
274  gentau_products_id_.emplace_back(tau_products_id);
275 
276  /* leptonic tau decays */
277  if( n_pi == 0 && n_piZero == 0 && n_ele==1 ){ gentau_decayMode_.emplace_back(11); }
278  else if( n_pi == 0 && n_piZero == 0 && n_mu==1 ){ gentau_decayMode_.emplace_back(13); }
279  /* 1-prong */
280  else if( n_pi == 1 && n_piZero == 0 ){ gentau_decayMode_.emplace_back(0); }
281  /* 1-prong + pi0s */
282  else if( n_pi == 1 && n_piZero >= 1 ){ gentau_decayMode_.emplace_back(1); }
283  /* 3-prongs */
284  else if( n_pi == 3 && n_piZero == 0 ){ gentau_decayMode_.emplace_back(4); }
285  /* 3-prongs + pi0s */
286  else if( n_pi == 3 && n_piZero >= 1 ){ gentau_decayMode_.emplace_back(5); }
287  /* other decays */
288  else{ gentau_decayMode_.emplace_back(-1); }
289 
290  }
291  }
292 
293 }
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:519
std::vector< std::vector< float > > gentau_products_mass_
std::vector< std::vector< float > > gentau_products_phi_
std::vector< float > gentau_vis_phi_
bool isGamma(const reco::GenParticle &daughter) const
std::vector< std::vector< float > > gentau_products_pt_
bool isStableLepton(const reco::GenParticle &daughter) const
bool isIntermediateResonance(const reco::GenParticle &daughter) const
bool isGoodTau(const reco::GenParticle &candidate) const
std::vector< std::vector< float > > gentau_products_eta_
std::vector< float > gentau_vis_pt_
math::XYZTLorentzVector LorentzVector
bool isChargedPion(const reco::GenParticle &daughter) const
bool isMuon(const reco::GenParticle &daughter) const
std::vector< float > gentau_vis_energy_
bool isElectron(const reco::GenParticle &daughter) const
std::vector< std::vector< float > > gentau_products_energy_
std::vector< float > gentau_vis_mass_
std::vector< std::vector< int > > gentau_products_id_
std::vector< float > gentau_vis_eta_
std::vector< int > gentau_totNproducts_
bool isNeutralPion(const reco::GenParticle &daughter) const
std::vector< int > gentau_totNcharged_
void push_back(value_type const &ref)
Add a Ref<C, T> to the RefVector.
Definition: RefVector.h:69
std::vector< float > gentau_energy_
void HGCalTriggerNtupleGenTau::initialize ( TTree &  tree,
const edm::ParameterSet conf,
edm::ConsumesCollector &&  collector 
)
finalvirtual

Implements HGCalTriggerNtupleBase.

Definition at line 70 of file HGCalTriggerNtupleGenTau.cc.

References gen_token_, gentau_decayMode_, gentau_energy_, gentau_eta_, gentau_mass_, gentau_phi_, gentau_products_energy_, gentau_products_eta_, gentau_products_id_, gentau_products_mass_, gentau_products_phi_, gentau_products_pt_, gentau_pt_, gentau_totNcharged_, gentau_totNgamma_, gentau_totNproducts_, gentau_vis_energy_, gentau_vis_eta_, gentau_vis_mass_, gentau_vis_phi_, gentau_vis_pt_, edm::ParameterSet::getParameter(), and isPythia8generator_.

Referenced by HGCalTriggerNtupleGenTau().

71 {
72 
73  gen_token_ = collector.consumes<reco::GenParticleCollection>(conf.getParameter<edm::InputTag>("GenParticles"));
74  isPythia8generator_ = conf.getParameter<bool>("isPythia8");
75 
76  tree.Branch("gentau_pt", &gentau_pt_);
77  tree.Branch("gentau_eta", &gentau_eta_);
78  tree.Branch("gentau_phi", &gentau_phi_);
79  tree.Branch("gentau_energy", &gentau_energy_);
80  tree.Branch("gentau_mass", &gentau_mass_);
81  tree.Branch("gentau_vis_pt", &gentau_vis_pt_);
82  tree.Branch("gentau_vis_eta", &gentau_vis_eta_);
83  tree.Branch("gentau_vis_phi", &gentau_vis_phi_);
84  tree.Branch("gentau_vis_energy", &gentau_vis_energy_);
85  tree.Branch("gentau_vis_mass", &gentau_vis_mass_);
86  tree.Branch("gentau_products_pt", &gentau_products_pt_);
87  tree.Branch("gentau_products_eta", &gentau_products_eta_);
88  tree.Branch("gentau_products_phi", &gentau_products_phi_);
89  tree.Branch("gentau_products_energy", &gentau_products_energy_);
90  tree.Branch("gentau_products_mass", &gentau_products_mass_);
91  tree.Branch("gentau_products_id", &gentau_products_id_);
92  tree.Branch("gentau_decayMode", &gentau_decayMode_);
93  tree.Branch("gentau_totNproducts", &gentau_totNproducts_);
94  tree.Branch("gentau_totNgamma", &gentau_totNgamma_);
95  tree.Branch("gentau_totNcharged", &gentau_totNcharged_);
96 
97 }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
T getParameter(std::string const &) const
std::vector< std::vector< float > > gentau_products_mass_
std::vector< std::vector< float > > gentau_products_phi_
std::vector< float > gentau_vis_phi_
std::vector< std::vector< float > > gentau_products_pt_
std::vector< std::vector< float > > gentau_products_eta_
std::vector< float > gentau_vis_pt_
std::vector< float > gentau_vis_energy_
std::vector< std::vector< float > > gentau_products_energy_
std::vector< float > gentau_vis_mass_
std::vector< std::vector< int > > gentau_products_id_
std::vector< float > gentau_vis_eta_
std::vector< int > gentau_totNproducts_
std::vector< int > gentau_totNcharged_
Definition: tree.py:1
std::vector< float > gentau_energy_
bool HGCalTriggerNtupleGenTau::isChargedPion ( const reco::GenParticle daughter) const
private

Definition at line 104 of file HGCalTriggerNtupleGenTau.cc.

References funct::abs(), reco::GenParticle::isDirectPromptTauDecayProductFinalState(), reco::GenParticle::isLastCopy(), reco::LeafCandidate::pdgId(), and reco::LeafCandidate::status().

Referenced by fill().

104  {
105  return ( std::abs(candidate.pdgId()) == 211 && candidate.status()==1
106  && candidate.isDirectPromptTauDecayProductFinalState() && candidate.isLastCopy() );
107 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool HGCalTriggerNtupleGenTau::isElectron ( const reco::GenParticle daughter) const
private

Definition at line 117 of file HGCalTriggerNtupleGenTau.cc.

References funct::abs(), reco::GenParticle::isDirectPromptTauDecayProductFinalState(), reco::GenParticle::isLastCopy(), and reco::LeafCandidate::pdgId().

Referenced by fill().

118 {
119  return ( std::abs(candidate.pdgId()) == 11 && candidate.isDirectPromptTauDecayProductFinalState() && candidate.isLastCopy() );
120 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool HGCalTriggerNtupleGenTau::isGamma ( const reco::GenParticle daughter) const
private

Definition at line 136 of file HGCalTriggerNtupleGenTau.cc.

References funct::abs(), reco::GenParticle::isDirectPromptTauDecayProductFinalState(), reco::GenParticle::isLastCopy(), reco::GenStatusFlags::isTauDecayProduct(), reco::LeafCandidate::pdgId(), reco::LeafCandidate::status(), and reco::GenParticle::statusFlags().

Referenced by fill().

137 {
138  return ( std::abs(candidate.pdgId()) == 22 && candidate.status()==1 && candidate.statusFlags().isTauDecayProduct()
139  && !candidate.isDirectPromptTauDecayProductFinalState() && candidate.isLastCopy() );
140 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool HGCalTriggerNtupleGenTau::isGoodTau ( const reco::GenParticle candidate) const
private

Definition at line 99 of file HGCalTriggerNtupleGenTau.cc.

References funct::abs(), reco::LeafCandidate::pdgId(), and reco::LeafCandidate::status().

Referenced by fill().

99  {
100  return ( std::abs( candidate.pdgId() ) == 15 && candidate.status() == 2 );
101 }
int pdgId() const final
PDG identifier.
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
int status() const final
status word
bool HGCalTriggerNtupleGenTau::isIntermediateResonance ( const reco::GenParticle daughter) const
private

Definition at line 143 of file HGCalTriggerNtupleGenTau.cc.

References funct::abs(), fill(), reco::GenParticle::isDirectPromptTauDecayProductFinalState(), reco::LeafCandidate::pdgId(), and reco::LeafCandidate::status().

Referenced by fill().

144 {
145  return ( ( std::abs(candidate.pdgId()) == 213 || std::abs(candidate.pdgId()) == 20213 || std::abs(candidate.pdgId()) == 24 )
146  && candidate.isDirectPromptTauDecayProductFinalState() && candidate.status() == 2 );
147 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool HGCalTriggerNtupleGenTau::isMuon ( const reco::GenParticle daughter) const
private

Definition at line 123 of file HGCalTriggerNtupleGenTau.cc.

References funct::abs(), reco::GenParticle::isDirectPromptTauDecayProductFinalState(), reco::GenParticle::isLastCopy(), and reco::LeafCandidate::pdgId().

Referenced by fill().

124 {
125  return ( std::abs(candidate.pdgId()) == 13 && candidate.isDirectPromptTauDecayProductFinalState() && candidate.isLastCopy() );
126 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool HGCalTriggerNtupleGenTau::isNeutralPion ( const reco::GenParticle daughter) const
private

Definition at line 129 of file HGCalTriggerNtupleGenTau.cc.

References funct::abs(), reco::GenParticle::isDirectPromptTauDecayProductFinalState(), reco::GenStatusFlags::isTauDecayProduct(), reco::LeafCandidate::pdgId(), reco::LeafCandidate::status(), and reco::GenParticle::statusFlags().

Referenced by fill().

130 {
131  return ( std::abs(candidate.pdgId()) == 111 && candidate.status()==2 && candidate.statusFlags().isTauDecayProduct()
132  && !candidate.isDirectPromptTauDecayProductFinalState() );
133 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool HGCalTriggerNtupleGenTau::isStableLepton ( const reco::GenParticle daughter) const
private

Definition at line 110 of file HGCalTriggerNtupleGenTau.cc.

References funct::abs(), reco::GenParticle::isDirectPromptTauDecayProductFinalState(), reco::GenParticle::isLastCopy(), reco::LeafCandidate::pdgId(), and reco::LeafCandidate::status().

Referenced by fill().

111 {
112  return ( (std::abs(candidate.pdgId()) == 11 || std::abs(candidate.pdgId()) == 13) && candidate.status()==1
113  && candidate.isDirectPromptTauDecayProductFinalState() && candidate.isLastCopy() );
114 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22

Member Data Documentation

edm::EDGetToken HGCalTriggerNtupleGenTau::gen_token_
private

Definition at line 30 of file HGCalTriggerNtupleGenTau.cc.

Referenced by fill(), and initialize().

std::vector<int> HGCalTriggerNtupleGenTau::gentau_decayMode_
private

Definition at line 44 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<float> HGCalTriggerNtupleGenTau::gentau_energy_
private

Definition at line 36 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<float> HGCalTriggerNtupleGenTau::gentau_eta_
private

Definition at line 34 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<float> HGCalTriggerNtupleGenTau::gentau_mass_
private

Definition at line 37 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<float> HGCalTriggerNtupleGenTau::gentau_phi_
private

Definition at line 35 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<std::vector<float> > HGCalTriggerNtupleGenTau::gentau_products_energy_
private

Definition at line 52 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<std::vector<float> > HGCalTriggerNtupleGenTau::gentau_products_eta_
private

Definition at line 50 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<std::vector< int > > HGCalTriggerNtupleGenTau::gentau_products_id_
private

Definition at line 54 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<std::vector<float> > HGCalTriggerNtupleGenTau::gentau_products_mass_
private

Definition at line 53 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<std::vector<float> > HGCalTriggerNtupleGenTau::gentau_products_phi_
private

Definition at line 51 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<std::vector<float> > HGCalTriggerNtupleGenTau::gentau_products_pt_
private

Definition at line 49 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<float> HGCalTriggerNtupleGenTau::gentau_pt_
private

Definition at line 33 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<int> HGCalTriggerNtupleGenTau::gentau_totNcharged_
private

Definition at line 47 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<int> HGCalTriggerNtupleGenTau::gentau_totNgamma_
private

Definition at line 46 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<int> HGCalTriggerNtupleGenTau::gentau_totNproducts_
private

Definition at line 45 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<float> HGCalTriggerNtupleGenTau::gentau_vis_energy_
private

Definition at line 42 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<float> HGCalTriggerNtupleGenTau::gentau_vis_eta_
private

Definition at line 40 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<float> HGCalTriggerNtupleGenTau::gentau_vis_mass_
private

Definition at line 43 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<float> HGCalTriggerNtupleGenTau::gentau_vis_phi_
private

Definition at line 41 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

std::vector<float> HGCalTriggerNtupleGenTau::gentau_vis_pt_
private

Definition at line 39 of file HGCalTriggerNtupleGenTau.cc.

Referenced by clear(), fill(), and initialize().

bool HGCalTriggerNtupleGenTau::isPythia8generator_
private

Definition at line 31 of file HGCalTriggerNtupleGenTau.cc.

Referenced by fill(), and initialize().