CMS 3D CMS Logo

AssociationVectorSelector.h
Go to the documentation of this file.
1 #ifndef CommonTools_UtilAlgos_AssociationVectorSelector_h
2 #define CommonTools_UtilAlgos_AssociationVectorSelector_h
3 /* \class AssociationVectorSelector
4  *
5  * \author Luca Lista, INFN
6  *
7  * \version $Id: AssociationVectorSelector.h,v 1.2 2010/02/20 20:55:16 wmtan Exp $
8  */
9 
14 
15 template <typename KeyRefProd, typename CVal, typename KeySelector = AnySelector, typename ValSelector = AnySelector>
17 public:
19 
20 private:
23  void produce(edm::Event&, const edm::EventSetup&) override;
25  KeySelector selectKey_;
26  ValSelector selectVal_;
27 };
28 
34 
35 template <typename KeyRefProd, typename CVal, typename KeySelector, typename ValSelector>
37  const edm::ParameterSet& cfg)
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 }
45 
46 template <typename KeyRefProd, typename CVal, typename KeySelector, typename ValSelector>
48  const edm::EventSetup&) {
49  using namespace edm;
50  using namespace std;
52  evt.getByToken(associationToken_, association);
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 }
76 
77 #endif
std::tuple< sharedEnergyAndScore_t, sharedEnergyAndScore_t > association_t
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
transient_vector_type::const_iterator const_iterator
S make(const edm::ParameterSet &cfg)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:528
std::tuple< layerClusterToCaloParticle, caloParticleToLayerCluster > association
edm::EDGetTokenT< association_t > associationToken_
void produce(edm::Event &, const edm::EventSetup &) override
def template(fileName, svg, replaceme="REPLACEME")
Definition: svgfig.py:521
KeyRefProd::product_type CKey
RefProd< PROD > getRefBeforePut()
Definition: Event.h:158
KeyRef::value_type key_type
TEveGeoShape * clone(const TEveElement *element, TEveElement *parent)
Definition: eve_macros.cc:135
fixed size matrix
HLT enums.
edm::AssociationVector< KeyRefProd, CVal > association_t
def move(src, dest)
Definition: eostools.py:511
AssociationVectorSelector(const edm::ParameterSet &)