CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
pat::helper::VertexingHelper Class Reference

Produces and/or checks pat::VertexAssociation's. More...

#include "PhysicsTools/PatAlgos/interface/VertexingHelper.h"

Public Member Functions

bool enabled () const
 returns true if this was given a non dummy configuration More...
 
void newEvent (const edm::Event &event)
 To be called for each new event, reads in the vertex collection. More...
 
void newEvent (const edm::Event &event, const edm::EventSetup &setup)
 
template<typename AnyCandRef >
pat::VertexAssociation operator() (const AnyCandRef &) const
 
 VertexingHelper ()
 
 VertexingHelper (const edm::ParameterSet &iConfig, edm::ConsumesCollector &&iC)
 

Private Member Functions

pat::VertexAssociation associate (const reco::Candidate &) const
 
reco::TrackBaseRef getTrack_ (const reco::Candidate &c) const
 Get out the track from the Candidate / RecoCandidate / PFCandidate. More...
 

Private Attributes

pat::VertexAssociationSelector assoSelector_
 selector of associations More...
 
bool enabled_
 true if it has non null configuration More...
 
bool playback_
 true if it's just reading the associations from the event More...
 
edm::ESHandle< TransientTrackBuilderttBuilder_
 
bool useTracks_
 use tracks inside candidates More...
 
edm::EDGetTokenT< edm::ValueMap< pat::VertexAssociation > > vertexAssociationsToken_
 
edm::Handle< edm::ValueMap< pat::VertexAssociation > > vertexAssoMap_
 
edm::Handle< reco::VertexCollectionvertexHandle_
 
edm::EDGetTokenT< reco::VertexCollectionverticesToken_
 

Detailed Description

Produces and/or checks pat::VertexAssociation's.

The VertexingHelper produces pat::VertexAssociation, or reads them from the event, and can use them to select if a candidate is good or not.

Author
Giovanni Petrucciani
Version
Id
VertexingHelper.h,v 1.3 2008/06/06 14:13:40 gpetrucc Exp

Definition at line 50 of file VertexingHelper.h.

Constructor & Destructor Documentation

pat::helper::VertexingHelper::VertexingHelper ( )
inline

Definition at line 52 of file VertexingHelper.h.

52 : enabled_(false) {}
bool enabled_
true if it has non null configuration
pat::helper::VertexingHelper::VertexingHelper ( const edm::ParameterSet iConfig,
edm::ConsumesCollector &&  iC 
)

Definition at line 11 of file VertexingHelper.cc.

References assoSelector_, edm::ParameterSet::empty(), enabled_, Exception, edm::ParameterSet::existsAs(), edm::ParameterSet::getParameter(), playback_, useTracks_, vertexAssociationsToken_, and verticesToken_.

11  {
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;
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 }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
bool empty() const
Definition: ParameterSet.h:190
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:160
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
bool useTracks_
use tracks inside candidates
edm::EDGetTokenT< reco::VertexCollection > verticesToken_
edm::EDGetTokenT< edm::ValueMap< pat::VertexAssociation > > vertexAssociationsToken_
bool playback_
true if it&#39;s just reading the associations from the event
bool enabled_
true if it has non null configuration
pat::VertexAssociationSelector assoSelector_
selector of associations

Member Function Documentation

pat::VertexAssociation pat::helper::VertexingHelper::associate ( const reco::Candidate c) const
private

Try to associated this candidate to a vertex. If no association is found passing all cuts, return a null association

Definition at line 52 of file VertexingHelper.cc.

References TrackValidation_cff::association, assoSelector_, TransientTrackBuilder::build(), end, Exception, getTrack_(), edm::RefToBase< T >::isNull(), edm::ESHandleBase::isValid(), playback_, pat::VertexAssociation::setDistances(), reco::TransientTrack::trajectoryStateClosestToPoint(), groupFilesInBlocks::tt, ttBuilder_, useTracks_, reco::Candidate::vertex(), vertexHandle_, and badGlobalMuonTaggersAOD_cff::vtx.

