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 Attributes
TauGenJetProducer Class Reference

builds a GenJet from the visible daughters of each status 2 tau in the event. More...

#include <TauGenJetProducer.h>

Inheritance diagram for TauGenJetProducer:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

virtual void beginJob ()
 
virtual void produce (edm::Event &, const edm::EventSetup &)
 
 TauGenJetProducer (const edm::ParameterSet &)
 
 ~TauGenJetProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 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
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

bool includeNeutrinos_
 if yes, neutrinos will be included, for debug purposes More...
 
edm::InputTag inputTagGenParticles_
 Input PFCandidates. More...
 
edm::EDGetTokenT
< reco::GenParticleCollection
tokenGenParticles_
 
bool verbose_
 verbose ? More...
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- 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

builds a GenJet from the visible daughters of each status 2 tau in the event.

Author
Colin Bernet
Date
february 2008

Definition at line 25 of file TauGenJetProducer.h.

Constructor & Destructor Documentation

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

Definition at line 19 of file TauGenJetProducer.cc.

References edm::ParameterSet::getParameter(), and edm::ParameterSet::getUntrackedParameter().

20 {
22  = iConfig.getParameter<InputTag>("GenParticles");
24  = consumes<GenParticleCollection>(inputTagGenParticles_);
25 
27  = iConfig.getParameter<bool>("includeNeutrinos");
28 
29  verbose_ =
30  iConfig.getUntrackedParameter<bool>("verbose",false);
31 
32  produces<GenJetCollection>();
33 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
bool verbose_
verbose ?
edm::EDGetTokenT< reco::GenParticleCollection > tokenGenParticles_
bool includeNeutrinos_
if yes, neutrinos will be included, for debug purposes
edm::InputTag inputTagGenParticles_
Input PFCandidates.
TauGenJetProducer::~TauGenJetProducer ( )

Definition at line 35 of file TauGenJetProducer.cc.

35 { }

Member Function Documentation

void TauGenJetProducer::beginJob ( void  )
virtual

Reimplemented from edm::EDProducer.

Definition at line 37 of file TauGenJetProducer.cc.

37 { }
void TauGenJetProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Implements edm::EDProducer.

Definition at line 39 of file TauGenJetProducer.cc.

References funct::abs(), edm::RefVector< C, T, F >::begin(), DeDxDiscriminatorTools::charge(), gather_cfg::cout, edm::RefVector< C, T, F >::end(), edm::hlt::Exception, GenParticlesHelper::findDescendents(), GenParticlesHelper::findParticles(), newFWLiteAna::found, genParticleCandidates2GenParticles_cfi::genParticles, edm::Event::getByToken(), metsig::jet, edm::Event::put(), edm::refToPtr(), reco::LeafCandidate::setCharge(), edm::RefVector< C, T, F >::size(), and timingPdfMaker::specific.

40  {
41 
43 
44  bool found = iEvent.getByToken( tokenGenParticles_, genParticles);
45 
46  if ( !found ) {
47  std::ostringstream err;
48  err<<" cannot get collection: "
49  <<inputTagGenParticles_<<std::endl;
50  edm::LogError("TauGenJetProducer")<<err.str();
51  throw cms::Exception( "MissingProduct", err.str());
52  }
53 
54  std::auto_ptr<GenJetCollection>
55  pOutVisTaus(new GenJetCollection());
56 
57  using namespace GenParticlesHelper;
58 
59  GenParticleRefVector allStatus2Taus;
60  findParticles( *genParticles,
61  allStatus2Taus, 15, 2);
62 
63  for ( IGR iTau=allStatus2Taus.begin(); iTau!=allStatus2Taus.end(); ++iTau ) {
64 
65  // look for all status 1 (stable) descendents
66  GenParticleRefVector descendents;
67  findDescendents( *iTau, descendents, 1);
68 
69  // CV: skip status 2 taus that radiate-off a photon
70  // --> have a status 2 tau lepton in the list of descendents
71  GenParticleRefVector status2TauDaughters;
72  findDescendents( *iTau, status2TauDaughters, 2, 15 );
73  if ( status2TauDaughters.size() > 0 ) continue;
74 
75  // loop on descendents, and take all except neutrinos
76  math::XYZTLorentzVector sumVisMom;
78  Jet::Constituents constituents;
79 
80  if(verbose_)
81  cout<<"tau "<<(*iTau)<<endl;
82 
83  for(IGR igr = descendents.begin();
84  igr!= descendents.end(); ++igr ) {
85 
86  int absPdgId = abs((*igr)->pdgId());
87 
88  // neutrinos
89  if(!includeNeutrinos_ ) {
90  if( absPdgId == 12 ||
91  absPdgId == 14 ||
92  absPdgId == 16 )
93  continue;
94  }
95 
96  if(verbose_)
97  cout<<"\t"<<(*igr)<<endl;
98 
99  charge += (*igr)->charge();
100  sumVisMom += (*igr)->p4();
101 
102  // need to convert the vector of reference to the constituents
103  // to a vector of pointers to build the genjet
104  constituents.push_back( refToPtr( *igr) );
105  }
106 
107  math::XYZPoint vertex;
109 
110  GenJet jet( sumVisMom, vertex, specific, constituents);
111 
112  if (charge != (*iTau)->charge() )
113  std::cout<<" charge of Tau: " << (*iTau) << " not equal to charge of sum of charge of all descendents. " << std::cout;
114 
115  jet.setCharge(charge);
116  pOutVisTaus->push_back( jet );
117 
118  }
119  iEvent.put( pOutVisTaus );
120 }
dictionary specific
bool verbose_
verbose ?
edm::EDGetTokenT< reco::GenParticleCollection > tokenGenParticles_
Ptr< typename C::value_type > refToPtr(Ref< C, typename C::value_type, refhelper::FindUsingAdvance< C, typename C::value_type > > const &ref)
Definition: RefToPtr.h:18
void findParticles(const reco::GenParticleCollection &sourceParticles, reco::GenParticleRefVector &particleRefs, int pdgId, int status)
find all particles of a given pdgId and status
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
std::vector< GenJet > GenJetCollection
collection of GenJet objects
std::vector< Constituent > Constituents
Definition: Jet.h:23
int Charge
electric charge type
Definition: Particle.h:25
const_iterator end() const
Termination of iteration.
Definition: RefVector.h:249
double charge(const std::vector< uint8_t > &Ampls)
const_iterator begin() const
Initialize an iterator over the RefVector.
Definition: RefVector.h:244
XYZTLorentzVectorD XYZTLorentzVector
Lorentz vector with cylindrical internal representation using pseudorapidity.
Definition: LorentzVector.h:29
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
Jets made from MC generator particles.
Definition: GenJet.h:24
bool includeNeutrinos_
if yes, neutrinos will be included, for debug purposes
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
edm::InputTag inputTagGenParticles_
Input PFCandidates.
size_type size() const
Size of the RefVector.
Definition: RefVector.h:89
tuple cout
Definition: gather_cfg.py:121
void findDescendents(const reco::GenParticleRef &base, reco::GenParticleRefVector &descendents, int status, int pdgId=0)
find all descendents of a given status and pdgId (recursive)

Member Data Documentation

bool TauGenJetProducer::includeNeutrinos_
private

if yes, neutrinos will be included, for debug purposes

Definition at line 43 of file TauGenJetProducer.h.

edm::InputTag TauGenJetProducer::inputTagGenParticles_
private

Input PFCandidates.

Definition at line 39 of file TauGenJetProducer.h.

edm::EDGetTokenT<reco::GenParticleCollection> TauGenJetProducer::tokenGenParticles_
private

Definition at line 40 of file TauGenJetProducer.h.

bool TauGenJetProducer::verbose_
private

verbose ?

Definition at line 46 of file TauGenJetProducer.h.