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
TauGenJetDumper Class Reference
Inheritance diagram for TauGenJetDumper:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

virtual void analyze (const edm::Event &evt, const edm::EventSetup &es)
 
 TauGenJetDumper (const edm::ParameterSet &pset)
 
virtual ~TauGenJetDumper ()
 
- Public Member Functions inherited from edm::EDAnalyzer
 EDAnalyzer ()
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndex indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

edm::InputTag genJetSrc_
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
typedef WorkerT< EDAnalyzerWorkerType
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
CurrentProcessingContext const * currentContext () const
 
- 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

Definition at line 26 of file TauGenJetDumper.cc.

Constructor & Destructor Documentation

TauGenJetDumper::TauGenJetDumper ( const edm::ParameterSet pset)
inlineexplicit

Definition at line 28 of file TauGenJetDumper.cc.

28  :
29  genJetSrc_(pset.getParameter<edm::InputTag>("src")) {}
T getParameter(std::string const &) const
edm::InputTag genJetSrc_
virtual TauGenJetDumper::~TauGenJetDumper ( )
inlinevirtual

Definition at line 30 of file TauGenJetDumper.cc.

30 {}

Member Function Documentation

void TauGenJetDumper::analyze ( const edm::Event evt,
const edm::EventSetup es 
)
virtual

Implements edm::EDAnalyzer.

Definition at line 37 of file TauGenJetDumper.cc.

References gather_cfg::cout, genJetSrc_, JetMCTagUtils::genTauDecayMode(), edm::Event::getByLabel(), metsig::jet, convertSQLitetoXML_cfg::output, and reco::GenJet::print().

37  {
38  typedef edm::View<reco::GenJet> GenJetView;
40  evt.getByLabel(genJetSrc_, jetView);
41 
42  std::ostringstream output;
43  output << " * * * Tau GenJet Dump " << std::endl;
44  BOOST_FOREACH(const reco::GenJet& jet, *jetView) {
45  output << "Decay mode: " << JetMCTagUtils::genTauDecayMode(jet) << " "
46  << jet.print() << std::endl;
47  }
48  std::cout << output.str();
49 }
std::string genTauDecayMode(const reco::CompositePtrCandidate &c)
Definition: JetMCTag.cc:81
edm::InputTag genJetSrc_
virtual std::string print() const
Print object.
Definition: GenJet.cc:73
Jets made from MC generator particles.
Definition: GenJet.h:25
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
tuple cout
Definition: gather_cfg.py:121

Member Data Documentation

edm::InputTag TauGenJetDumper::genJetSrc_
private

Definition at line 33 of file TauGenJetDumper.cc.

Referenced by analyze().