CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MCTruthCompositeMatcherNew.cc
Go to the documentation of this file.
1 /* \class MCTruthCompositeMatcher
2  *
3  * \author Luca Lista, INFN
4  *
5  */
6 
16 
17 namespace reco {
18  namespace modulesNew {
19 
21  public:
22  explicit MCTruthCompositeMatcher( const edm::ParameterSet & );
24  private:
26  std::vector<edm::EDGetTokenT<reco::GenParticleMatch> > matchMapTokens_;
27  std::vector<int> pdgId_;
28  void produce( edm::Event & , const edm::EventSetup&) override;
29  };
30 
32  srcToken_(consumes<CandidateView>(cfg.getParameter<edm::InputTag>("src"))),
33  matchMapTokens_( edm::vector_transform(cfg.template getParameter<std::vector<edm::InputTag> >( "matchMaps" ), [this](edm::InputTag const & tag){return consumes<reco::GenParticleMatch>(tag);} ) ),
34  pdgId_(cfg.getParameter<std::vector<int> >("matchPDGId")) {
35  produces<reco::GenParticleMatch>();
36  }
37 
39  }
40 
42  using namespace edm;
43  using namespace std;
45  evt.getByToken(srcToken_, cands);
46  size_t nMaps = matchMapTokens_.size();
47  std::vector<const GenParticleMatch *> maps;
48  maps.reserve( nMaps );
49  for( size_t i = 0; i != nMaps; ++ i ) {
51  evt.getByToken(matchMapTokens_[i], matchMap);
52  maps.push_back(& * matchMap);
53  }
55  auto_ptr<GenParticleMatch> matchMap(new GenParticleMatch(match.ref()));
56  int size = cands->size();
57  vector<int>::const_iterator begin = pdgId_.begin(), end = pdgId_.end();
58  if(size != 0) {
59  GenParticleMatch::Filler filler(*matchMap);
60  vector<int> indices(size);
61  for(int i = 0; i != size; ++ i) {
62  const Candidate & cand = (* cands)[i];
63  GenParticleRef mc = match[cand];
64  if(mc.isNull()) {
65  indices[i] = -1;
66  } else {
67  bool found = true;
68  if(begin!=end) found = find(begin, end, std::abs(mc->pdgId())) != end;
69  indices[i] = found ? int(mc.key()) : -1;
70  }
71  }
72  CandidateBaseRefProd ref(cands->refAt(0));
73  filler.insert(ref, indices.begin(), indices.end());
74  filler.fill();
75  }
76  evt.put(matchMap);
77  }
78 
79  }
80 }
81 
84 
85 namespace reco {
86  namespace modulesNew {
87 
89 
91 
92  }
93 }
94 
int i
Definition: DBlmapReader.cc:9
std::vector< edm::EDGetTokenT< reco::GenParticleMatch > > matchMapTokens_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
void insert(const H &h, I begin, I end)
Definition: ValueMap.h:52
map_type::refprod_type ref() const
reference to matched collection
auto vector_transform(std::vector< InputType > const &input, Function predicate) -> std::vector< typename std::remove_cv< typename std::remove_reference< decltype(predicate(input.front()))>::type >::type >
Definition: transform.h:11
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
bool isNull() const
Checks for null.
Definition: Ref.h:247
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
pdgId_(cfg.getParameter< std::vector< int > >("matchPDGId"))
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
#define end
Definition: vmac.h:37
key_type key() const
Accessor for product key.
Definition: Ref.h:266
void produce(edm::Event &, const edm::EventSetup &) override
MCTruthCompositeMatcher MCTruthCompositeMatcherNew
string const
Definition: compareJSON.py:14
#define begin
Definition: vmac.h:30
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:6
tuple size
Write out results.
def template
Definition: svgfig.py:520
edm::Association< GenParticleCollection > GenParticleMatch
vector of reference to GenParticle in the same collection