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:
42 
45 
49 
51  template<typename T>
54  const std::vector<T> & values,
55  const std::string & label) const ;
56 
57  };
58 
59 } // namespace
60 
62  srcToken_(consumes<edm::View<reco::Candidate> >(iConfig.getParameter<edm::InputTag>("src"))),
63  matchedToken_(consumes<edm::View<reco::Candidate> >(iConfig.getParameter<edm::InputTag>("matched"))),
64  algo_(iConfig),
65  dontFailOnMissingInput_(iConfig.existsAs<bool>("dontFailOnMissingInput") ? iConfig.getParameter<bool>("dontFailOnMissingInput") : false),
66  writeExtraPATOutput_(iConfig.existsAs<bool>("writeExtraPATOutput") ? iConfig.getParameter<bool>("writeExtraPATOutput") : false)
67 {
68  // this is the basic output (edm::Association is not generic)
69  produces<edm::ValueMap<reco::CandidatePtr> >();
71  // this is the crazy stuff to get the same with UserData
72  produces<edm::OwnVector<pat::UserData> >();
73  produces<edm::ValueMap<edm::Ptr<pat::UserData> > >();
74  }
75  // this is the extra stuff
76  if (algo_.hasMetrics()) {
77  produces<edm::ValueMap<float> >("deltaR");
78  produces<edm::ValueMap<float> >("deltaEta");
79  produces<edm::ValueMap<float> >("deltaPhi");
80  produces<edm::ValueMap<float> >("deltaLocalPos");
81  produces<edm::ValueMap<float> >("deltaPtRel");
82  if (algo_.hasChi2()) {
83  produces<edm::ValueMap<float> >("chi2");
84  }
85  } else {
86  produces<edm::ValueMap<int> >("matched");
87  }
88 }
89 
90 void
92  using namespace edm;
93  using namespace std;
94 
95  algo_.init(iSetup);
96 
98 
99  iEvent.getByToken(srcToken_, src);
100  iEvent.getByToken(matchedToken_, matched);
101 
102  // declare loop variables and some intermediate stuff
104  int isrc, nsrc = src->size();
105 
106  // working and output variables
107  vector<int> match(nsrc, -1);
108  vector<float> deltaRs(nsrc, 999);
109  vector<float> deltaEtas(nsrc, 999);
110  vector<float> deltaPhis(nsrc, 999);
111  vector<float> deltaPtRel(nsrc, 999);
112  vector<float> deltaLocalPos(nsrc, 999);
113  vector<float> chi2(nsrc, 999999);
114 
115  // don't try matching if the input collection is missing and the module is configured to fail silently
116  if (!(matched.failedToGet() && dontFailOnMissingInput_)) {
117  // loop on the source collection, and request for the match
118  for (itsrc = src->begin(), edsrc = src->end(), isrc = 0; itsrc != edsrc; ++itsrc, ++isrc) {
119  match[isrc] = algo_.match(*itsrc, *matched, deltaRs[isrc], deltaEtas[isrc], deltaPhis[isrc], deltaLocalPos[isrc], deltaPtRel[isrc], chi2[isrc]);
120  }
121  }
122 
123  std::vector<reco::CandidatePtr> ptrs(nsrc);
124  for (isrc = 0; isrc < nsrc; ++isrc) {
125  if (match[isrc] != -1) {
126  ptrs[isrc] = matched->ptrAt(match[isrc]);
127  }
128  }
129  storeValueMap<reco::CandidatePtr>(iEvent, src, ptrs, "");
130 
131  if (writeExtraPATOutput_) {
132  std::auto_ptr<edm::OwnVector<pat::UserData> > outUDVect(new edm::OwnVector<pat::UserData>());
133  std::vector<int> idxUD(nsrc, -1);
134  for (isrc = 0; isrc < nsrc; ++isrc) {
135  if (match[isrc] != -1) {
136  outUDVect->push_back(pat::UserData::make(ptrs[isrc]));
137  idxUD[isrc] = outUDVect->size() - 1;
138  }
139  }
140  edm::OrphanHandle<edm::OwnVector<pat::UserData> > doneUDVect = iEvent.put(outUDVect);
141  std::vector<edm::Ptr<pat::UserData> > ptrUD(nsrc);
142  for (isrc = 0; isrc < nsrc; ++isrc) {
143  if (idxUD[isrc] != -1) ptrUD[isrc] = edm::Ptr<pat::UserData>(doneUDVect, idxUD[isrc]);
144  }
145  storeValueMap<edm::Ptr<pat::UserData> >(iEvent, src, ptrUD, "");
146  }
147 
148  if (algo_.hasMetrics()) {
149  storeValueMap<float>(iEvent, src, deltaRs, "deltaR");
150  storeValueMap<float>(iEvent, src, deltaEtas, "deltaEta");
151  storeValueMap<float>(iEvent, src, deltaPhis, "deltaPhi");
152  storeValueMap<float>(iEvent, src, deltaLocalPos, "deltaLocalPos");
153  storeValueMap<float>(iEvent, src, deltaPtRel, "deltaPtRel");
154  if (algo_.hasChi2()) {
155  storeValueMap<float>(iEvent, src, chi2, "chi2");
156  }
157  } else {
158  std::vector<int> ismatched(nsrc, 0);
159  for (isrc = 0; isrc < nsrc; ++isrc) {
160  ismatched[isrc] = (match[isrc] != -1);
161  }
162  storeValueMap<int>(iEvent, src, ismatched, "matched");
163  }
164 }
165 
166 template<typename T>
167 void
170  const std::vector<T> & values,
171  const std::string & label) const {
172  using namespace edm; using namespace std;
173  auto_ptr<ValueMap<T> > valMap(new ValueMap<T>());
174  typename edm::ValueMap<T>::Filler filler(*valMap);
175  filler.insert(handle, values.begin(), values.end());
176  filler.fill();
177  iEvent.put(valMap, label);
178 }
179 
180 
182 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.
algo_(conf.existsAs< bool >("Correct")?conf.getParameter< bool >("Correct"):true, conf.getParameter< double >("e9e25Cut"), conf.getParameter< double >("intercept2DCut"), conf.existsAs< bool >("intercept2DSlope")?conf.getParameter< double >("intercept2DSlope"):defaultSlope2D_, conf.getParameter< std::vector< double > >("e1e9Cut"), conf.getParameter< std::vector< double > >("eCOREe9Cut"), conf.getParameter< std::vector< double > >("eSeLCut"), hfvars_)
edm::EDGetTokenT< edm::View< reco::Candidate > > matchedToken_
Matcher of reconstructed objects to other reconstructed objects using the tracks inside them...
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
#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::EDGetTokenT< edm::View< reco::Candidate > > srcToken_
Labels for input collections.
MatcherUsingTracksAlgorithm algo_
The real workhorse.
int iEvent
Definition: GenABIO.cc:230
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:120
tuple handle
Definition: patZpeak.py:22
virtual void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
bool dontFailOnMissingInput_
Some extra configurables.
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:85
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
volatile std::atomic< bool > shutdown_flag false
MatcherUsingTracks(const edm::ParameterSet &iConfig)