CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MatcherUsingTracks.cc
Go to the documentation of this file.
1 //
2 //
3 
16 
19 
21 
23 
25 
26 // template-related workaround for bug in OwnVector+Ptr
27 namespace edm { using std::advance; }
28 
29 namespace pat {
30 
32  public:
33  explicit MatcherUsingTracks(const edm::ParameterSet & iConfig);
34  virtual ~MatcherUsingTracks() { }
35 
36  virtual void produce(edm::Event & iEvent, const edm::EventSetup& iSetup) override;
37 
38  private:
41 
44 
48 
50  template<typename T>
53  const std::vector<T> & values,
54  const std::string & label) const ;
55 
56  };
57 
58 } // namespace
59 
61  src_(iConfig.getParameter<edm::InputTag>("src")),
62  matched_(iConfig.getParameter<edm::InputTag>("matched")),
63  algo_(iConfig),
64  dontFailOnMissingInput_(iConfig.existsAs<bool>("dontFailOnMissingInput") ? iConfig.getParameter<bool>("dontFailOnMissingInput") : false),
65  writeExtraPATOutput_(iConfig.existsAs<bool>("writeExtraPATOutput") ? iConfig.getParameter<bool>("writeExtraPATOutput") : false)
66 {
67  // this is the basic output (edm::Association is not generic)
68  produces<edm::ValueMap<reco::CandidatePtr> >();
70  // this is the crazy stuff to get the same with UserData
71  produces<edm::OwnVector<pat::UserData> >();
72  produces<edm::ValueMap<edm::Ptr<pat::UserData> > >();
73  }
74  // this is the extra stuff
75  if (algo_.hasMetrics()) {
76  produces<edm::ValueMap<float> >("deltaR");
77  produces<edm::ValueMap<float> >("deltaEta");
78  produces<edm::ValueMap<float> >("deltaPhi");
79  produces<edm::ValueMap<float> >("deltaLocalPos");
80  produces<edm::ValueMap<float> >("deltaPtRel");
81  if (algo_.hasChi2()) {
82  produces<edm::ValueMap<float> >("chi2");
83  }
84  } else {
85  produces<edm::ValueMap<int> >("matched");
86  }
87 }
88 
89 void
91  using namespace edm;
92  using namespace std;
93 
94  algo_.init(iSetup);
95 
97 
98  iEvent.getByLabel(src_, src);
99  iEvent.getByLabel(matched_, matched);
100 
101  // declare loop variables and some intermediate stuff
103  int isrc, nsrc = src->size();
104 
105  // working and output variables
106  vector<int> match(nsrc, -1);
107  vector<float> deltaRs(nsrc, 999);
108  vector<float> deltaEtas(nsrc, 999);
109  vector<float> deltaPhis(nsrc, 999);
110  vector<float> deltaPtRel(nsrc, 999);
111  vector<float> deltaLocalPos(nsrc, 999);
112  vector<float> chi2(nsrc, 999999);
113 
114  // don't try matching if the input collection is missing and the module is configured to fail silently
115  if (!(matched.failedToGet() && dontFailOnMissingInput_)) {
116  // loop on the source collection, and request for the match
117  for (itsrc = src->begin(), edsrc = src->end(), isrc = 0; itsrc != edsrc; ++itsrc, ++isrc) {
118  match[isrc] = algo_.match(*itsrc, *matched, deltaRs[isrc], deltaEtas[isrc], deltaPhis[isrc], deltaLocalPos[isrc], deltaPtRel[isrc], chi2[isrc]);
119  }
120  }
121 
122  std::vector<reco::CandidatePtr> ptrs(nsrc);
123  for (isrc = 0; isrc < nsrc; ++isrc) {
124  if (match[isrc] != -1) {
125  ptrs[isrc] = matched->ptrAt(match[isrc]);
126  }
127  }
128  storeValueMap<reco::CandidatePtr>(iEvent, src, ptrs, "");
129 
130  if (writeExtraPATOutput_) {
131  std::auto_ptr<edm::OwnVector<pat::UserData> > outUDVect(new edm::OwnVector<pat::UserData>());
132  std::vector<int> idxUD(nsrc, -1);
133  for (isrc = 0; isrc < nsrc; ++isrc) {
134  if (match[isrc] != -1) {
135  outUDVect->push_back(pat::UserData::make(ptrs[isrc]));
136  idxUD[isrc] = outUDVect->size() - 1;
137  }
138  }
139  edm::OrphanHandle<edm::OwnVector<pat::UserData> > doneUDVect = iEvent.put(outUDVect);
140  std::vector<edm::Ptr<pat::UserData> > ptrUD(nsrc);
141  for (isrc = 0; isrc < nsrc; ++isrc) {
142  if (idxUD[isrc] != -1) ptrUD[isrc] = edm::Ptr<pat::UserData>(doneUDVect, idxUD[isrc]);
143  }
144  storeValueMap<edm::Ptr<pat::UserData> >(iEvent, src, ptrUD, "");
145  }
146 
147  if (algo_.hasMetrics()) {
148  storeValueMap<float>(iEvent, src, deltaRs, "deltaR");
149  storeValueMap<float>(iEvent, src, deltaEtas, "deltaEta");
150  storeValueMap<float>(iEvent, src, deltaPhis, "deltaPhi");
151  storeValueMap<float>(iEvent, src, deltaLocalPos, "deltaLocalPos");
152  storeValueMap<float>(iEvent, src, deltaPtRel, "deltaPtRel");
153  if (algo_.hasChi2()) {
154  storeValueMap<float>(iEvent, src, chi2, "chi2");
155  }
156  } else {
157  std::vector<int> ismatched(nsrc, 0);
158  for (isrc = 0; isrc < nsrc; ++isrc) {
159  ismatched[isrc] = (match[isrc] != -1);
160  }
161  storeValueMap<int>(iEvent, src, ismatched, "matched");
162  }
163 }
164 
165 template<typename T>
166 void
169  const std::vector<T> & values,
170  const std::string & label) const {
171  using namespace edm; using namespace std;
172  auto_ptr<ValueMap<T> > valMap(new ValueMap<T>());
173  typename edm::ValueMap<T>::Filler filler(*valMap);
174  filler.insert(handle, values.begin(), values.end());
175  filler.fill();
176  iEvent.put(valMap, label);
177 }
178 
179 
181 using namespace pat;
void storeValueMap(edm::Event &iEvent, const edm::Handle< edm::View< reco::Candidate > > &handle, const std::vector< T > &values, const std::string &label) const
Store extra information in a ValueMap.
Matcher of reconstructed objects to other reconstructed objects using the tracks inside them...
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
static std::auto_ptr< UserData > make(const T &value, bool transientOnly=false)
void insert(const H &h, I begin, I end)
Definition: ValueMap.h:52
edm::InputTag src_
Labels for input collections.
MatcherUsingTracksAlgorithm algo_
The real workhorse.
int iEvent
Definition: GenABIO.cc:243
Matcher of reconstructed objects to other reconstructed objects using the tracks inside them...
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
tuple handle
Definition: patZpeak.py:22
virtual void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:390
bool dontFailOnMissingInput_
Some extra configurables.
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:6
volatile std::atomic< bool > shutdown_flag false
MatcherUsingTracks(const edm::ParameterSet &iConfig)