CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
RecoTauPiZeroFlattener Class Reference
Inheritance diagram for RecoTauPiZeroFlattener:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

void produce (edm::Event &evt, const edm::EventSetup &es) override
 
 RecoTauPiZeroFlattener (const edm::ParameterSet &pset)
 
 ~RecoTauPiZeroFlattener () override
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDProducer () override
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
std::vector< edm::ProductResolverIndex > const & indiciesForPutProducts (BranchType iBranchType) const
 
 ProducerBase ()
 
std::vector< edm::ProductResolverIndex > const & putTokenIndexToProductResolverIndex () const
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription const &)> registrationCallback () const
 used by the fwk to register list of products More...
 
void resolvePutIndicies (BranchType iBranchType, ModuleToResolverIndicies const &iIndicies, std::string const &moduleLabel)
 
 ~ProducerBase () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Attributes

edm::InputTag jetSrc_
 
edm::InputTag piZeroSrc_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
using ModuleToResolverIndicies = std::unordered_multimap< std::string, std::tuple< edm::TypeID const *, const char *, edm::ProductResolverIndex >>
 
typedef ProductRegistryHelper::TypeLabelList TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- 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 28 of file RecoTauPiZeroFlattener.cc.

Constructor & Destructor Documentation

RecoTauPiZeroFlattener::RecoTauPiZeroFlattener ( const edm::ParameterSet pset)
explicit

Definition at line 38 of file RecoTauPiZeroFlattener.cc.

References edm::ParameterSet::getParameter(), jetSrc_, and piZeroSrc_.

38  {
39  jetSrc_ = pset.getParameter<edm::InputTag>("jetSrc");
40  piZeroSrc_ = pset.getParameter<edm::InputTag>("piZeroSrc");
41  produces<std::vector<reco::RecoTauPiZero> >();
42 }
T getParameter(std::string const &) const
RecoTauPiZeroFlattener::~RecoTauPiZeroFlattener ( )
inlineoverride

Definition at line 31 of file RecoTauPiZeroFlattener.cc.

References produce().

31 {}

Member Function Documentation

void RecoTauPiZeroFlattener::produce ( edm::Event evt,
const edm::EventSetup es 
)
override

Definition at line 45 of file RecoTauPiZeroFlattener.cc.

References DEFINE_FWK_MODULE, edm::Event::getByLabel(), fwrapper::jets, jetSrc_, eostools::move(), convertSQLitetoXML_cfg::output, piZeroSrc_, and edm::Event::put().

Referenced by ~RecoTauPiZeroFlattener().

45  {
46  // Get the jet input collection via a view of Candidates
48  evt.getByLabel(jetSrc_, jetView);
49 
50  // Convert to a vector of PFJetRefs
52  reco::tau::castView<reco::PFJetRefVector>(jetView);
53 
54  // Get the pizero input collection
56  evt.getByLabel(piZeroSrc_, piZeroAssoc);
57 
58  // Create output collection
59  auto output = std::make_unique<std::vector<reco::RecoTauPiZero>>();
60 
61  // Loop over the jets and append the pizeros for each jet to our output
62  // collection.
63  BOOST_FOREACH(reco::PFJetRef jetRef, jets) {
64  const std::vector<reco::RecoTauPiZero>& pizeros = (*piZeroAssoc)[jetRef];
65  output->reserve(output->size() + pizeros.size());
66  output->insert(output->end(), pizeros.begin(), pizeros.end());
67  }
68 
69  evt.put(std::move(output));
70 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:136
vector< PseudoJet > jets
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:475
def move(src, dest)
Definition: eostools.py:510

Member Data Documentation

edm::InputTag RecoTauPiZeroFlattener::jetSrc_
private

Definition at line 34 of file RecoTauPiZeroFlattener.cc.

Referenced by produce(), and RecoTauPiZeroFlattener().

edm::InputTag RecoTauPiZeroFlattener::piZeroSrc_
private

Definition at line 35 of file RecoTauPiZeroFlattener.cc.

Referenced by produce(), and RecoTauPiZeroFlattener().