CMS 3D CMS Logo

List of all members | Public Member Functions | Private Types | Private Member Functions | Private Attributes
AssociationVectorSelector< KeyRefProd, CVal, KeySelector, ValSelector > Class Template Reference

#include <AssociationVectorSelector.h>

Inheritance diagram for AssociationVectorSelector< KeyRefProd, CVal, KeySelector, ValSelector >:
edm::stream::EDProducer<>

Public Member Functions

 AssociationVectorSelector (const edm::ParameterSet &)
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Private Types

typedef edm::AssociationVector< KeyRefProd, CVal > association_t
 
typedef association_t::CKey collection_t
 

Private Member Functions

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

Private Attributes

edm::EDGetTokenT< association_tassociationToken_
 
KeySelector selectKey_
 
ValSelector selectVal_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
using CacheTypes = CacheContexts< T... >
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T... >
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

template<typename KeyRefProd, typename CVal, typename KeySelector = AnySelector, typename ValSelector = AnySelector>
class AssociationVectorSelector< KeyRefProd, CVal, KeySelector, ValSelector >

Definition at line 16 of file AssociationVectorSelector.h.

Member Typedef Documentation

◆ association_t

template<typename KeyRefProd , typename CVal , typename KeySelector = AnySelector, typename ValSelector = AnySelector>
typedef edm::AssociationVector<KeyRefProd, CVal> AssociationVectorSelector< KeyRefProd, CVal, KeySelector, ValSelector >::association_t
private

Definition at line 21 of file AssociationVectorSelector.h.

◆ collection_t

template<typename KeyRefProd , typename CVal , typename KeySelector = AnySelector, typename ValSelector = AnySelector>
typedef association_t::CKey AssociationVectorSelector< KeyRefProd, CVal, KeySelector, ValSelector >::collection_t
private

Definition at line 22 of file AssociationVectorSelector.h.

Constructor & Destructor Documentation

◆ AssociationVectorSelector()

template<typename KeyRefProd , typename CVal , typename KeySelector , typename ValSelector >
AssociationVectorSelector< KeyRefProd, CVal, KeySelector, ValSelector >::AssociationVectorSelector ( const edm::ParameterSet cfg)

Definition at line 36 of file AssociationVectorSelector.h.

References SiStripOfflineCRack_cfg::alias, looper::cfg, and AlCaHLTBitMon_QueryRunRegistry::string.

38  : associationToken_(consumes<association_t>(cfg.template getParameter<edm::InputTag>("association"))),
39  selectKey_(reco::modules::make<KeySelector>(cfg, consumesCollector())),
40  selectVal_(reco::modules::make<ValSelector>(cfg, consumesCollector())) {
41  std::string alias(cfg.template getParameter<std::string>("@module_label"));
42  produces<collection_t>().setBranchAlias(alias);
43  produces<association_t>().setBranchAlias(alias + "Association");
44 }
edm::EDGetTokenT< association_t > associationToken_

Member Function Documentation

◆ produce()

template<typename KeyRefProd , typename CVal , typename KeySelector , typename ValSelector >
void AssociationVectorSelector< KeyRefProd, CVal, KeySelector, ValSelector >::produce ( edm::Event evt,
const edm::EventSetup  
)
overrideprivate

Definition at line 47 of file AssociationVectorSelector.h.

References clone(), edm::Event::getByToken(), edm::Event::getRefBeforePut(), mps_fire::i, eostools::move(), getGTfromDQMFile::obj, edm::Event::put(), and findQualityFiles::size.

48  {
49  using namespace edm;
50  using namespace std;
53  unique_ptr<collection_t> selected(new collection_t);
54  vector<typename CVal::value_type> selectedValues;
55  size_t size = association->size();
56  selected->reserve(size);
57  selectedValues.reserve(size);
58  for (typename association_t::const_iterator i = association->begin(); i != association->end(); ++i) {
59  const typename association_t::key_type& obj = *i->first;
60  if (selectKey_(obj) && selectVal_(i->second)) {
61  typedef typename edm::clonehelper::CloneTrait<collection_t>::type clone_t;
62  selected->push_back(clone_t::clone(obj));
63  selectedValues.push_back(i->second);
64  }
65  }
66  // new association must be created after the
67  // selected collection is full because it uses the size
68  KeyRefProd ref = evt.getRefBeforePut<collection_t>();
69  unique_ptr<association_t> selectedAssociation(new association_t(ref, selected.get()));
70  size = selected->size();
71  OrphanHandle<collection_t> oh = evt.put(std::move(selected));
72  for (size_t i = 0; i != size; ++i)
73  selectedAssociation->setValue(i, selectedValues[i]);
74  evt.put(std::move(selectedAssociation));
75 }
size
Write out results.
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
transient_vector_type::const_iterator const_iterator
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:540
std::tuple< layerClusterToCaloParticle, caloParticleToLayerCluster > association
edm::EDGetTokenT< association_t > associationToken_
RefProd< PROD > getRefBeforePut()
Definition: Event.h:158
KeyRef::value_type key_type
TEveGeoShape * clone(const TEveElement *element, TEveElement *parent)
Definition: eve_macros.cc:135
HLT enums.
edm::AssociationVector< KeyRefProd, CVal > association_t
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

◆ associationToken_

template<typename KeyRefProd , typename CVal , typename KeySelector = AnySelector, typename ValSelector = AnySelector>
edm::EDGetTokenT<association_t> AssociationVectorSelector< KeyRefProd, CVal, KeySelector, ValSelector >::associationToken_
private

Definition at line 24 of file AssociationVectorSelector.h.

◆ selectKey_

template<typename KeyRefProd , typename CVal , typename KeySelector = AnySelector, typename ValSelector = AnySelector>
KeySelector AssociationVectorSelector< KeyRefProd, CVal, KeySelector, ValSelector >::selectKey_
private

Definition at line 25 of file AssociationVectorSelector.h.

◆ selectVal_

template<typename KeyRefProd , typename CVal , typename KeySelector = AnySelector, typename ValSelector = AnySelector>
ValSelector AssociationVectorSelector< KeyRefProd, CVal, KeySelector, ValSelector >::selectVal_
private

Definition at line 26 of file AssociationVectorSelector.h.