CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
HLTCollectionProducer< T > Class Template Reference

#include <HLTCollectionProducer.h>

Inheritance diagram for HLTCollectionProducer< T >:
edm::global::EDProducer<> edm::global::EDProducerBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 HLTCollectionProducer (const edm::ParameterSet &)
 
void produce (edm::StreamID, edm::Event &, const edm::EventSetup &) const override
 
 ~HLTCollectionProducer () override
 
- Public Member Functions inherited from edm::global::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 
bool wantsGlobalLuminosityBlocks () const final
 
bool wantsGlobalRuns () const final
 
bool wantsStreamLuminosityBlocks () const final
 
bool wantsStreamRuns () const final
 
- Public Member Functions inherited from edm::global::EDProducerBase
 EDProducerBase ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDProducerBase () 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 () noexcept(false) 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)
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 
- Static Public Member Functions inherited from edm::global::EDProducerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 

Private Attributes

const edm::InputTag hltObjectTag_
 
const edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefshltObjectToken_
 
const std::vector< int > triggerTypes_
 

Additional Inherited Members

- Public Types inherited from edm::global::EDProducerBase
typedef EDProducerBase 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
 
- 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

template<typename T>
class HLTCollectionProducer< T >

Extract objects from trigger::TriggerFilterObjectWithRefs and fill them into a new collection (Based on GetJetsFromHLTobject.h)

Definition at line 36 of file HLTCollectionProducer.h.

Constructor & Destructor Documentation

template<typename T >
HLTCollectionProducer< T >::HLTCollectionProducer ( const edm::ParameterSet iConfig)
explicit

Definition at line 55 of file HLTCollectionProducer.h.

55  :
56  hltObjectTag_ ( iConfig.getParameter<edm::InputTag>("HLTObject") ),
57  hltObjectToken_(consumes<trigger::TriggerFilterObjectWithRefs>(hltObjectTag_)),
58  triggerTypes_ ( iConfig.getParameter<std::vector<int> >("TriggerTypes") )
59 {
60  produces< std::vector<T> >();
61 }
T getParameter(std::string const &) const
const std::vector< int > triggerTypes_
const edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > hltObjectToken_
const edm::InputTag hltObjectTag_
template<typename T >
HLTCollectionProducer< T >::~HLTCollectionProducer ( )
override

Definition at line 64 of file HLTCollectionProducer.h.

64 {}

Member Function Documentation

template<typename T >
void HLTCollectionProducer< T >::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 68 of file HLTCollectionProducer.h.

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::add(), and defaultModuleLabel().

68  {
70  desc.add<edm::InputTag> ("HLTObject", edm::InputTag("TriggerFilterObjectWithRefs"));
71  std::vector<int> triggerTypes;
72  desc.add<std::vector<int> > ("TriggerTypes",triggerTypes);
73  descriptions.add(defaultModuleLabel<HLTCollectionProducer<T>>(), desc);
74 }
std::string defaultModuleLabel()
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
template<typename T >
void HLTCollectionProducer< T >::produce ( edm::StreamID  iStreamID,
edm::Event iEvent,
const edm::EventSetup iSetup 
) const
override

Definition at line 83 of file HLTCollectionProducer.h.

References universalConfigTemplate::collection, edm::Event::getByToken(), trigger::TriggerRefsCollections::getObjects(), HLTCollectionProducer< T >::hltObjectToken_, mps_fire::i, eostools::move(), edm::Event::put(), lumiQTWidget::t, and HLTCollectionProducer< T >::triggerTypes_.

84 {
85 
86  std::unique_ptr<std::vector<T> > collection ( new std::vector<T>() );
87 
88  // get hold of collection of TriggerFilterObjectsWithRefs
90  iEvent.getByToken(hltObjectToken_, hltObject);
91  std::vector<edm::Ref<std::vector<T> > > objectRefs;
92 
93  for (size_t t=0; t<triggerTypes_.size(); ++t) {
94  objectRefs.clear();
95  hltObject->getObjects( triggerTypes_[t], objectRefs );
96  for (size_t i = 0; i < objectRefs.size(); ++i) {
97  collection->push_back(*objectRefs[i]);
98  }
99  }
100 
101  iEvent.put(std::move(collection));
102 
103 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:137
void getObjects(Vids &ids, VRphoton &refs) const
various physics-level getters:
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:579
const std::vector< int > triggerTypes_
const edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > hltObjectToken_
def move(src, dest)
Definition: eostools.py:510

Member Data Documentation

template<typename T >
const edm::InputTag HLTCollectionProducer< T >::hltObjectTag_
private

Definition at line 45 of file HLTCollectionProducer.h.

template<typename T >
const edm::EDGetTokenT<trigger::TriggerFilterObjectWithRefs> HLTCollectionProducer< T >::hltObjectToken_
private

Definition at line 46 of file HLTCollectionProducer.h.

Referenced by HLTCollectionProducer< T >::produce().

template<typename T >
const std::vector<int> HLTCollectionProducer< T >::triggerTypes_
private

Definition at line 47 of file HLTCollectionProducer.h.

Referenced by HLTCollectionProducer< T >::produce().