52  {
53  if (playback_)
54  throw cms::Exception("Configuration")
55  << "VertexingHelper: if this module was configured to read associations from the event,"
56  << " you must use 'operator()' passing a candidate ref, and not 'associate()' directly!\n";
57 
58  reco::VertexCollection::const_iterator vtx, end;
59  size_t ivtx;
62  if (useTracks_) {
63  if (!ttBuilder_.isValid())
64  throw cms::Exception("Configuration")
65  << "VertexingHelper: If you use 'useTracks', you must call newEvent(iEvent,iSetup)!\n";
66  tk = getTrack_(c);
67  if (tk.isNull())
68  return pat::VertexAssociation();
69  tt = ttBuilder_->build(*tk);
70  }
71  for (vtx = vertexHandle_->begin(), end = vertexHandle_->end(), ivtx = 0; vtx != end; ++vtx, ++ivtx) {
73  if (useTracks_ == false) {
74  association.setDistances(c.vertex(), vtx->position(), vtx->error());
75  } else {
76  GlobalPoint vtxGP(vtx->x(), vtx->y(), vtx->z()); // need to convert XYZPoint to GlobalPoint
78  GlobalPoint trackPos = tscp.theState().position();
79  AlgebraicSymMatrix33 trackErr = tscp.theState().cartesianError().matrix().Sub<AlgebraicSymMatrix33>(0, 0);
80  association.setDistances(trackPos, vtx->position(), trackErr + vtx->error());
81  }
83  return association;
84  }
85  return pat::VertexAssociation();
86 }
reco::TrackBaseRef getTrack_(const reco::Candidate &c) const
Get out the track from the Candidate / RecoCandidate / PFCandidate.
reco::TransientTrack build(const reco::Track *p) const
edm::ESHandle< TransientTrackBuilder > ttBuilder_
bool useTracks_
use tracks inside candidates
#define end
Definition: vmac.h:39
bool playback_
true if it&#39;s just reading the associations from the event
edm::Handle< reco::VertexCollection > vertexHandle_
TrajectoryStateClosestToPoint trajectoryStateClosestToPoint(const GlobalPoint &point) const
bool isNull() const
Checks for null.
Definition: RefToBase.h:295
ROOT::Math::SMatrix< double, 3, 3, ROOT::Math::MatRepSym< double, 3 > > AlgebraicSymMatrix33
Analysis-level structure for vertex-related information.
Definition: Vertexing.h:25
virtual const Point & vertex() const =0
vertex position
bool isValid() const
Definition: ESHandle.h:44
pat::VertexAssociationSelector assoSelector_
selector of associations
bool pat::helper::VertexingHelper::enabled ( ) const
inline

returns true if this was given a non dummy configuration

Definition at line 56 of file VertexingHelper.h.

References singleTopDQM_cfi::setup.

Referenced by pat::PATGenericParticleProducer::produce().

56 { return enabled_; }
bool enabled_
true if it has non null configuration
reco::TrackBaseRef pat::helper::VertexingHelper::getTrack_ ( const reco::Candidate c) const
private

Get out the track from the Candidate / RecoCandidate / PFCandidate.

Definition at line 88 of file VertexingHelper.cc.

References reco::RecoCandidate::bestTrackRef(), HltBtagPostValidation_cff::c, and reco::PFCandidate::trackRef().

Referenced by associate().

88  {
89  const reco::RecoCandidate *rc = dynamic_cast<const reco::RecoCandidate *>(&c);
90  if (rc != nullptr) {
91  return rc->bestTrackRef();
92  }
93  const reco::PFCandidate *pfc = dynamic_cast<const reco::PFCandidate *>(&c);
94  if (pfc != nullptr) {
95  return reco::TrackBaseRef(pfc->trackRef());
96  }
97 
98  return reco::TrackBaseRef();
99 }
reco::TrackRef trackRef() const
Definition: PFCandidate.cc:408
edm::RefToBase< reco::Track > TrackBaseRef
persistent reference to a Track, using views
Definition: TrackFwd.h:35
virtual TrackBaseRef bestTrackRef() const
best track RefToBase
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:40
void pat::helper::VertexingHelper::newEvent ( const edm::Event event)

To be called for each new event, reads in the vertex collection.

Definition at line 38 of file VertexingHelper.cc.

References edm::Event::getByToken(), playback_, vertexAssociationsToken_, vertexAssoMap_, vertexHandle_, and verticesToken_.

