CMS 3D CMS Logo

PhysObjectMatcher.h
Go to the documentation of this file.
1 #ifndef UtilAlgos_PhysObjectMatcher_h
2 #define UtilAlgos_PhysObjectMatcher_h
3 /* \class PhysObjectMatcher.
4  *
5  * Extended version of reco::CandMatcher.
6  * Tries to match elements from collection 1 to collection 2 with optional
7  * resolution of ambiguities. Uses three helper classes for
8  * (1) the basic selection of the match (e.g. pdgId, charge, ..);
9  * (2) a distance measure (e.g. deltaR);
10  * (3) the ranking of several matches.
11  *
12  */
22 
23 // #include <iostream>
24 
25 namespace reco {
26 
27  namespace helper {
29  template <typename D, typename C1, typename C2>
31  public:
32  LessByMatchDistance(const edm::ParameterSet& cfg, const C1& c1, const C2& c2)
33  : distance_(reco::modules::make<D>(cfg)), c1_(c1), c2_(c2) {}
34  bool operator()(const std::pair<size_t, size_t>& p1, const std::pair<size_t, size_t>& p2) const {
35  return distance_(c1_[p1.first], c2_[p1.second]) < distance_(c1_[p2.first], c2_[p2.second]);
36  }
37 
38  private:
40  const C1& c1_;
41  const C2& c2_;
42  };
43  } // namespace helper
44 
45  // Template arguments:
46  // C1 .. candidate collection to be matched
47  // C2 .. target of the match (typically MC)
48  // S ... match (pre-)selector
49  // D ... match (typically cut on some distance)
50  // default: deltaR cut
51  // Q ... ranking of matches
52  // default: by smaller deltaR
53  template <typename C1,
54  typename C2,
55  typename S,
59  public:
61  ~PhysObjectMatcher() override;
62 
63  private:
64  typedef typename C1::value_type T1;
65  typedef typename C2::value_type T2;
67  typedef std::pair<size_t, size_t> IndexPair;
68  typedef std::vector<IndexPair> MatchContainer;
69  void produce(edm::Event&, const edm::EventSetup&) override;
73  bool resolveAmbiguities_; // resolve ambiguities after
74  // first pass?
75  bool resolveByMatchQuality_; // resolve by (global) quality
76  // of match (otherwise: by order
77  // of test candidates)
78  bool select(const T1& c1, const T2& c2) const { return select_(c1, c2); }
81  // DeltaR<typename C1::value_type, typename C2::value_type> testDR_;
82  };
83 
84  template <typename C1, typename C2, typename S, typename D, typename Q>
86  : config_(cfg),
87  srcToken_(consumes<C1>(cfg.template getParameter<edm::InputTag>("src"))),
88  matchedToken_(consumes<C2>(cfg.template getParameter<edm::InputTag>("matched"))),
89  resolveAmbiguities_(cfg.template getParameter<bool>("resolveAmbiguities")),
90  resolveByMatchQuality_(cfg.template getParameter<bool>("resolveByMatchQuality")),
91  select_(reco::modules::make<S>(cfg)),
93  // definition of the product
94  produces<MatchMap>();
95  // set resolveByMatchQuality only if ambiguities are to be resolved
97  }
98 
99  template <typename C1, typename C2, typename S, typename D, typename Q>
101 
102  template <typename C1, typename C2, typename S, typename D, typename Q>
104  using namespace edm;
105  using namespace std;
106  typedef std::pair<size_t, size_t> IndexPair;
107  typedef std::vector<IndexPair> MatchContainer;
108  // get collections from event
110  evt.getByToken(matchedToken_, matched);
112  evt.getByToken(srcToken_, cands);
113  // create product
114  unique_ptr<MatchMap> matchMap(new MatchMap(matched));
115  size_t size = cands->size();
116  if (size != 0) {
117  //
118  // create helpers
119  //
120  Q comparator(config_, *cands, *matched);
121  typename MatchMap::Filler filler(*matchMap);
122  ::helper::MasterCollection<C1> master(cands, evt);
123  vector<int> indices(master.size(), -1); // result: indices in target collection
124  vector<bool> mLock(matched->size(), false); // locks in target collection
125  MatchContainer matchPairs; // container of matched pairs
126  // loop over candidates
127  for (size_t c = 0; c != size; ++c) {
128  const T1& cand = (*cands)[c];
129  // no global comparison of match quality -> reset the container for each candidate
130  if (!resolveByMatchQuality_)
131  matchPairs.clear();
132  // loop over target collection
133  for (size_t m = 0; m != matched->size(); ++m) {
134  const T2& match = (*matched)[m];
135  // check lock and preselection
136  if (!mLock[m] && select(cand, match)) {
137  // double dist = testDR_(cand,match);
138  // cout << "dist between c = " << c << " and m = "
139  // << m << " is " << dist << " at pts of "
140  // << cand.pt() << " " << match.pt() << endl;
141  // matching requirement fulfilled -> store pair of indices
142  if (distance_(cand, match))
143  matchPairs.push_back(make_pair(c, m));
144  }
145  }
146  // if match(es) found and no global ambiguity resolution requested
147  if (!matchPairs.empty() && !resolveByMatchQuality_) {
148  // look for and store best match
149  size_t idx = master.index(c);
150  assert(idx < indices.size());
151  size_t index = min_element(matchPairs.begin(), matchPairs.end(), comparator)->second;
152  indices[idx] = index;
153  // if ambiguity resolution by order of (reco) candidates:
154  // lock element in target collection
155  if (resolveAmbiguities_)
156  mLock[index] = true;
157  // {
158  // MatchContainer::const_iterator i = min_element(matchPairs.begin(), matchPairs.end(), comparator);
159  // cout << "smallest distance for c = " << c << " is "
160  // << testDR_((*cands)[(*i).first],
161  // (*matched)[(*i).second]) << endl;
162  // }
163  }
164  }
165  // ambiguity resolution by global match quality (if requested)
166  if (resolveByMatchQuality_) {
167  // sort container of all matches by quality
168  sort(matchPairs.begin(), matchPairs.end(), comparator);
169  vector<bool> cLock(master.size(), false);
170  // loop over sorted container
171  for (MatchContainer::const_iterator i = matchPairs.begin(); i != matchPairs.end(); ++i) {
172  size_t c = (*i).first;
173  size_t m = (*i).second;
174  // cout << "rel dp = " << ((*cands)[c].pt()-(*matched)[m].pt())/(*matched)[m].pt() << endl;
175  // accept only pairs without any lock
176  if (mLock[m] || cLock[c])
177  continue;
178  // store index to target collection and lock the two items
179  size_t idx = master.index(c);
180  assert(idx < indices.size());
181  indices[idx] = m;
182  mLock[m] = true;
183  cLock[c] = true;
184  }
185  }
186  filler.insert(master.get(), indices.begin(), indices.end());
187  filler.fill();
188  }
189  evt.put(std::move(matchMap));
190  }
191 
192 } // namespace reco
193 
194 #endif
size
Write out results.
std::vector< IndexPair > MatchContainer
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
edm::EDGetTokenT< C2 > matchedToken_
Definition: helper.py:1
edm::ParameterSet config_
S make(const edm::ParameterSet &cfg)
edm::EDGetTokenT< C1 > srcToken_
Default class for ranking matches: sorting by smaller distance.
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
void produce(edm::Event &, const edm::EventSetup &) override
assert(be >=bs)
edm::Association< C2 > MatchMap
U second(std::pair< T, U > const &p)
PhysObjectMatcher(const edm::ParameterSet &cfg)
bool select(const T1 &c1, const T2 &c2) const
LessByMatchDistance(const edm::ParameterSet &cfg, const C1 &c1, const C2 &c2)
def template(fileName, svg, replaceme="REPLACEME")
Definition: svgfig.py:521
std::pair< size_t, size_t > IndexPair
DecomposeProduct< arg, typename Div::arg > D
Definition: Factorize.h:141
fixed size matrix
HLT enums.
bool operator()(const std::pair< size_t, size_t > &p1, const std::pair< size_t, size_t > &p2) const
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
def move(src, dest)
Definition: eostools.py:511