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) override
 
 TauGenJetDumper (const edm::ParameterSet &pset)
 
virtual ~TauGenJetDumper ()
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 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
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) 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
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- 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::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 25 of file TauGenJetDumper.cc.

Constructor & Destructor Documentation

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

Definition at line 27 of file TauGenJetDumper.cc.

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

Definition at line 29 of file TauGenJetDumper.cc.

29 {}

Member Function Documentation

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

Implements edm::EDAnalyzer.

Definition at line 36 of file TauGenJetDumper.cc.

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

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

Member Data Documentation

edm::InputTag TauGenJetDumper::genJetSrc_
private

Definition at line 32 of file TauGenJetDumper.cc.

Referenced by analyze().