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

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 ()
 

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
CurrentProcessingContext const * currentContext () const
 

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:356
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().