CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TemplatedSecondaryVertexProducer.cc
Go to the documentation of this file.
1 #include <functional>
2 #include <algorithm>
3 #include <iterator>
4 #include <cstddef>
5 #include <string>
6 #include <vector>
7 #include <map>
8 #include <set>
9 
10 #include <boost/iterator/transform_iterator.hpp>
11 
23 
28 
33 
41 
46 
52 
54 
55 #include "fastjet/JetDefinition.hh"
56 #include "fastjet/ClusterSequence.hh"
57 #include "fastjet/PseudoJet.hh"
58 
59 //
60 // constants, enums and typedefs
61 //
62 typedef boost::shared_ptr<fastjet::ClusterSequence> ClusterSequencePtr;
63 typedef boost::shared_ptr<fastjet::JetDefinition> JetDefPtr;
64 
65 
66 using namespace reco;
67 
68 namespace {
69  class VertexInfo : public fastjet::PseudoJet::UserInfoBase{
70  public:
71  VertexInfo(const int vertexIndex) :
72  m_vertexIndex(vertexIndex) { }
73 
74  inline const int vertexIndex() const { return m_vertexIndex; }
75 
76  protected:
77  int m_vertexIndex;
78  };
79 
80  template<typename T>
81  struct RefToBaseLess : public std::binary_function<edm::RefToBase<T>,
82  edm::RefToBase<T>,
83  bool> {
84  inline bool operator()(const edm::RefToBase<T> &r1,
85  const edm::RefToBase<T> &r2) const
86  {
87  return r1.id() < r2.id() ||
88  (r1.id() == r2.id() && r1.key() < r2.key());
89  }
90  };
91 }
92 
94 return GlobalVector(sv.x() - pv.x(), sv.y() - pv.y(),sv.z() - pv.z());
95 }
97 return GlobalVector(sv.vertex().x() - pv.x(), sv.vertex().y() - pv.y(),sv.vertex().z() - pv.z());
98 }
100 {return sv.position();}
102 {return sv.vertex();}
103 
104 
105 template <class IPTI,class VTX>
107  public:
108  explicit TemplatedSecondaryVertexProducer(const edm::ParameterSet &params);
110  static void fillDescriptions(edm::ConfigurationDescriptions & descriptions);
111  typedef std::vector<TemplatedSecondaryVertexTagInfo<IPTI,VTX> > Product;
113  typedef typename IPTI::input_container input_container;
115  typedef typename std::vector<reco::btag::IndexedTrackData> TrackDataVector;
116  virtual void produce(edm::Event &event, const edm::EventSetup &es) override;
117 
118  private:
119  template<class CONTAINER>
120  void matchReclusteredJets(const edm::Handle<CONTAINER>& jets,
121  const std::vector<fastjet::PseudoJet>& matchedJets,
122  std::vector<int>& matchedIndices,
123  const std::string& jetType="");
124  void matchGroomedJets(const edm::Handle<edm::View<reco::Jet> >& jets,
125  const edm::Handle<edm::View<reco::Jet> >& matchedJets,
126  std::vector<int>& matchedIndices);
127  void matchSubjets(const std::vector<int>& groomedIndices,
128  const edm::Handle<edm::View<reco::Jet> >& groomedJets,
129  const edm::Handle<std::vector<IPTI> >& subjets,
130  std::vector<std::vector<int> >& matchedIndices);
131  void matchSubjets(const edm::Handle<edm::View<reco::Jet> >& fatJets,
132  const edm::Handle<std::vector<IPTI> >& subjets,
133  std::vector<std::vector<int> >& matchedIndices);
134 
135  const reco::Jet * toJet(const reco::Jet & j) { return &j; }
136  const reco::Jet * toJet(const IPTI & j) { return &(*(j.jet())); }
137 
139  CONSTRAINT_NONE = 0,
144  CONSTRAINT_PV_PRIMARIES_IN_FIT
145  };
146  static ConstraintType getConstraintType(const std::string &name);
147 
166  double rParam;
167  double jetPtMin;
174 
177 
178  void markUsedTracks(TrackDataVector & trackData, const input_container & trackRefs, const SecondaryVertex & sv,size_t idx);
179 
180  struct SVBuilder :
181  public std::unary_function<const VTX&, SecondaryVertex> {
182 
184  const GlobalVector &direction,
185  bool withPVError,
186  double minTrackWeight) :
187  pv(pv), direction(direction),
188  withPVError(withPVError),
189  minTrackWeight(minTrackWeight) {}
190  SecondaryVertex operator () (const TransientVertex &sv) const;
191 
192  SecondaryVertex operator () (const VTX &sv) const
193  { return SecondaryVertex(pv, sv, direction, withPVError); }
194 
195 
196  const Vertex &pv;
200  };
201 
202  struct SVFilter :
203  public std::unary_function<const SecondaryVertex&, bool> {
204 
206  const GlobalVector &direction) :
207  filter(filter), pv(pv), direction(direction) {}
208 
209  inline bool operator () (const SecondaryVertex &sv) const
210  { return !filter(pv, sv, direction); }
211 
213  const Vertex &pv;
215  };
216 };
217 template <class IPTI,class VTX>
220 {
221  if (name == "None")
222  return CONSTRAINT_NONE;
223  else if (name == "BeamSpot")
224  return CONSTRAINT_BEAMSPOT;
225  else if (name == "BeamSpot+PVPosition")
226  return CONSTRAINT_PV_BEAMSPOT_SIZE;
227  else if (name == "BeamSpotZ+PVErrorScaledXY")
228  return CONSTRAINT_PV_BS_Z_ERRORS_SCALED;
229  else if (name == "PVErrorScaled")
230  return CONSTRAINT_PV_ERROR_SCALED;
231  else if (name == "BeamSpot+PVTracksInFit")
232  return CONSTRAINT_PV_PRIMARIES_IN_FIT;
233  else
234  throw cms::Exception("InvalidArgument")
235  << "TemplatedSecondaryVertexProducer: ``constraint'' parameter "
236  "value \"" << name << "\" not understood."
237  << std::endl;
238 }
239 
242 {
243  if (name == "AlwaysWithGhostTrack")
245  else if (name == "SingleTracksWithGhostTrack")
247  else if (name == "RefitGhostTrackWithVertices")
249  else
250  throw cms::Exception("InvalidArgument")
251  << "TemplatedSecondaryVertexProducer: ``fitType'' "
252  "parameter value \"" << name << "\" for "
253  "GhostTrackVertexFinder settings not "
254  "understood." << std::endl;
255 }
256 
257 template <class IPTI,class VTX>
259  const edm::ParameterSet &params) :
260  sortCriterium(TrackSorting::getCriterium(params.getParameter<std::string>("trackSort"))),
261  trackSelector(params.getParameter<edm::ParameterSet>("trackSelection")),
262  constraint(getConstraintType(params.getParameter<std::string>("constraint"))),
263  constraintScaling(1.0),
264  vtxRecoPSet(params.getParameter<edm::ParameterSet>("vertexReco")),
265  useGhostTrack(vtxRecoPSet.getParameter<std::string>("finder") == "gtvr"),
266  withPVError(params.getParameter<bool>("usePVError")),
267  minTrackWeight(params.getParameter<double>("minimumTrackWeight")),
268  vertexFilter(params.getParameter<edm::ParameterSet>("vertexCuts")),
269  vertexSorting(params.getParameter<edm::ParameterSet>("vertexSelection"))
270 {
271  token_trackIPTagInfo = consumes<std::vector<IPTI> >(params.getParameter<edm::InputTag>("trackIPTagInfos"));
274  constraintScaling = params.getParameter<double>("pvErrorScaling");
275 
280  token_BeamSpot = consumes<reco::BeamSpot>(params.getParameter<edm::InputTag>("beamSpotTag"));
281  useExternalSV = false;
282  if(params.existsAs<bool>("useExternalSV")) useExternalSV = params.getParameter<bool> ("useExternalSV");
283  if(useExternalSV) {
284  token_extSVCollection = consumes<edm::View<VTX> >(params.getParameter<edm::InputTag>("extSVCollection"));
285  extSVDeltaRToJet = params.getParameter<double>("extSVDeltaRToJet");
286  }
287  useSVClustering = ( params.existsAs<bool>("useSVClustering") ? params.getParameter<bool>("useSVClustering") : false );
288  useSVMomentum = ( params.existsAs<bool>("useSVMomentum") ? params.getParameter<bool>("useSVMomentum") : false );
289  useFatJets = ( useExternalSV && params.exists("fatJets") );
290  useGroomedFatJets = ( useExternalSV && params.exists("groomedFatJets") );
291  if( useSVClustering )
292  {
293  jetAlgorithm = params.getParameter<std::string>("jetAlgorithm");
294  rParam = params.getParameter<double>("rParam");
295  jetPtMin = 0.; // hardcoded to 0. since we simply want to recluster all input jets which already had some PtMin applied
296  ghostRescaling = ( params.existsAs<double>("ghostRescaling") ? params.getParameter<double>("ghostRescaling") : 1e-18 );
297  relPtTolerance = ( params.existsAs<double>("relPtTolerance") ? params.getParameter<double>("relPtTolerance") : 1e-03); // 0.1% relative difference in Pt should be sufficient to detect possible misconfigurations
298 
299  // set jet algorithm
300  if (jetAlgorithm=="Kt")
301  fjJetDefinition = JetDefPtr( new fastjet::JetDefinition(fastjet::kt_algorithm, rParam) );
302  else if (jetAlgorithm=="CambridgeAachen")
303  fjJetDefinition = JetDefPtr( new fastjet::JetDefinition(fastjet::cambridge_algorithm, rParam) );
304  else if (jetAlgorithm=="AntiKt")
305  fjJetDefinition = JetDefPtr( new fastjet::JetDefinition(fastjet::antikt_algorithm, rParam) );
306  else
307  throw cms::Exception("InvalidJetAlgorithm") << "Jet clustering algorithm is invalid: " << jetAlgorithm << ", use CambridgeAachen | Kt | AntiKt" << std::endl;
308  }
309  if( useFatJets )
310  token_fatJets = consumes<edm::View<reco::Jet> >(params.getParameter<edm::InputTag>("fatJets"));
311  if( useGroomedFatJets )
312  token_groomedFatJets = consumes<edm::View<reco::Jet> >(params.getParameter<edm::InputTag>("groomedFatJets"));
313  if( useFatJets && !useSVClustering )
314  rParam = params.getParameter<double>("rParam"); // will be used later as a dR cut
315 
316  produces<Product>();
317 }
318 template <class IPTI,class VTX>
320 {
321 }
322 
323 template <class IPTI,class VTX>
325  const edm::EventSetup &es)
326 {
327 // typedef std::map<TrackBaseRef, TransientTrack,
328 // RefToBaseLess<Track> > TransientTrackMap;
329  //How about good old pointers?
330  typedef std::map<const Track *, TransientTrack> TransientTrackMap;
331 
332 
334  es.get<TransientTrackRecord>().get("TransientTrackBuilder",
335  trackBuilder);
336 
338  event.getByToken(token_trackIPTagInfo, trackIPTagInfos);
339 
340  // External Sec Vertex collection (e.g. for IVF usage)
341  edm::Handle<edm::View<VTX> > extSecVertex;
342  if(useExternalSV) event.getByToken(token_extSVCollection,extSecVertex);
343 
344  edm::Handle<edm::View<reco::Jet> > fatJetsHandle;
345  edm::Handle<edm::View<reco::Jet> > groomedFatJetsHandle;
346  if( useFatJets )
347  {
348  event.getByToken(token_fatJets, fatJetsHandle);
349 
350  if( useGroomedFatJets )
351  {
352  event.getByToken(token_groomedFatJets, groomedFatJetsHandle);
353 
354  if( groomedFatJetsHandle->size() > fatJetsHandle->size() )
355  edm::LogError("TooManyGroomedJets") << "There are more groomed (" << groomedFatJetsHandle->size() << ") than original fat jets (" << fatJetsHandle->size() << "). Please check that the two jet collections belong to each other.";
356  }
357  }
358 
360  unsigned int bsCovSrc[7] = { 0, };
361  double sigmaZ = 0.0, beamWidth = 0.0;
362  switch(constraint) {
363  case CONSTRAINT_PV_BEAMSPOT_SIZE:
364  event.getByToken(token_BeamSpot,beamSpot);
365  bsCovSrc[3] = bsCovSrc[4] = bsCovSrc[5] = bsCovSrc[6] = 1;
366  sigmaZ = beamSpot->sigmaZ();
367  beamWidth = beamSpot->BeamWidthX();
368  break;
369 
370  case CONSTRAINT_PV_BS_Z_ERRORS_SCALED:
371  event.getByToken(token_BeamSpot,beamSpot);
372  bsCovSrc[0] = bsCovSrc[1] = 2;
373  bsCovSrc[3] = bsCovSrc[4] = bsCovSrc[5] = 1;
374  sigmaZ = beamSpot->sigmaZ();
375  break;
376 
377  case CONSTRAINT_PV_ERROR_SCALED:
378  bsCovSrc[0] = bsCovSrc[1] = bsCovSrc[2] = 2;
379  break;
380 
381  case CONSTRAINT_BEAMSPOT:
382  case CONSTRAINT_PV_PRIMARIES_IN_FIT:
383  event.getByToken(token_BeamSpot,beamSpot);
384  break;
385 
386  default:
387  /* nothing */;
388  }
389 
390  // ------------------------------------ SV clustering START --------------------------------------------
391  std::vector<std::vector<int> > clusteredSVs(trackIPTagInfos->size(),std::vector<int>());
392  if( useExternalSV && useSVClustering && trackIPTagInfos->size()>0 )
393  {
394  // vector of constituents for reclustering jets and "ghost" SVs
395  std::vector<fastjet::PseudoJet> fjInputs;
396  // loop over all input jets and collect all their constituents
397  if( useFatJets )
398  {
399  for(edm::View<reco::Jet>::const_iterator it = fatJetsHandle->begin(); it != fatJetsHandle->end(); ++it)
400  {
401  std::vector<edm::Ptr<reco::Candidate> > constituents = it->getJetConstituents();
402  std::vector<edm::Ptr<reco::Candidate> >::const_iterator m;
403  for( m = constituents.begin(); m != constituents.end(); ++m )
404  {
405  reco::CandidatePtr constit = *m;
406  if(constit->pt() == 0)
407  {
408  edm::LogWarning("NullTransverseMomentum") << "dropping input candidate with pt=0";
409  continue;
410  }
411  fjInputs.push_back(fastjet::PseudoJet(constit->px(),constit->py(),constit->pz(),constit->energy()));
412  }
413  }
414  }
415  else
416  {
417  for(typename std::vector<IPTI>::const_iterator it = trackIPTagInfos->begin(); it != trackIPTagInfos->end(); ++it)
418  {
419  std::vector<edm::Ptr<reco::Candidate> > constituents = it->jet()->getJetConstituents();
420  std::vector<edm::Ptr<reco::Candidate> >::const_iterator m;
421  for( m = constituents.begin(); m != constituents.end(); ++m )
422  {
423  reco::CandidatePtr constit = *m;
424  if(constit->pt() == 0)
425  {
426  edm::LogWarning("NullTransverseMomentum") << "dropping input candidate with pt=0";
427  continue;
428  }
429  fjInputs.push_back(fastjet::PseudoJet(constit->px(),constit->py(),constit->pz(),constit->energy()));
430  }
431  }
432  }
433  // insert "ghost" SVs in the vector of constituents
434  for(typename edm::View<VTX>::const_iterator it = extSecVertex->begin(); it != extSecVertex->end(); ++it)
435  {
436  const reco::Vertex &pv = *(trackIPTagInfos->front().primaryVertex());
437  GlobalVector dir = flightDirection(pv, *it);
438  dir = dir.unit();
439  fastjet::PseudoJet p(dir.x(),dir.y(),dir.z(),dir.mag()); // using SV flight direction so treating SV as massless
440  if( useSVMomentum )
441  p = fastjet::PseudoJet(it->p4().px(),it->p4().py(),it->p4().pz(),it->p4().energy());
442  p*=ghostRescaling; // rescale SV direction/momentum
443  p.set_user_info(new VertexInfo( it - extSecVertex->begin() ));
444  fjInputs.push_back(p);
445  }
446 
447  // define jet clustering sequence
448  fjClusterSeq = ClusterSequencePtr( new fastjet::ClusterSequence( fjInputs, *fjJetDefinition ) );
449  // recluster jet constituents and inserted "ghosts"
450  std::vector<fastjet::PseudoJet> inclusiveJets = fastjet::sorted_by_pt( fjClusterSeq->inclusive_jets(jetPtMin) );
451 
452  if( useFatJets )
453  {
454  if( inclusiveJets.size() < fatJetsHandle->size() )
455  edm::LogError("TooFewReclusteredJets") << "There are fewer reclustered (" << inclusiveJets.size() << ") than original fat jets (" << fatJetsHandle->size() << "). Please check that the jet algorithm and jet size match those used for the original jet collection.";
456 
457  // match reclustered and original fat jets
458  std::vector<int> reclusteredIndices;
459  matchReclusteredJets<edm::View<reco::Jet> >(fatJetsHandle,inclusiveJets,reclusteredIndices,"fat");
460 
461  // match groomed and original fat jets
462  std::vector<int> groomedIndices;
463  if( useGroomedFatJets )
464  matchGroomedJets(fatJetsHandle,groomedFatJetsHandle,groomedIndices);
465 
466  // match subjets and original fat jets
467  std::vector<std::vector<int> > subjetIndices;
468  if( useGroomedFatJets )
469  matchSubjets(groomedIndices,groomedFatJetsHandle,trackIPTagInfos,subjetIndices);
470  else
471  matchSubjets(fatJetsHandle,trackIPTagInfos,subjetIndices);
472 
473  // collect clustered SVs
474  for(size_t i=0; i<fatJetsHandle->size(); ++i)
475  {
476  if( reclusteredIndices.at(i) < 0 ) continue; // continue if matching reclustered to original jets failed
477 
478  if( fatJetsHandle->at(i).pt() == 0 ) // continue if the original jet has Pt=0
479  {
480  edm::LogWarning("NullTransverseMomentum") << "The original fat jet " << i << " has Pt=0. This is not expected so the jet will be skipped.";
481  continue;
482  }
483 
484  if( subjetIndices.at(i).size()==0 ) continue; // continue if the original jet does not have subjets assigned
485 
486  // since the "ghosts" are extremely soft, the configuration and ordering of the reclustered and original fat jets should in principle stay the same
487  if( ( std::abs( inclusiveJets.at(reclusteredIndices.at(i)).pt() - fatJetsHandle->at(i).pt() ) / fatJetsHandle->at(i).pt() ) > relPtTolerance )
488  {
489  if( fatJetsHandle->at(i).pt() < 10. ) // special handling for low-Pt jets (Pt<10 GeV)
490  edm::LogWarning("JetPtMismatchAtLowPt") << "The reclustered and original fat jet " << i << " have different Pt's (" << inclusiveJets.at(reclusteredIndices.at(i)).pt() << " vs " << fatJetsHandle->at(i).pt() << " GeV, respectively).\n"
491  << "Please check that the jet algorithm and jet size match those used for the original fat jet collection and also make sure the original fat jets are uncorrected. In addition, make sure you are not using CaloJets which are presently not supported.\n"
492  << "Since the mismatch is at low Pt, it is ignored and only a warning is issued.\n"
493  << "\nIn extremely rare instances the mismatch could be caused by a difference in the machine precision in which case make sure the original jet collection is produced and reclustering is performed in the same job.";
494  else
495  edm::LogError("JetPtMismatch") << "The reclustered and original fat jet " << i << " have different Pt's (" << inclusiveJets.at(reclusteredIndices.at(i)).pt() << " vs " << fatJetsHandle->at(i).pt() << " GeV, respectively).\n"
496  << "Please check that the jet algorithm and jet size match those used for the original fat jet collection and also make sure the original fat jets are uncorrected. In addition, make sure you are not using CaloJets which are presently not supported.\n"
497  << "\nIn extremely rare instances the mismatch could be caused by a difference in the machine precision in which case make sure the original jet collection is produced and reclustering is performed in the same job.";
498  }
499 
500  // get jet constituents
501  std::vector<fastjet::PseudoJet> constituents = inclusiveJets.at(reclusteredIndices.at(i)).constituents();
502 
503  std::vector<int> svIndices;
504  // loop over jet constituents and try to find "ghosts"
505  for(std::vector<fastjet::PseudoJet>::const_iterator it = constituents.begin(); it != constituents.end(); ++it)
506  {
507  if( !it->has_user_info() ) continue; // skip if not a "ghost"
508 
509  svIndices.push_back( it->user_info<VertexInfo>().vertexIndex() );
510  }
511 
512  // loop over clustered SVs and assign them to different subjets based on smallest dR
513  for(size_t sv=0; sv<svIndices.size(); ++sv)
514  {
515  const reco::Vertex &pv = *(trackIPTagInfos->front().primaryVertex());
516  const VTX &extSV = (*extSecVertex)[ svIndices.at(sv) ];
517  GlobalVector dir = flightDirection(pv, extSV);
518  dir = dir.unit();
519  fastjet::PseudoJet p(dir.x(),dir.y(),dir.z(),dir.mag()); // using SV flight direction so treating SV as massless
520  if( useSVMomentum )
521  p = fastjet::PseudoJet(extSV.p4().px(),extSV.p4().py(),extSV.p4().pz(),extSV.p4().energy());
522 
523  std::vector<double> dR2toSubjets;
524 
525  for(size_t sj=0; sj<subjetIndices.at(i).size(); ++sj)
526  dR2toSubjets.push_back( Geom::deltaR2( p.rapidity(), p.phi_std(), trackIPTagInfos->at(subjetIndices.at(i).at(sj)).jet()->rapidity(), trackIPTagInfos->at(subjetIndices.at(i).at(sj)).jet()->phi() ) );
527 
528  // find the closest subjet
529  int closestSubjetIdx = std::distance( dR2toSubjets.begin(), std::min_element(dR2toSubjets.begin(), dR2toSubjets.end()) );
530 
531  clusteredSVs.at(subjetIndices.at(i).at(closestSubjetIdx)).push_back( svIndices.at(sv) );
532  }
533  }
534  }
535  else
536  {
537  if( inclusiveJets.size() < trackIPTagInfos->size() )
538  edm::LogError("TooFewReclusteredJets") << "There are fewer reclustered (" << inclusiveJets.size() << ") than original jets (" << trackIPTagInfos->size() << "). Please check that the jet algorithm and jet size match those used for the original jet collection.";
539 
540  // match reclustered and original jets
541  std::vector<int> reclusteredIndices;
542  matchReclusteredJets<std::vector<IPTI> >(trackIPTagInfos,inclusiveJets,reclusteredIndices);
543 
544  // collect clustered SVs
545  for(size_t i=0; i<trackIPTagInfos->size(); ++i)
546  {
547  if( reclusteredIndices.at(i) < 0 ) continue; // continue if matching reclustered to original jets failed
548 
549  if( trackIPTagInfos->at(i).jet()->pt() == 0 ) // continue if the original jet has Pt=0
550  {
551  edm::LogWarning("NullTransverseMomentum") << "The original jet " << i << " has Pt=0. This is not expected so the jet will be skipped.";
552  continue;
553  }
554 
555  // since the "ghosts" are extremely soft, the configuration and ordering of the reclustered and original jets should in principle stay the same
556  if( ( std::abs( inclusiveJets.at(reclusteredIndices.at(i)).pt() - trackIPTagInfos->at(i).jet()->pt() ) / trackIPTagInfos->at(i).jet()->pt() ) > relPtTolerance )
557  {
558  if( trackIPTagInfos->at(i).jet()->pt() < 10. ) // special handling for low-Pt jets (Pt<10 GeV)
559  edm::LogWarning("JetPtMismatchAtLowPt") << "The reclustered and original jet " << i << " have different Pt's (" << inclusiveJets.at(reclusteredIndices.at(i)).pt() << " vs " << trackIPTagInfos->at(i).jet()->pt() << " GeV, respectively).\n"
560  << "Please check that the jet algorithm and jet size match those used for the original jet collection and also make sure the original jets are uncorrected. In addition, make sure you are not using CaloJets which are presently not supported.\n"
561  << "Since the mismatch is at low Pt, it is ignored and only a warning is issued.\n"
562  << "\nIn extremely rare instances the mismatch could be caused by a difference in the machine precision in which case make sure the original jet collection is produced and reclustering is performed in the same job.";
563  else
564  edm::LogError("JetPtMismatch") << "The reclustered and original jet " << i << " have different Pt's (" << inclusiveJets.at(reclusteredIndices.at(i)).pt() << " vs " << trackIPTagInfos->at(i).jet()->pt() << " GeV, respectively).\n"
565  << "Please check that the jet algorithm and jet size match those used for the original jet collection and also make sure the original jets are uncorrected. In addition, make sure you are not using CaloJets which are presently not supported.\n"
566  << "\nIn extremely rare instances the mismatch could be caused by a difference in the machine precision in which case make sure the original jet collection is produced and reclustering is performed in the same job.";
567  }
568 
569  // get jet constituents
570  std::vector<fastjet::PseudoJet> constituents = inclusiveJets.at(reclusteredIndices.at(i)).constituents();
571 
572  // loop over jet constituents and try to find "ghosts"
573  for(std::vector<fastjet::PseudoJet>::const_iterator it = constituents.begin(); it != constituents.end(); ++it)
574  {
575  if( !it->has_user_info() ) continue; // skip if not a "ghost"
576  // push back clustered SV indices
577  clusteredSVs.at(i).push_back( it->user_info<VertexInfo>().vertexIndex() );
578  }
579  }
580  }
581  }
582  // case where fat jets are used to associate SVs to subjets but no SV clustering is performed
583  else if( useExternalSV && !useSVClustering && trackIPTagInfos->size()>0 && useFatJets )
584  {
585  // match groomed and original fat jets
586  std::vector<int> groomedIndices;
587  if( useGroomedFatJets )
588  matchGroomedJets(fatJetsHandle,groomedFatJetsHandle,groomedIndices);
589 
590  // match subjets and original fat jets
591  std::vector<std::vector<int> > subjetIndices;
592  if( useGroomedFatJets )
593  matchSubjets(groomedIndices,groomedFatJetsHandle,trackIPTagInfos,subjetIndices);
594  else
595  matchSubjets(fatJetsHandle,trackIPTagInfos,subjetIndices);
596 
597  // loop over fat jets
598  for(size_t i=0; i<fatJetsHandle->size(); ++i)
599  {
600  if( fatJetsHandle->at(i).pt() == 0 ) // continue if the original jet has Pt=0
601  {
602  edm::LogWarning("NullTransverseMomentum") << "The original fat jet " << i << " has Pt=0. This is not expected so the jet will be skipped.";
603  continue;
604  }
605 
606  if( subjetIndices.at(i).size()==0 ) continue; // continue if the original jet does not have subjets assigned
607 
608  // loop over SVs, associate them to fat jets based on dR cone and
609  // then assign them to the closets subjet in dR
610  for(typename edm::View<VTX>::const_iterator it = extSecVertex->begin(); it != extSecVertex->end(); ++it)
611  {
612  size_t sv = ( it - extSecVertex->begin() );
613 
614  const reco::Vertex &pv = *(trackIPTagInfos->front().primaryVertex());
615  const VTX &extSV = (*extSecVertex)[sv];
616  GlobalVector dir = flightDirection(pv, extSV);
617  GlobalVector jetDir(fatJetsHandle->at(i).px(),
618  fatJetsHandle->at(i).py(),
619  fatJetsHandle->at(i).pz());
620  // skip SVs outside the dR cone
621  if( Geom::deltaR2( dir, jetDir ) > rParam*rParam ) // here using the jet clustering rParam as a dR cut
622  continue;
623 
624  dir = dir.unit();
625  fastjet::PseudoJet p(dir.x(),dir.y(),dir.z(),dir.mag()); // using SV flight direction so treating SV as massless
626  if( useSVMomentum )
627  p = fastjet::PseudoJet(extSV.p4().px(),extSV.p4().py(),extSV.p4().pz(),extSV.p4().energy());
628 
629  std::vector<double> dR2toSubjets;
630 
631  for(size_t sj=0; sj<subjetIndices.at(i).size(); ++sj)
632  dR2toSubjets.push_back( Geom::deltaR2( p.rapidity(), p.phi_std(), trackIPTagInfos->at(subjetIndices.at(i).at(sj)).jet()->rapidity(), trackIPTagInfos->at(subjetIndices.at(i).at(sj)).jet()->phi() ) );
633 
634  // find the closest subjet
635  int closestSubjetIdx = std::distance( dR2toSubjets.begin(), std::min_element(dR2toSubjets.begin(), dR2toSubjets.end()) );
636 
637  clusteredSVs.at(subjetIndices.at(i).at(closestSubjetIdx)).push_back(sv);
638  }
639  }
640  }
641  // ------------------------------------ SV clustering END ----------------------------------------------
642 
643  std::auto_ptr<ConfigurableVertexReconstructor> vertexReco;
644  std::auto_ptr<GhostTrackVertexFinder> vertexRecoGT;
645  if (useGhostTrack)
646  vertexRecoGT.reset(new GhostTrackVertexFinder(
647  vtxRecoPSet.getParameter<double>("maxFitChi2"),
648  vtxRecoPSet.getParameter<double>("mergeThreshold"),
649  vtxRecoPSet.getParameter<double>("primcut"),
650  vtxRecoPSet.getParameter<double>("seccut"),
651  getGhostTrackFitType(vtxRecoPSet.getParameter<std::string>("fitType"))));
652  else
653  vertexReco.reset(
654  new ConfigurableVertexReconstructor(vtxRecoPSet));
655 
656  TransientTrackMap primariesMap;
657 
658  // result secondary vertices
659 
660  std::auto_ptr<Product> tagInfos(new Product);
661 
662  for(typename std::vector<IPTI>::const_iterator iterJets =
663  trackIPTagInfos->begin(); iterJets != trackIPTagInfos->end();
664  ++iterJets) {
665  TrackDataVector trackData;
666 // std::cout << "Jet " << iterJets-trackIPTagInfos->begin() << std::endl;
667 
668  const Vertex &pv = *iterJets->primaryVertex();
669 
670  std::set<TransientTrack> primaries;
671  if (constraint == CONSTRAINT_PV_PRIMARIES_IN_FIT) {
672  for(Vertex::trackRef_iterator iter = pv.tracks_begin();
673  iter != pv.tracks_end(); ++iter) {
674  TransientTrackMap::iterator pos =
675  primariesMap.lower_bound(iter->get());
676 
677  if (pos != primariesMap.end() &&
678  pos->first == iter->get())
679  primaries.insert(pos->second);
680  else {
681  TransientTrack track =
682  trackBuilder->build(
683  iter->castTo<TrackRef>());
684  primariesMap.insert(pos,
685  std::make_pair(iter->get(), track));
686  primaries.insert(track);
687  }
688  }
689  }
690 
691  edm::RefToBase<Jet> jetRef = iterJets->jet();
692 
693  GlobalVector jetDir(jetRef->momentum().x(),
694  jetRef->momentum().y(),
695  jetRef->momentum().z());
696 
697  std::vector<std::size_t> indices =
698  iterJets->sortedIndexes(sortCriterium);
699 
700  input_container trackRefs = iterJets->sortedTracks(indices);
701 
702  const std::vector<reco::btag::TrackIPData> &ipData =
703  iterJets->impactParameterData();
704 
705  // build transient tracks used for vertex reconstruction
706 
707  std::vector<TransientTrack> fitTracks;
708  std::vector<GhostTrackState> gtStates;
709  std::auto_ptr<GhostTrackPrediction> gtPred;
710  if (useGhostTrack)
711  gtPred.reset(new GhostTrackPrediction(
712  *iterJets->ghostTrack()));
713 
714  for(unsigned int i = 0; i < indices.size(); i++) {
716 
717  const input_item &trackRef = trackRefs[i];
718 
719  trackData.push_back(IndexedTrackData());
720  trackData.back().first = indices[i];
721 
722  // select tracks for SV finder
723 
724  if (!trackSelector(*reco::btag::toTrack(trackRef), ipData[indices[i]], *jetRef,
726  pv.position()))) {
727  trackData.back().second.svStatus =
729  continue;
730  }
731 
732  TransientTrackMap::const_iterator pos =
733  primariesMap.find(reco::btag::toTrack((trackRef)));
734  TransientTrack fitTrack;
735  if (pos != primariesMap.end()) {
736  primaries.erase(pos->second);
737  fitTrack = pos->second;
738  } else
739  fitTrack = trackBuilder->build(trackRef);
740  fitTracks.push_back(fitTrack);
741 
742  trackData.back().second.svStatus =
744 
745  if (useGhostTrack) {
746  GhostTrackState gtState(fitTrack);
747  GlobalPoint pos =
748  ipData[indices[i]].closestToGhostTrack;
749  gtState.linearize(*gtPred, true,
750  gtPred->lambda(pos));
751  gtState.setWeight(ipData[indices[i]].ghostTrackWeight);
752  gtStates.push_back(gtState);
753  }
754  }
755 
756  std::auto_ptr<GhostTrack> ghostTrack;
757  if (useGhostTrack)
758  ghostTrack.reset(new GhostTrack(
762  GlobalVector(
763  iterJets->ghostTrack()->px(),
764  iterJets->ghostTrack()->py(),
765  iterJets->ghostTrack()->pz()),
766  0.05),
767  *gtPred, gtStates,
768  iterJets->ghostTrack()->chi2(),
769  iterJets->ghostTrack()->ndof()));
770 
771  // perform actual vertex finding
772 
773 
774  std::vector<VTX> extAssoCollection;
775  std::vector<TransientVertex> fittedSVs;
776  std::vector<SecondaryVertex> SVs;
777  if(!useExternalSV){
778  switch(constraint) {
779  case CONSTRAINT_NONE:
780  if (useGhostTrack)
781  fittedSVs = vertexRecoGT->vertices(
782  pv, *ghostTrack);
783  else
784  fittedSVs = vertexReco->vertices(fitTracks);
785  break;
786 
787  case CONSTRAINT_BEAMSPOT:
788  if (useGhostTrack)
789  fittedSVs = vertexRecoGT->vertices(
790  pv, *beamSpot, *ghostTrack);
791  else
792  fittedSVs = vertexReco->vertices(fitTracks,
793  *beamSpot);
794  break;
795 
796  case CONSTRAINT_PV_BEAMSPOT_SIZE:
797  case CONSTRAINT_PV_BS_Z_ERRORS_SCALED:
798  case CONSTRAINT_PV_ERROR_SCALED: {
800  for(unsigned int i = 0; i < 7; i++) {
801  unsigned int covSrc = bsCovSrc[i];
802  for(unsigned int j = 0; j < 7; j++) {
803  double v=0.0;
804  if (!covSrc || bsCovSrc[j] != covSrc)
805  v = 0.0;
806  else if (covSrc == 1)
807  v = beamSpot->covariance(i, j);
808  else if (j<3 && i<3)
809  v = pv.covariance(i, j) *
810  constraintScaling;
811  cov(i, j) = v;
812  }
813  }
814 
815  BeamSpot bs(pv.position(), sigmaZ,
816  beamSpot.isValid() ? beamSpot->dxdz() : 0.,
817  beamSpot.isValid() ? beamSpot->dydz() : 0.,
818  beamWidth, cov, BeamSpot::Unknown);
819 
820  if (useGhostTrack)
821  fittedSVs = vertexRecoGT->vertices(
822  pv, bs, *ghostTrack);
823  else
824  fittedSVs = vertexReco->vertices(fitTracks, bs);
825  } break;
826 
827  case CONSTRAINT_PV_PRIMARIES_IN_FIT: {
828  std::vector<TransientTrack> primaries_(
829  primaries.begin(), primaries.end());
830  if (useGhostTrack)
831  fittedSVs = vertexRecoGT->vertices(
832  pv, *beamSpot, primaries_,
833  *ghostTrack);
834  else
835  fittedSVs = vertexReco->vertices(
836  primaries_, fitTracks,
837  *beamSpot);
838  } break;
839  }
840  // build combined SV information and filter
841  SVBuilder svBuilder(pv, jetDir, withPVError, minTrackWeight);
842  std::remove_copy_if(boost::make_transform_iterator(
843  fittedSVs.begin(), svBuilder),
844  boost::make_transform_iterator(
845  fittedSVs.end(), svBuilder),
846  std::back_inserter(SVs),
847  SVFilter(vertexFilter, pv, jetDir));
848 
849  }else{
850  if( useSVClustering || useFatJets ) {
851  size_t jetIdx = ( iterJets - trackIPTagInfos->begin() );
852 
853  for(size_t iExtSv = 0; iExtSv < clusteredSVs.at(jetIdx).size(); iExtSv++){
854  const VTX & extVertex = (*extSecVertex)[ clusteredSVs.at(jetIdx).at(iExtSv) ];
855  if( extVertex.p4().M() < 0.3 )
856  continue;
857  extAssoCollection.push_back( extVertex );
858  }
859  }
860  else {
861  for(size_t iExtSv = 0; iExtSv < extSecVertex->size(); iExtSv++){
862  const VTX & extVertex = (*extSecVertex)[iExtSv];
863  if( Geom::deltaR2( ( position(extVertex) - pv.position() ), jetDir ) > extSVDeltaRToJet*extSVDeltaRToJet || extVertex.p4().M() < 0.3 )
864  continue;
865  extAssoCollection.push_back( extVertex );
866  }
867  }
868  // build combined SV information and filter
869  SVBuilder svBuilder(pv, jetDir, withPVError, minTrackWeight);
870  std::remove_copy_if(boost::make_transform_iterator( extAssoCollection.begin(), svBuilder),
871  boost::make_transform_iterator(extAssoCollection.end(), svBuilder),
872  std::back_inserter(SVs),
873  SVFilter(vertexFilter, pv, jetDir));
874  }
875  // clean up now unneeded collections
876  gtPred.reset();
877  ghostTrack.reset();
878  gtStates.clear();
879  fitTracks.clear();
880  fittedSVs.clear();
881  extAssoCollection.clear();
882 
883  // sort SVs by importance
884 
885  std::vector<unsigned int> vtxIndices = vertexSorting(SVs);
886 
887  std::vector<typename TemplatedSecondaryVertexTagInfo<IPTI,VTX>::VertexData> svData;
888 
889  svData.resize(vtxIndices.size());
890  for(unsigned int idx = 0; idx < vtxIndices.size(); idx++) {
891  const SecondaryVertex &sv = SVs[vtxIndices[idx]];
892 
893  svData[idx].vertex = sv;
894  svData[idx].dist2d = sv.dist2d();
895  svData[idx].dist3d = sv.dist3d();
896  svData[idx].direction = flightDirection(pv,sv);
897  // mark tracks successfully used in vertex fit
898  markUsedTracks(trackData,trackRefs,sv,idx);
899  }
900 
901  // fill result into tag infos
902 
903  tagInfos->push_back(
905  trackData, svData, SVs.size(),
907  iterJets - trackIPTagInfos->begin())));
908  }
909 
910  event.put(tagInfos);
911 }
912 
913 //Need specialized template because reco::Vertex iterators are TrackBase and it is a mess to make general
914 template <>
916 {
917  for(Vertex::trackRef_iterator iter = sv.tracks_begin(); iter != sv.tracks_end(); ++iter) {
918  if (sv.trackWeight(*iter) < minTrackWeight)
919  continue;
920 
921  typename input_container::const_iterator pos =
922  std::find(trackRefs.begin(), trackRefs.end(),
923  iter->castTo<input_item>());
924 
925  if (pos == trackRefs.end() ) {
926  if(!useExternalSV)
927  throw cms::Exception("TrackNotFound")
928  << "Could not find track from secondary "
929  "vertex in original tracks."
930  << std::endl;
931  } else {
932  unsigned int index = pos - trackRefs.begin();
933  trackData[index].second.svStatus =
935  ((unsigned int)btag::TrackData::trackAssociatedToVertex + idx);
936  }
937  }
938 }
939 template <>
941 {
942  for(typename input_container::const_iterator iter = sv.daughterPtrVector().begin(); iter != sv.daughterPtrVector().end(); ++iter)
943  {
944  typename input_container::const_iterator pos =
945  std::find(trackRefs.begin(), trackRefs.end(), *iter);
946 
947  if (pos != trackRefs.end() )
948  {
949  unsigned int index = pos - trackRefs.begin();
950  trackData[index].second.svStatus =
952  ((unsigned int)btag::TrackData::trackAssociatedToVertex + idx);
953  }
954  }
955 }
956 
957 
958 template <>
961 {
962  if(sv.originalTracks().size()>0 && sv.originalTracks()[0].trackBaseRef().isNonnull())
963  return SecondaryVertex(pv, sv, direction, withPVError);
964  else
965  {
966  edm::LogError("UnexpectedInputs") << "Building from Candidates, should not happen!";
967  return SecondaryVertex(pv, sv, direction, withPVError);
968  }
969 }
970 
971 template <>
974 {
975  if(sv.originalTracks().size()>0 && sv.originalTracks()[0].trackBaseRef().isNonnull())
976  {
977  edm::LogError("UnexpectedInputs") << "Building from Tracks, should not happen!";
978  VertexCompositePtrCandidate vtxCompPtrCand;
979 
980  vtxCompPtrCand.setCovariance(sv.vertexState().error().matrix_new());
981  vtxCompPtrCand.setChi2AndNdof(sv.totalChiSquared(), sv.degreesOfFreedom());
982  vtxCompPtrCand.setVertex(Candidate::Point(sv.position().x(),sv.position().y(),sv.position().z()));
983 
984  return SecondaryVertex(pv, vtxCompPtrCand, direction, withPVError);
985  }
986  else
987  {
988  VertexCompositePtrCandidate vtxCompPtrCand;
989 
990  vtxCompPtrCand.setCovariance(sv.vertexState().error().matrix_new());
991  vtxCompPtrCand.setChi2AndNdof(sv.totalChiSquared(), sv.degreesOfFreedom());
992  vtxCompPtrCand.setVertex(Candidate::Point(sv.position().x(),sv.position().y(),sv.position().z()));
993 
995  for(std::vector<reco::TransientTrack>::const_iterator tt = sv.originalTracks().begin(); tt != sv.originalTracks().end(); ++tt)
996  {
997  if (sv.trackWeight(*tt) < minTrackWeight)
998  continue;
999 
1000  const CandidatePtrTransientTrack* cptt = dynamic_cast<const CandidatePtrTransientTrack*>(tt->basicTransientTrack());
1001  if ( cptt==0 )
1002  edm::LogError("DynamicCastingFailed") << "Casting of TransientTrack to CandidatePtrTransientTrack failed!";
1003  else
1004  {
1005  p4 += cptt->candidate()->p4();
1006  vtxCompPtrCand.addDaughter(cptt->candidate());
1007  }
1008  }
1009  vtxCompPtrCand.setP4(p4);
1010 
1011  return SecondaryVertex(pv, vtxCompPtrCand, direction, withPVError);
1012  }
1013 }
1014 
1015 // ------------ method that matches reclustered and original jets based on minimum dR ------------
1016 template<class IPTI,class VTX>
1017 template<class CONTAINER>
1019  const std::vector<fastjet::PseudoJet>& reclusteredJets,
1020  std::vector<int>& matchedIndices,
1021  const std::string& jetType)
1022 {
1023  std::string type = ( jetType!="" ? jetType + " " : jetType );
1024 
1025  std::vector<bool> matchedLocks(reclusteredJets.size(),false);
1026 
1027  for(size_t j=0; j<jets->size(); ++j)
1028  {
1029  double matchedDR2 = 1e9;
1030  int matchedIdx = -1;
1031 
1032  for(size_t rj=0; rj<reclusteredJets.size(); ++rj)
1033  {
1034  if( matchedLocks.at(rj) ) continue; // skip jets that have already been matched
1035 
1036  double tempDR2 = Geom::deltaR2( toJet(jets->at(j))->rapidity(), toJet(jets->at(j))->phi(), reclusteredJets.at(rj).rapidity(), reclusteredJets.at(rj).phi_std() );
1037  if( tempDR2 < matchedDR2 )
1038  {
1039  matchedDR2 = tempDR2;
1040  matchedIdx = rj;
1041  }
1042  }
1043 
1044  if( matchedIdx>=0 )
1045  {
1046  if ( matchedDR2 > rParam*rParam )
1047  {
1048  edm::LogError("JetMatchingFailed") << "Matched reclustered jet " << matchedIdx << " and original " << type << "jet " << j <<" are separated by dR=" << sqrt(matchedDR2) << " which is greater than the jet size R=" << rParam << ".\n"
1049  << "This is not expected so please check that the jet algorithm and jet size match those used for the original " << type << "jet collection.";
1050  }
1051  else
1052  matchedLocks.at(matchedIdx) = true;
1053  }
1054  else
1055  edm::LogError("JetMatchingFailed") << "Matching reclustered to original " << type << "jets failed. Please check that the jet algorithm and jet size match those used for the original " << type << "jet collection.";
1056 
1057  matchedIndices.push_back(matchedIdx);
1058  }
1059 }
1060 
1061 // ------------ method that matches groomed and original jets based on minimum dR ------------
1062 template<class IPTI,class VTX>
1064  const edm::Handle<edm::View<reco::Jet> >& groomedJets,
1065  std::vector<int>& matchedIndices)
1066 {
1067  std::vector<bool> jetLocks(jets->size(),false);
1068  std::vector<int> jetIndices;
1069 
1070  for(size_t gj=0; gj<groomedJets->size(); ++gj)
1071  {
1072  double matchedDR2 = 1e9;
1073  int matchedIdx = -1;
1074 
1075  if( groomedJets->at(gj).pt()>0. ) // skip pathological cases of groomed jets with Pt=0
1076  {
1077  for(size_t j=0; j<jets->size(); ++j)
1078  {
1079  if( jetLocks.at(j) ) continue; // skip jets that have already been matched
1080 
1081  double tempDR2 = Geom::deltaR2( jets->at(j).rapidity(), jets->at(j).phi(), groomedJets->at(gj).rapidity(), groomedJets->at(gj).phi() );
1082  if( tempDR2 < matchedDR2 )
1083  {
1084  matchedDR2 = tempDR2;
1085  matchedIdx = j;
1086  }
1087  }
1088  }
1089 
1090  if( matchedIdx>=0 )
1091  {
1092  if ( matchedDR2 > rParam*rParam )
1093  {
1094  edm::LogWarning("MatchedJetsFarApart") << "Matched groomed jet " << gj << " and original jet " << matchedIdx <<" are separated by dR=" << sqrt(matchedDR2) << " which is greater than the jet size R=" << rParam << ".\n"
1095  << "This is not expected so the matching of these two jets has been discarded. Please check that the two jet collections belong to each other.";
1096  matchedIdx = -1;
1097  }
1098  else
1099  jetLocks.at(matchedIdx) = true;
1100  }
1101  jetIndices.push_back(matchedIdx);
1102  }
1103 
1104  for(size_t j=0; j<jets->size(); ++j)
1105  {
1106  std::vector<int>::iterator matchedIndex = std::find( jetIndices.begin(), jetIndices.end(), j );
1107 
1108  matchedIndices.push_back( matchedIndex != jetIndices.end() ? std::distance(jetIndices.begin(),matchedIndex) : -1 );
1109  }
1110 }
1111 
1112 // ------------ method that matches subjets and original fat jets ------------
1113 template<class IPTI,class VTX>
1114 void TemplatedSecondaryVertexProducer<IPTI,VTX>::matchSubjets(const std::vector<int>& groomedIndices,
1115  const edm::Handle<edm::View<reco::Jet> >& groomedJets,
1116  const edm::Handle<std::vector<IPTI> >& subjets,
1117  std::vector<std::vector<int> >& matchedIndices)
1118 {
1119  for(size_t g=0; g<groomedIndices.size(); ++g)
1120  {
1121  std::vector<int> subjetIndices;
1122 
1123  if( groomedIndices.at(g)>=0 )
1124  {
1125  for(size_t s=0; s<groomedJets->at(groomedIndices.at(g)).numberOfDaughters(); ++s)
1126  {
1127  const edm::Ptr<reco::Candidate> & subjet = groomedJets->at(groomedIndices.at(g)).daughterPtr(s);
1128 
1129  for(size_t sj=0; sj<subjets->size(); ++sj)
1130  {
1131  const edm::RefToBase<reco::Jet> &subjetRef = subjets->at(sj).jet();
1132  if( subjet == edm::Ptr<reco::Candidate>( subjetRef.id(), subjetRef.get(), subjetRef.key() ) )
1133  {
1134  subjetIndices.push_back(sj);
1135  break;
1136  }
1137  }
1138  }
1139 
1140  if( subjetIndices.size() == 0 )
1141  edm::LogError("SubjetMatchingFailed") << "Matching subjets to original fat jets failed. Please check that the groomed fat jet and subjet collections belong to each other.";
1142 
1143  matchedIndices.push_back(subjetIndices);
1144  }
1145  else
1146  matchedIndices.push_back(subjetIndices);
1147  }
1148 }
1149 
1150 // ------------ method that matches subjets and original fat jets ------------
1151 template<class IPTI,class VTX>
1153  const edm::Handle<std::vector<IPTI> >& subjets,
1154  std::vector<std::vector<int> >& matchedIndices)
1155 {
1156  for(size_t fj=0; fj<fatJets->size(); ++fj)
1157  {
1158  std::vector<int> subjetIndices;
1159  size_t nSubjetCollections = 0;
1160  size_t nSubjets = 0;
1161 
1162  const pat::Jet * fatJet = dynamic_cast<const pat::Jet *>( fatJets->ptrAt(fj).get() );
1163 
1164  if( !fatJet )
1165  {
1166  if( fj==0 ) edm::LogError("WrongJetType") << "Wrong jet type for input fat jets. Please check that the input fat jets are of the pat::Jet type.";
1167 
1168  matchedIndices.push_back(subjetIndices);
1169  continue;
1170  }
1171  else
1172  {
1173  nSubjetCollections = fatJet->subjetCollectionNames().size();
1174 
1175  if( nSubjetCollections>0 )
1176  {
1177  for(size_t coll=0; coll<nSubjetCollections; ++coll)
1178  {
1179  const pat::JetPtrCollection & fatJetSubjets = fatJet->subjets(coll);
1180 
1181  for(size_t fjsj=0; fjsj<fatJetSubjets.size(); ++fjsj)
1182  {
1183  ++nSubjets;
1184 
1185  for(size_t sj=0; sj<subjets->size(); ++sj)
1186  {
1187  const pat::Jet * subJet = dynamic_cast<const pat::Jet *>( subjets->at(sj).jet().get() );
1188 
1189  if( !subJet )
1190  {
1191  if( fj==0 && coll==0 && fjsj==0 && sj==0 ) edm::LogError("WrongJetType") << "Wrong jet type for input subjets. Please check that the input subjets are of the pat::Jet type.";
1192 
1193  break;
1194  }
1195  else
1196  {
1197  if( subJet->originalObjectRef() == fatJetSubjets.at(fjsj)->originalObjectRef() )
1198  {
1199  subjetIndices.push_back(sj);
1200  break;
1201  }
1202  }
1203  }
1204  }
1205  }
1206 
1207  if( subjetIndices.size() == 0 && nSubjets > 0)
1208  edm::LogError("SubjetMatchingFailed") << "Matching subjets to fat jets failed. Please check that the fat jet and subjet collections belong to each other.";
1209 
1210  matchedIndices.push_back(subjetIndices);
1211  }
1212  else
1213  matchedIndices.push_back(subjetIndices);
1214  }
1215  }
1216 }
1217 
1218 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
1219 template<class IPTI,class VTX>
1221 
1223  desc.add<double>("extSVDeltaRToJet",0.3);
1224  desc.add<edm::InputTag>("beamSpotTag",edm::InputTag("offlineBeamSpot"));
1225  {
1227  vertexReco.add<double>("primcut",1.8);
1228  vertexReco.add<double>("seccut",6.0);
1229  vertexReco.add<std::string>("finder","avr");
1230  vertexReco.addOptionalNode( edm::ParameterDescription<double>("minweight",0.5, true) and
1231  edm::ParameterDescription<double>("weightthreshold",0.001, true) and
1232  edm::ParameterDescription<bool>("smoothing",false, true), true );
1233  vertexReco.addOptionalNode( edm::ParameterDescription<double>("maxFitChi2",10.0, true) and
1234  edm::ParameterDescription<double>("mergeThreshold",3.0, true) and
1235  edm::ParameterDescription<std::string>("fitType","RefitGhostTrackWithVertices", true), true );
1236  desc.add<edm::ParameterSetDescription>("vertexReco",vertexReco);
1237  }
1238  {
1240  vertexSelection.add<std::string>("sortCriterium","dist3dError");
1241  desc.add<edm::ParameterSetDescription>("vertexSelection",vertexSelection);
1242  }
1243  desc.add<std::string>("constraint","BeamSpot");
1244  desc.add<edm::InputTag>("trackIPTagInfos",edm::InputTag("impactParameterTagInfos"));
1245  {
1247  vertexCuts.add<double>("distSig3dMax",99999.9);
1248  vertexCuts.add<double>("fracPV",0.65);
1249  vertexCuts.add<double>("distVal2dMax",2.5);
1250  vertexCuts.add<bool>("useTrackWeights",true);
1251  vertexCuts.add<double>("maxDeltaRToJetAxis",0.4);
1252  {
1254  v0Filter.add<double>("k0sMassWindow",0.05);
1255  vertexCuts.add<edm::ParameterSetDescription>("v0Filter",v0Filter);
1256  }
1257  vertexCuts.add<double>("distSig2dMin",3.0);
1258  vertexCuts.add<unsigned int>("multiplicityMin",2);
1259  vertexCuts.add<double>("distVal2dMin",0.01);
1260  vertexCuts.add<double>("distSig2dMax",99999.9);
1261  vertexCuts.add<double>("distVal3dMax",99999.9);
1262  vertexCuts.add<double>("minimumTrackWeight",0.5);
1263  vertexCuts.add<double>("distVal3dMin",-99999.9);
1264  vertexCuts.add<double>("massMax",6.5);
1265  vertexCuts.add<double>("distSig3dMin",-99999.9);
1266  desc.add<edm::ParameterSetDescription>("vertexCuts",vertexCuts);
1267  }
1268  desc.add<bool>("useExternalSV",false);
1269  desc.add<double>("minimumTrackWeight",0.5);
1270  desc.add<bool>("usePVError",true);
1271  {
1273  trackSelection.add<double>("b_pT",0.3684);
1274  trackSelection.add<double>("max_pT",500);
1275  trackSelection.add<bool>("useVariableJTA",false);
1276  trackSelection.add<double>("maxDecayLen",99999.9);
1277  trackSelection.add<double>("sip3dValMin",-99999.9);
1278  trackSelection.add<double>("max_pT_dRcut",0.1);
1279  trackSelection.add<double>("a_pT",0.005263);
1280  trackSelection.add<unsigned int>("totalHitsMin",8);
1281  trackSelection.add<double>("jetDeltaRMax",0.3);
1282  trackSelection.add<double>("a_dR",-0.001053);
1283  trackSelection.add<double>("maxDistToAxis",0.2);
1284  trackSelection.add<double>("ptMin",1.0);
1285  trackSelection.add<std::string>("qualityClass","any");
1286  trackSelection.add<unsigned int>("pixelHitsMin",2);
1287  trackSelection.add<double>("sip2dValMax",99999.9);
1288  trackSelection.add<double>("max_pT_trackPTcut",3);
1289  trackSelection.add<double>("sip2dValMin",-99999.9);
1290  trackSelection.add<double>("normChi2Max",99999.9);
1291  trackSelection.add<double>("sip3dValMax",99999.9);
1292  trackSelection.add<double>("sip3dSigMin",-99999.9);
1293  trackSelection.add<double>("min_pT",120);
1294  trackSelection.add<double>("min_pT_dRcut",0.5);
1295  trackSelection.add<double>("sip2dSigMax",99999.9);
1296  trackSelection.add<double>("sip3dSigMax",99999.9);
1297  trackSelection.add<double>("sip2dSigMin",-99999.9);
1298  trackSelection.add<double>("b_dR",0.6263);
1299  desc.add<edm::ParameterSetDescription>("trackSelection",trackSelection);
1300  }
1301  desc.add<std::string>("trackSort","sip3dSig");
1302  desc.add<edm::InputTag>("extSVCollection",edm::InputTag("secondaryVertices"));
1303  desc.addOptionalNode( edm::ParameterDescription<bool>("useSVClustering",false, true) and
1304  edm::ParameterDescription<std::string>("jetAlgorithm", true) and
1305  edm::ParameterDescription<double>("rParam", true), true );
1306  desc.addOptional<bool>("useSVMomentum",false);
1307  desc.addOptional<double>("ghostRescaling",1e-18);
1308  desc.addOptional<double>("relPtTolerance",1e-03);
1309  desc.addOptional<edm::InputTag>("fatJets");
1310  desc.addOptional<edm::InputTag>("groomedFatJets");
1311  descriptions.addDefault(desc);
1312 }
1313 
1314 //define this as a plug-in
1317 
1320 
type
Definition: HCALResponse.h:21
math::Error< dimension >::type CovarianceMatrix
Definition: BeamSpot.h:31
reco::Vertex::Point convertPos(const GlobalPoint &p)
value_type const * get() const
Definition: RefToBase.h:234
T getParameter(std::string const &) const
edm::EDGetTokenT< edm::View< reco::Jet > > token_fatJets
boost::shared_ptr< fastjet::JetDefinition > JetDefPtr
int i
Definition: DBlmapReader.cc:9
reco::btag::SortCriteria getCriterium(const std::string &name)
Definition: TrackSorting.cc:11
TemplatedSecondaryVertex< reco::Vertex > SecondaryVertex
ParameterDescriptionBase * addOptional(U const &iLabel, T const &value)
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:186
trackRef_iterator tracks_end() const
last iterator over tracks
Definition: Vertex.cc:44
TemplatedSecondaryVertexProducer(const edm::ParameterSet &params)
virtual void produce(edm::Event &event, const edm::EventSetup &es) override
virtual const Point & vertex() const
vertex position (overwritten by PF...)
boost::shared_ptr< fastjet::ClusterSequence > ClusterSequencePtr
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
edm::EDGetTokenT< reco::BeamSpot > token_BeamSpot
double y() const
y coordinate
Definition: Vertex.h:103
Base class for all types of Jets.
Definition: Jet.h:20
float totalChiSquared() const
reco::Vertex::Error convertError(const GlobalError &ge)
Definition: ConvertError.h:8
T y() const
Definition: PV3DBase.h:63
bool exists(std::string const &parameterName) const
checks if a parameter exists
void setWeight(double weight)
SVFilter(const VertexFilter &filter, const Vertex &pv, const GlobalVector &direction)
double covariance(int i, int j) const
(i, j)-th element of error matrix, i, j = 0, ... 2
Definition: Vertex.h:116
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
const reco::Track * toTrack(const reco::TrackBaseRef &t)
Definition: IPTagInfo.h:24
const Point & position() const
position
Definition: Vertex.h:99
ProductID id() const
Definition: RefToBase.h:242
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e g
Definition: Activities.doc:4
TemplatedSecondaryVertexProducer< TrackIPTagInfo, reco::Vertex > SecondaryVertexProducer
const AlgebraicSymMatrix33 & matrix_new() const
static GhostTrackVertexFinder::FitType getGhostTrackFitType(const std::string &name)
void matchReclusteredJets(const edm::Handle< CONTAINER > &jets, const std::vector< fastjet::PseudoJet > &matchedJets, std::vector< int > &matchedIndices, const std::string &jetType="")
edm::EDGetTokenT< std::vector< IPTI > > token_trackIPTagInfo
IPTI::input_container::value_type input_item
T mag() const
Definition: PV3DBase.h:67
void addDefault(ParameterSetDescription const &psetDescription)
GlobalVector flightDirection(const reco::Vertex &pv, const reco::Vertex &sv)
std::vector< reco::TransientTrack > const & originalTracks() const
float degreesOfFreedom() const
size_t key() const
Definition: RefToBase.h:250
T sqrt(T t)
Definition: SSEVec.h:18
double p4[4]
Definition: TauolaWrapper.h:92
GlobalPoint position() const
vector< PseudoJet > jets
std::vector< edm::Ptr< pat::Jet > > JetPtrCollection
Definition: Jet.h:75
T z() const
Definition: PV3DBase.h:64
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
int j
Definition: DBlmapReader.cc:9
double z() const
y coordinate
Definition: Vertex.h:105
ParameterDescriptionNode * addOptionalNode(ParameterDescriptionNode const &node, bool writeToCfi)
VertexSorting< SecondaryVertex > vertexSorting
std::vector< std::string > const & subjetCollectionNames() const
Subjet collection names.
Definition: Jet.h:511
static ConstraintType getConstraintType(const std::string &name)
const edm::Ptr< reco::Candidate > & originalObjectRef() const
reference to original object. Returns a null reference if not available
Definition: PATObject.h:500
ParameterDescriptionBase * add(U const &iLabel, T const &value)
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
bool isValid() const
Definition: HandleBase.h:75
float trackWeight(const reco::TransientTrack &track) const
virtual void setVertex(const Point &vertex)
set vertex
void matchGroomedJets(const edm::Handle< edm::View< reco::Jet > > &jets, const edm::Handle< edm::View< reco::Jet > > &matchedJets, std::vector< int > &matchedIndices)
void matchSubjets(const std::vector< int > &groomedIndices, const edm::Handle< edm::View< reco::Jet > > &groomedJets, const edm::Handle< std::vector< IPTI > > &subjets, std::vector< std::vector< int > > &matchedIndices)
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
void markUsedTracks(TrackDataVector &trackData, const input_container &trackRefs, const SecondaryVertex &sv, size_t idx)
edm::EDGetTokenT< edm::View< VTX > > token_extSVCollection
Vector3DBase unit() const
Definition: Vector3DBase.h:57
SVBuilder(const reco::Vertex &pv, const GlobalVector &direction, bool withPVError, double minTrackWeight)
double x() const
x coordinate
Definition: Vertex.h:101
virtual Vector momentum() const final
spatial momentum vector
JetCorrectorParametersCollection coll
Definition: classes.h:10
TemplatedSecondaryVertex< VTX > SecondaryVertex
edm::EDGetTokenT< edm::View< reco::Jet > > token_groomedFatJets
bool linearize(const GhostTrackPrediction &pred, bool initial=false, double lambda=0.)
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
const T & get() const
Definition: EventSetup.h:56
virtual void setP4(const LorentzVector &p4) final
set 4-momentum
Analysis-level calorimeter jet class.
Definition: Jet.h:78
SecondaryVertex operator()(const TransientVertex &sv) const
Error error() const
return SMatrix
Definition: Vertex.h:122
TemplatedSecondaryVertexProducer< CandIPTagInfo, reco::VertexCompositePtrCandidate > CandSecondaryVertexProducer
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:37
T1 deltaR2(T1 eta1, T2 phi1, T3 eta2, T4 phi2)
Definition: deltaR.h:36
std::vector< reco::btag::IndexedTrackData > TrackDataVector
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:81
static int position[264][3]
Definition: ReadPGInfo.cc:509
std::vector< TemplatedSecondaryVertexTagInfo< IPTI, VTX > > Product
void setCovariance(const CovarianceMatrix &m)
set covariance matrix
std::vector< TrackBaseRef >::const_iterator trackRef_iterator
The iteratator for the vector&lt;TrackRef&gt;
Definition: Vertex.h:37
void addDaughter(const CandidatePtr &)
add a daughter via a reference
math::XYZPoint Point
point in the space
Definition: Candidate.h:41
GlobalError error() const
Definition: VertexState.h:55
dbl *** dir
Definition: mlp_gen.cc:35
volatile std::atomic< bool > shutdown_flag false
void setChi2AndNdof(double chi2, double ndof)
set chi2 and ndof
trackRef_iterator tracks_begin() const
first iterator over tracks
Definition: Vertex.cc:39
VertexState const & vertexState() const
T x() const
Definition: PV3DBase.h:62
pat::JetPtrCollection const & subjets(unsigned int index=0) const
Access to subjet list.
const reco::Jet * toJet(const reco::Jet &j)
std::pair< unsigned int, TrackData > IndexedTrackData
Global3DVector GlobalVector
Definition: GlobalVector.h:10
tuple trackSelector
Tracks selection.
Definition: valSkim_cff.py:4