CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
VertexingHelper.cc
Go to the documentation of this file.
2 #include <algorithm>
3 
4 #include <iostream>
5 
10 
12  if (!iConfig.empty()) {
13  enabled_ = true;
14  if (iConfig.existsAs<edm::InputTag>("vertexAssociations") == iConfig.existsAs<edm::InputTag>("vertices")) {
15  throw cms::Exception("Configuration") << "VertexingHelper: you must configure either 'vertices' (to produce "
16  "associations) or 'vertexAssociations' (to read them from disk), "
17  << "you can't specify both, nor you can specify none!\n";
18  }
19 
20  if (iConfig.existsAs<edm::InputTag>("vertexAssociations")) {
21  playback_ = true;
23  iConfig.getParameter<edm::InputTag>("vertexAssociations"));
24  }
25  if (iConfig.existsAs<edm::InputTag>("vertices")) { // vertex have been specified, so run on the fly
26  playback_ = false;
27  verticesToken_ = iC.consumes<reco::VertexCollection>(iConfig.getParameter<edm::InputTag>("vertices"));
28  // ------ MODE ------------------
29  useTracks_ = iConfig.getParameter<bool>("useTracks");
30  // ------ CUTS (fully optional) ------------------
31  }
32  assoSelector_ = reco::modules::make<pat::VertexAssociationSelector>(iConfig);
33  } else {
34  enabled_ = false;
35  }
36  if (!playback_) {
37  ttToken_ = iC.esConsumes(edm::ESInputTag("", "TransientTrackBuilder"));
38  }
39 }
40 
42  if (playback_) {
43  iEvent.getByToken(vertexAssociationsToken_, vertexAssoMap_);
44  } else {
45  iEvent.getByToken(verticesToken_, vertexHandle_);
46  }
47 }
48 
50  newEvent(iEvent);
51  if (!playback_)
52  ttBuilder_ = iSetup.getHandle(ttToken_);
53 }
54 
56  if (playback_)
57  throw cms::Exception("Configuration")
58  << "VertexingHelper: if this module was configured to read associations from the event,"
59  << " you must use 'operator()' passing a candidate ref, and not 'associate()' directly!\n";
60 
61  reco::VertexCollection::const_iterator vtx, end;
62  size_t ivtx;
65  if (useTracks_) {
66  if (!ttBuilder_.isValid())
67  throw cms::Exception("Configuration")
68  << "VertexingHelper: If you use 'useTracks', you must call newEvent(iEvent,iSetup)!\n";
69  tk = getTrack_(c);
70  if (tk.isNull())
71  return pat::VertexAssociation();
72  tt = ttBuilder_->build(*tk);
73  }
74  for (vtx = vertexHandle_->begin(), end = vertexHandle_->end(), ivtx = 0; vtx != end; ++vtx, ++ivtx) {
75  pat::VertexAssociation association(reco::VertexRef(vertexHandle_, ivtx), tk);
76  if (useTracks_ == false) {
77  association.setDistances(c.vertex(), vtx->position(), vtx->error());
78  } else {
79  GlobalPoint vtxGP(vtx->x(), vtx->y(), vtx->z()); // need to convert XYZPoint to GlobalPoint
81  GlobalPoint trackPos = tscp.theState().position();
82  AlgebraicSymMatrix33 trackErr = tscp.theState().cartesianError().matrix().Sub<AlgebraicSymMatrix33>(0, 0);
83  association.setDistances(trackPos, vtx->position(), trackErr + vtx->error());
84  }
85  if (assoSelector_(association))
86  return association;
87  }
88  return pat::VertexAssociation();
89 }
90 
92  const reco::RecoCandidate *rc = dynamic_cast<const reco::RecoCandidate *>(&c);
93  if (rc != nullptr) {
94  return rc->bestTrackRef();
95  }
96  const reco::PFCandidate *pfc = dynamic_cast<const reco::PFCandidate *>(&c);
97  if (pfc != nullptr) {
98  return reco::TrackBaseRef(pfc->trackRef());
99  }
100 
101  return reco::TrackBaseRef();
102 }
void setDistances(const AlgebraicVector3 &dist, const AlgebraicSymMatrix33 &err)
Set dz and dr given the distance and the 3x3 total covariance matrix of the distance.
Definition: Vertexing.cc:5
bool empty() const
Definition: ParameterSet.h:201
const edm::EventSetup & c
edm::ESGetToken< TransientTrackBuilder, TransientTrackRecord > ttToken_
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:171
reco::TrackBaseRef getTrack_(const reco::Candidate &c) const
Get out the track from the Candidate / RecoCandidate / PFCandidate.
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
reco::TrackRef trackRef() const
Definition: PFCandidate.cc:430
bool useTracks_
use tracks inside candidates
int iEvent
Definition: GenABIO.cc:224
std::tuple< layerClusterToCaloParticle, caloParticleToLayerCluster > association
edm::RefToBase< reco::Track > TrackBaseRef
persistent reference to a Track, using views
Definition: TrackFwd.h:35
virtual TrackBaseRef bestTrackRef() const
best track RefToBase
pat::VertexAssociation associate(const reco::Candidate &) const
edm::EDGetTokenT< reco::VertexCollection > verticesToken_
edm::EDGetTokenT< edm::ValueMap< pat::VertexAssociation > > vertexAssociationsToken_
virtual const Point & vertex() const =0
vertex position
bool playback_
true if it&#39;s just reading the associations from the event
void newEvent(const edm::Event &event)
To be called for each new event, reads in the vertex collection.
TrajectoryStateClosestToPoint trajectoryStateClosestToPoint(const GlobalPoint &point) const
bool isNull() const
Checks for null.
Definition: RefToBase.h:295
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
bool enabled_
true if it has non null configuration
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:41
string end
Definition: dataset.py:937
ROOT::Math::SMatrix< double, 3, 3, ROOT::Math::MatRepSym< double, 3 > > AlgebraicSymMatrix33
Analysis-level structure for vertex-related information.
Definition: Vertexing.h:25
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:151
pat::VertexAssociationSelector assoSelector_
selector of associations