Referenced by newEvent(), pat::PATVertexAssociationProducer::produce(), and pat::PATGenericParticleProducer::produce().

38  {
39  if (playback_) {
41  } else {
42  iEvent.getByToken(verticesToken_, vertexHandle_);
43  }
44 }
edm::Handle< edm::ValueMap< pat::VertexAssociation > > vertexAssoMap_
int iEvent
Definition: GenABIO.cc:224
edm::EDGetTokenT< reco::VertexCollection > verticesToken_
edm::EDGetTokenT< edm::ValueMap< pat::VertexAssociation > > vertexAssociationsToken_
bool playback_
true if it&#39;s just reading the associations from the event
edm::Handle< reco::VertexCollection > vertexHandle_
void pat::helper::VertexingHelper::newEvent ( const edm::Event event,
const edm::EventSetup setup 
)

To be called for each new event, reads in the vertex collection and the tracking info You need this if 'useTrack' is true

Definition at line 46 of file VertexingHelper.cc.

References edm::EventSetup::get(), newEvent(), playback_, and ttBuilder_.

46  {
48  if (!playback_)
49  iSetup.get<TransientTrackRecord>().get("TransientTrackBuilder", ttBuilder_);
50 }
edm::ESHandle< TransientTrackBuilder > ttBuilder_
int iEvent
Definition: GenABIO.cc:224
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.
template<typename AnyCandRef >
pat::VertexAssociation pat::helper::VertexingHelper::operator() ( const AnyCandRef &  cand) const

Return true if this candidate is associated to a valid vertex AnyCandRef should be a Ref<>, RefToBase<> or Ptr to a Candidate object

Definition at line 101 of file VertexingHelper.h.

References trackingPlots::assoc.

101  {
102  if (playback_) {
103  const pat::VertexAssociation &assoc = (*vertexAssoMap_)[cand];
104  return assoSelector_(assoc) ? assoc : pat::VertexAssociation();
105  } else {
106  return associate(*cand);
107  }
108  }
pat::VertexAssociation associate(const reco::Candidate &) const
bool playback_
true if it&#39;s just reading the associations from the event
Analysis-level structure for vertex-related information.
Definition: Vertexing.h:25
pat::VertexAssociationSelector assoSelector_
selector of associations

Member Data Documentation

pat::VertexAssociationSelector pat::helper::VertexingHelper::assoSelector_
private

selector of associations

Definition at line 78 of file VertexingHelper.h.

Referenced by associate(), and VertexingHelper().

bool pat::helper::VertexingHelper::enabled_
private

true if it has non null configuration

Definition at line 72 of file VertexingHelper.h.

Referenced by VertexingHelper().

bool pat::helper::VertexingHelper::playback_
private

true if it's just reading the associations from the event

Definition at line 75 of file VertexingHelper.h.

Referenced by associate(), newEvent(), and VertexingHelper().

edm::ESHandle<TransientTrackBuilder> pat::helper::VertexingHelper::ttBuilder_
private

Definition at line 85 of file VertexingHelper.h.

Referenced by associate(), and newEvent().

bool pat::helper::VertexingHelper::useTracks_
private

use tracks inside candidates

Definition at line 84 of file VertexingHelper.h.

Referenced by associate(), and VertexingHelper().

edm::EDGetTokenT<edm::ValueMap<pat::VertexAssociation> > pat::helper::VertexingHelper::vertexAssociationsToken_
private

Definition at line 88 of file VertexingHelper.h.

Referenced by newEvent(), and VertexingHelper().

edm::Handle<edm::ValueMap<pat::VertexAssociation> > pat::helper::VertexingHelper::vertexAssoMap_
private

Definition at line 89 of file VertexingHelper.h.

Referenced by newEvent().

edm::Handle<reco::VertexCollection> pat::helper::VertexingHelper::vertexHandle_
private

Definition at line 82 of file VertexingHelper.h.

Referenced by associate(), and newEvent().

edm::EDGetTokenT<reco::VertexCollection> pat::helper::VertexingHelper::verticesToken_
private

Definition at line 81 of file VertexingHelper.h.

Referenced by newEvent(), and VertexingHelper().