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 Member Functions | Private Attributes
CollectionCombiner< Collection > Class Template Reference

#include <CollectionCombiner.h>

Inheritance diagram for CollectionCombiner< Collection >:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 CollectionCombiner (const edm::ParameterSet &)
 
 ~CollectionCombiner ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 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
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

virtual void produce (edm::Event &, const edm::EventSetup &)
 

Private Attributes

std::vector< edm::EDGetTokenT
< Collection > > 
collectionTokens
 
std::vector< edm::InputTaglabels
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- 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 Collection>
class CollectionCombiner< Collection >

Description: this templated EDProducer can merge (no duplicate removal) any number of collection of the same type. the usage is to declare a concrete combiner in SealModule: typedef CollectionCombiner<std::vector< Trajectory> > TrajectoryCombiner; DEFINE_FWK_MODULE(TrajectoryCombiner); edm::View cannot be used, because the template argument is used for the input and the output type.

Author
Jean-Roch Vlimant

Definition at line 29 of file CollectionCombiner.h.

Constructor & Destructor Documentation

template<typename Collection >
CollectionCombiner< Collection >::CollectionCombiner ( const edm::ParameterSet iConfig)
explicit

Definition at line 44 of file CollectionCombiner.h.

References edm::ParameterSet::getParameter(), i, and tablePrinter::labels.

44  {
45  labels = iConfig.getParameter<std::vector<edm::InputTag> >("labels");
46  produces<Collection>();
47  for (unsigned int i=0;i<labels.size();++i)
48  collectionTokens.push_back(consumes<Collection>(labels.at(i)));
49 }
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
std::vector< edm::EDGetTokenT< Collection > > collectionTokens
std::vector< edm::InputTag > labels
template<typename Collection >
CollectionCombiner< Collection >::~CollectionCombiner ( )

Definition at line 51 of file CollectionCombiner.h.

51 {}

Member Function Documentation

template<typename Collection >
void CollectionCombiner< Collection >::produce ( edm::Event iEvent,
const edm::EventSetup es 
)
privatevirtual

Implements edm::EDProducer.

Definition at line 54 of file CollectionCombiner.h.

References edm::Event::getByToken(), patZpeak::handle, i, tablePrinter::labels, and edm::Event::put().

55 {
56  unsigned int i=0,i_max=labels.size();
58  std::auto_ptr<Collection> merged(new Collection());
59  for (;i!=i_max;++i){
60  iEvent.getByToken(collectionTokens[i], handle);
61  merged->insert(merged->end(), handle->begin(), handle->end());
62  }
63  iEvent.put(merged);
64 }
int i
Definition: DBlmapReader.cc:9
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:446
std::vector< edm::EDGetTokenT< Collection > > collectionTokens
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:113
tuple handle
Definition: patZpeak.py:22
std::vector< edm::InputTag > labels

Member Data Documentation

template<typename Collection >
std::vector<edm::EDGetTokenT<Collection> > CollectionCombiner< Collection >::collectionTokens
private

Definition at line 39 of file CollectionCombiner.h.

template<typename Collection >
std::vector<edm::InputTag> CollectionCombiner< Collection >::labels
private

Definition at line 38 of file CollectionCombiner.h.