CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes
TPtoRecoTrack Class Reference

#include <TPtoRecoTrack.h>

Public Member Functions

bool allmatched () const
 
bool allmatchedA () const
 
bool allmatchedB () const
 
math::XYZPoint BeamSpot () const
 
float GetSharedA () const
 
float GetSharedB () const
 
bool hasPCA () const
 
bool hasRV () const
 
bool hasRVA () const
 
bool hasRVB () const
 
bool hasTPMother () const
 
bool matched () const
 
bool matchedA () const
 
bool matchedAnotB () const
 
bool matchedB () const
 
bool matchedBnotA () const
 
int numTPMothers () const
 
int numTPSourceTracks () const
 
double rA_d0 () const
 
double rA_d02 () const
 
double rA_dsz () const
 
double rA_dxy () const
 
double rA_dz () const
 
double rA_dz2 () const
 
double rB_d0 () const
 
double rB_d02 () const
 
double rB_dsz () const
 
double rB_dxy () const
 
double rB_dz () const
 
double rB_dz2 () const
 
reco::Track RTA () const
 
reco::Track RTB () const
 
reco::Vertex RVA () const
 
reco::Vertex RVB () const
 
double s_d0 () const
 
double s_dsz () const
 
double s_dxy () const
 
double s_dz () const
 
double s_eta () const
 
double s_lambda () const
 
GlobalVector s_p () const
 
GlobalPoint s_pca () const
 
double s_phi () const
 
double s_qoverp () const
 
double s_theta () const
 
GlobalPoint s_v () const
 
void SetBeamSpot (const math::XYZPoint &bs)
 
void SetRecoTrack_AlgoA (reco::TrackBaseRef track)
 
void SetRecoTrack_AlgoB (reco::TrackBaseRef track)
 
void SetRecoVertex_AlgoA (reco::VertexRef vertex)
 
void SetRecoVertex_AlgoB (reco::VertexRef vertex)
 
void SetShared_AlgoA (const float &mA)
 
void SetShared_AlgoB (const float &mB)
 
void SetTrackingParticle (TrackingParticleRef tp)
 
void SetTrackingParticleMomentumPCA (const GlobalVector &p)
 
void SetTrackingParticlePCA (const GlobalPoint &v)
 
TrackingParticle TP () const
 
TrackingParticle TPMother () const
 
TrackingParticle TPMother (unsigned short i) const
 
 TPtoRecoTrack ()
 
 ~TPtoRecoTrack ()
 

Protected Attributes

math::XYZPoint beamSpot_
 
reco::TrackBaseRef recoTrack_AlgoA_
 
reco::TrackBaseRef recoTrack_AlgoB_
 
reco::VertexRef recoVertex_AlgoA_
 
reco::VertexRef recoVertex_AlgoB_
 
float sharedA_
 
float sharedB_
 
GlobalVector simMomPCA_
 
GlobalPoint simPCA_
 
TrackingParticleRef trackingParticle_
 

Detailed Description

Definition at line 20 of file TPtoRecoTrack.h.

Constructor & Destructor Documentation

◆ TPtoRecoTrack()

TPtoRecoTrack::TPtoRecoTrack ( )

Definition at line 4 of file TPtoRecoTrack.cc.

4  {
5  SetBeamSpot(math::XYZPoint(-9999.0, -9999.0, -9999.0));
6  SetTrackingParticlePCA(GlobalPoint(-9999.0, -9999.0, -9999.0));
7  SetTrackingParticleMomentumPCA(GlobalVector(-9999.0, -9999.0, -9999.0));
8 }

References SetBeamSpot(), SetTrackingParticleMomentumPCA(), and SetTrackingParticlePCA().

◆ ~TPtoRecoTrack()

TPtoRecoTrack::~TPtoRecoTrack ( )

Definition at line 10 of file TPtoRecoTrack.cc.

10 {}

Member Function Documentation

◆ allmatched()

bool TPtoRecoTrack::allmatched ( ) const
inline

Definition at line 61 of file TPtoRecoTrack.h.

61 { return matched() && hasRV(); }

References hasRV(), and matched().

◆ allmatchedA()

bool TPtoRecoTrack::allmatchedA ( ) const
inline

Definition at line 59 of file TPtoRecoTrack.h.

59 { return matchedA() && hasRVA(); }

References hasRVA(), and matchedA().

◆ allmatchedB()

bool TPtoRecoTrack::allmatchedB ( ) const
inline

Definition at line 60 of file TPtoRecoTrack.h.

60 { return matchedB() && hasRVA(); }

References hasRVA(), and matchedB().

◆ BeamSpot()

math::XYZPoint TPtoRecoTrack::BeamSpot ( ) const
inline

Definition at line 44 of file TPtoRecoTrack.h.

44 { return beamSpot_; }

References beamSpot_.

Referenced by rA_dsz(), rA_dxy(), rA_dz(), rB_dsz(), rB_dxy(), rB_dz(), and s_v().

◆ GetSharedA()

float TPtoRecoTrack::GetSharedA ( ) const
inline

Definition at line 62 of file TPtoRecoTrack.h.

62 { return sharedA_; }

References sharedA_.

◆ GetSharedB()

float TPtoRecoTrack::GetSharedB ( ) const
inline

Definition at line 63 of file TPtoRecoTrack.h.

63 { return sharedB_; }

References sharedB_.

◆ hasPCA()

bool TPtoRecoTrack::hasPCA ( ) const
inline

Definition at line 58 of file TPtoRecoTrack.h.

58 { return s_pca().mag() < 9999.0; }

References PV3DBase< T, PVType, FrameType >::mag(), and s_pca().

◆ hasRV()

bool TPtoRecoTrack::hasRV ( ) const
inline

Definition at line 57 of file TPtoRecoTrack.h.

57 { return hasRVA() && hasRVB(); }

References hasRVA(), and hasRVB().

Referenced by allmatched().

◆ hasRVA()

bool TPtoRecoTrack::hasRVA ( ) const
inline

Definition at line 51 of file TPtoRecoTrack.h.

51  {
52  return recoVertex_AlgoA_.isNonnull() && fabs(recoVertex_AlgoA_->position().Mag2()) > 0.0;
53  } // position is ROOT::MATH::Cartesian3D<double>

References edm::Ref< C, T, F >::isNonnull(), and recoVertex_AlgoA_.

Referenced by allmatchedA(), allmatchedB(), and hasRV().

◆ hasRVB()

bool TPtoRecoTrack::hasRVB ( ) const
inline

Definition at line 54 of file TPtoRecoTrack.h.

54  {
55  return recoVertex_AlgoB_.isNonnull() && fabs(recoVertex_AlgoB_->position().Mag2()) > 0.0;
56  } // position is ROOT::MATH::Cartesian3D<double>

References edm::Ref< C, T, F >::isNonnull(), and recoVertex_AlgoB_.

Referenced by hasRV().

◆ hasTPMother()

bool TPtoRecoTrack::hasTPMother ( ) const
inline

Definition at line 112 of file TPtoRecoTrack.h.

112 { return numTPMothers() > 0; }

References numTPMothers().

◆ matched()

bool TPtoRecoTrack::matched ( ) const
inline

Definition at line 46 of file TPtoRecoTrack.h.

46 { return matchedA() && matchedB(); }

References matchedA(), and matchedB().

Referenced by allmatched().

◆ matchedA()

bool TPtoRecoTrack::matchedA ( ) const
inline

◆ matchedAnotB()

bool TPtoRecoTrack::matchedAnotB ( ) const
inline

Definition at line 49 of file TPtoRecoTrack.h.

49 { return matchedA() && !matchedB(); }

References matchedA(), and matchedB().

◆ matchedB()

bool TPtoRecoTrack::matchedB ( ) const
inline

◆ matchedBnotA()

bool TPtoRecoTrack::matchedBnotA ( ) const
inline

Definition at line 50 of file TPtoRecoTrack.h.

50 { return matchedB() && !matchedA(); }

References matchedA(), and matchedB().

◆ numTPMothers()

int TPtoRecoTrack::numTPMothers ( ) const

Definition at line 41 of file TPtoRecoTrack.cc.

41  {
42  int count = 0;
43  for (TrackingParticleRefVector::iterator si = TP().parentVertex()->sourceTracks_begin();
44  si != TP().parentVertex()->sourceTracks_end();
45  ++si) {
46  for (TrackingParticleRefVector::iterator di = TP().parentVertex()->daughterTracks_begin();
47  di != TP().parentVertex()->daughterTracks_end();
48  ++di) {
49  if (si != di)
50  count++;
51  break;
52  }
53  if (count > 0)
54  break;
55  }
56  return count;
57 }

References submitPVResolutionJobs::count, TrackingParticle::parentVertex(), and TP().

Referenced by hasTPMother(), and TPMother().

◆ numTPSourceTracks()

int TPtoRecoTrack::numTPSourceTracks ( ) const
inline

Definition at line 110 of file TPtoRecoTrack.h.

110 { return TP().parentVertex()->nSourceTracks(); }

References TrackingParticle::parentVertex(), and TP().

◆ rA_d0()

double TPtoRecoTrack::rA_d0 ( ) const
inline

Definition at line 70 of file TPtoRecoTrack.h.

70 { return -1.0 * rA_dxy(); }

References rA_dxy().

◆ rA_d02()

double TPtoRecoTrack::rA_d02 ( ) const
inline

Definition at line 76 of file TPtoRecoTrack.h.

76 { return -1.0 * RTA().dxy(RVA().position()); }

References reco::TrackBase::dxy(), position, RTA(), and RVA().

◆ rA_dsz()

double TPtoRecoTrack::rA_dsz ( ) const
inline

Definition at line 68 of file TPtoRecoTrack.h.

68 { return RTA().dsz(BeamSpot()); }

References BeamSpot(), reco::TrackBase::dsz(), and RTA().

◆ rA_dxy()

double TPtoRecoTrack::rA_dxy ( ) const
inline

Definition at line 66 of file TPtoRecoTrack.h.

66 { return RTA().dxy(BeamSpot()); }

References BeamSpot(), reco::TrackBase::dxy(), and RTA().

Referenced by rA_d0().

◆ rA_dz()

double TPtoRecoTrack::rA_dz ( ) const
inline

Definition at line 72 of file TPtoRecoTrack.h.

72 { return RTA().dz(BeamSpot()); }

References BeamSpot(), reco::TrackBase::dz(), and RTA().

◆ rA_dz2()

double TPtoRecoTrack::rA_dz2 ( ) const
inline

Definition at line 77 of file TPtoRecoTrack.h.

77 { return RTA().dz(RVA().position()); }

References reco::TrackBase::dz(), position, RTA(), and RVA().

◆ rB_d0()

double TPtoRecoTrack::rB_d0 ( ) const
inline

Definition at line 71 of file TPtoRecoTrack.h.

71 { return -1.0 * rB_dxy(); }

References rB_dxy().

◆ rB_d02()

double TPtoRecoTrack::rB_d02 ( ) const
inline

Definition at line 78 of file TPtoRecoTrack.h.

78 { return -1.0 * RTB().dxy(RVB().position()); }

References reco::TrackBase::dxy(), position, RTB(), and RVB().

◆ rB_dsz()

double TPtoRecoTrack::rB_dsz ( ) const
inline

Definition at line 69 of file TPtoRecoTrack.h.

69 { return RTB().dsz(BeamSpot()); }

References BeamSpot(), reco::TrackBase::dsz(), and RTB().

◆ rB_dxy()

double TPtoRecoTrack::rB_dxy ( ) const
inline

Definition at line 67 of file TPtoRecoTrack.h.

67 { return RTB().dxy(BeamSpot()); }

References BeamSpot(), reco::TrackBase::dxy(), and RTB().

Referenced by rB_d0().

◆ rB_dz()

double TPtoRecoTrack::rB_dz ( ) const
inline

Definition at line 73 of file TPtoRecoTrack.h.

73 { return RTB().dz(BeamSpot()); }

References BeamSpot(), reco::TrackBase::dz(), and RTB().

◆ rB_dz2()

double TPtoRecoTrack::rB_dz2 ( ) const
inline

Definition at line 79 of file TPtoRecoTrack.h.

79 { return RTB().dz(RVB().position()); }

References reco::TrackBase::dz(), position, RTB(), and RVB().

◆ RTA()

reco::Track TPtoRecoTrack::RTA ( ) const
inline

Definition at line 39 of file TPtoRecoTrack.h.

References edm::RefToBase< T >::isNonnull(), and recoTrack_AlgoA_.

Referenced by rA_d02(), rA_dsz(), rA_dxy(), rA_dz(), and rA_dz2().

◆ RTB()

reco::Track TPtoRecoTrack::RTB ( ) const
inline

Definition at line 40 of file TPtoRecoTrack.h.

References edm::RefToBase< T >::isNonnull(), and recoTrack_AlgoB_.

Referenced by rB_d02(), rB_dsz(), rB_dxy(), rB_dz(), and rB_dz2().

◆ RVA()

reco::Vertex TPtoRecoTrack::RVA ( ) const
inline

◆ RVB()

reco::Vertex TPtoRecoTrack::RVB ( ) const
inline

◆ s_d0()

double TPtoRecoTrack::s_d0 ( ) const
inline

Definition at line 102 of file TPtoRecoTrack.h.

102 { return -1.0 * s_dxy(); }

References s_dxy().

◆ s_dsz()

double TPtoRecoTrack::s_dsz ( ) const
inline

◆ s_dxy()

double TPtoRecoTrack::s_dxy ( ) const
inline

Definition at line 97 of file TPtoRecoTrack.h.

97 { return (-s_v().x() * s_p().y() + s_v().y() * s_p().x()) / s_p().perp(); }

References PV3DBase< T, PVType, FrameType >::perp(), s_p(), s_v(), x, and y.

Referenced by s_d0().

◆ s_dz()

double TPtoRecoTrack::s_dz ( ) const
inline

Definition at line 103 of file TPtoRecoTrack.h.

103  {
104  return s_v().z() - (s_v().x() * s_p().x() + s_v().y() * s_p().y()) / s_p().perp() * s_p().z() / s_p().perp();
105  }

References PV3DBase< T, PVType, FrameType >::perp(), s_p(), s_v(), PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

◆ s_eta()

double TPtoRecoTrack::s_eta ( ) const
inline

Definition at line 95 of file TPtoRecoTrack.h.

95 { return -1.0 * log(tan(0.5 * s_p().theta())); }

References dqm-mbProfile::log, s_p(), funct::tan(), and theta().

◆ s_lambda()

double TPtoRecoTrack::s_lambda ( ) const
inline

Definition at line 93 of file TPtoRecoTrack.h.

93 { return M_PI / 2 - s_p().theta(); }

References M_PI, s_p(), and PV3DBase< T, PVType, FrameType >::theta().

◆ s_p()

GlobalVector TPtoRecoTrack::s_p ( ) const
inline

Definition at line 85 of file TPtoRecoTrack.h.

85 { return simMomPCA_; }

References simMomPCA_.

Referenced by s_dsz(), s_dxy(), s_dz(), s_eta(), s_lambda(), s_phi(), s_qoverp(), and s_theta().

◆ s_pca()

GlobalPoint TPtoRecoTrack::s_pca ( ) const
inline

Definition at line 86 of file TPtoRecoTrack.h.

86 { return simPCA_; }

References simPCA_.

Referenced by hasPCA(), and s_v().

◆ s_phi()

double TPtoRecoTrack::s_phi ( ) const
inline

Definition at line 94 of file TPtoRecoTrack.h.

94 { return s_p().phi(); }

References PV3DBase< T, PVType, FrameType >::phi(), and s_p().

◆ s_qoverp()

double TPtoRecoTrack::s_qoverp ( ) const
inline

Definition at line 91 of file TPtoRecoTrack.h.

91 { return TP().charge() / s_p().mag(); }

References TrackingParticle::charge(), PV3DBase< T, PVType, FrameType >::mag(), s_p(), and TP().

◆ s_theta()

double TPtoRecoTrack::s_theta ( ) const
inline

Definition at line 92 of file TPtoRecoTrack.h.

92 { return s_p().theta(); }

References s_p(), and PV3DBase< T, PVType, FrameType >::theta().

◆ s_v()

GlobalPoint TPtoRecoTrack::s_v ( ) const
inline

Definition at line 87 of file TPtoRecoTrack.h.

87  {
88  return GlobalPoint(s_pca().x() - BeamSpot().x(), s_pca().y() - BeamSpot().y(), s_pca().z() - BeamSpot().z());
89  }

References BeamSpot(), s_pca(), x, y, and z.

Referenced by s_dsz(), s_dxy(), and s_dz().

◆ SetBeamSpot()

void TPtoRecoTrack::SetBeamSpot ( const math::XYZPoint bs)
inline

Definition at line 36 of file TPtoRecoTrack.h.

36 { beamSpot_ = bs; }

References beamSpot_, and cms::cuda::bs.

Referenced by TrackAlgoCompareUtil::produce(), and TPtoRecoTrack().

◆ SetRecoTrack_AlgoA()

void TPtoRecoTrack::SetRecoTrack_AlgoA ( reco::TrackBaseRef  track)
inline

Definition at line 27 of file TPtoRecoTrack.h.

References recoTrack_AlgoA_, and HLT_FULL_cff::track.

Referenced by TrackAlgoCompareUtil::produce().

◆ SetRecoTrack_AlgoB()

void TPtoRecoTrack::SetRecoTrack_AlgoB ( reco::TrackBaseRef  track)
inline

Definition at line 28 of file TPtoRecoTrack.h.

References recoTrack_AlgoB_, and HLT_FULL_cff::track.

Referenced by TrackAlgoCompareUtil::produce().

◆ SetRecoVertex_AlgoA()

void TPtoRecoTrack::SetRecoVertex_AlgoA ( reco::VertexRef  vertex)
inline

Definition at line 33 of file TPtoRecoTrack.h.

References recoVertex_AlgoA_, and bphysicsOniaDQM_cfi::vertex.

Referenced by TrackAlgoCompareUtil::produce().

◆ SetRecoVertex_AlgoB()

void TPtoRecoTrack::SetRecoVertex_AlgoB ( reco::VertexRef  vertex)
inline

Definition at line 34 of file TPtoRecoTrack.h.

References recoVertex_AlgoB_, and bphysicsOniaDQM_cfi::vertex.

Referenced by TrackAlgoCompareUtil::produce().

◆ SetShared_AlgoA()

void TPtoRecoTrack::SetShared_AlgoA ( const float &  mA)
inline

Definition at line 30 of file TPtoRecoTrack.h.

30 { sharedA_ = mA; }

References sharedA_.

Referenced by TrackAlgoCompareUtil::produce().

◆ SetShared_AlgoB()

void TPtoRecoTrack::SetShared_AlgoB ( const float &  mB)
inline

Definition at line 31 of file TPtoRecoTrack.h.

31 { sharedB_ = mB; }

References sharedB_.

Referenced by TrackAlgoCompareUtil::produce().

◆ SetTrackingParticle()

void TPtoRecoTrack::SetTrackingParticle ( TrackingParticleRef  tp)
inline

Definition at line 25 of file TPtoRecoTrack.h.

25 { trackingParticle_ = tp; }

References cmsswSequenceInfo::tp, and trackingParticle_.

Referenced by TrackAlgoCompareUtil::produce().

◆ SetTrackingParticleMomentumPCA()

void TPtoRecoTrack::SetTrackingParticleMomentumPCA ( const GlobalVector p)
inline

◆ SetTrackingParticlePCA()

void TPtoRecoTrack::SetTrackingParticlePCA ( const GlobalPoint v)
inline

Definition at line 83 of file TPtoRecoTrack.h.

83 { simPCA_ = v; }

References simPCA_, and findQualityFiles::v.

Referenced by TrackAlgoCompareUtil::SetTrackingParticleD0Dz(), and TPtoRecoTrack().

◆ TP()

TrackingParticle TPtoRecoTrack::TP ( ) const
inline

◆ TPMother() [1/2]

TrackingParticle TPtoRecoTrack::TPMother ( ) const
inline

Definition at line 109 of file TPtoRecoTrack.h.

109 { return numTPMothers() == 1 ? TPMother(0) : TrackingParticle(); }

References numTPMothers(), TPMother(), and ProducerES_cfi::TrackingParticle.

Referenced by TPMother().

◆ TPMother() [2/2]

TrackingParticle TPtoRecoTrack::TPMother ( unsigned short  i) const

Definition at line 12 of file TPtoRecoTrack.cc.

12  {
13  std::vector<TrackingParticle> result;
14 
15  if (TP().parentVertex().isNonnull()) {
16  if (TP().parentVertex()->nSourceTracks() > 0) {
17  for (TrackingParticleRefVector::iterator si = TP().parentVertex()->sourceTracks_begin();
18  si != TP().parentVertex()->sourceTracks_end();
19  ++si) {
20  for (TrackingParticleRefVector::iterator di = TP().parentVertex()->daughterTracks_begin();
21  di != TP().parentVertex()->daughterTracks_end();
22  ++di) {
23  if (si != di) {
24  result.push_back(**si);
25  break;
26  }
27  }
28  if (!result.empty())
29  break;
30  }
31  } else {
32  return TrackingParticle();
33  }
34  } else {
35  return TrackingParticle();
36  }
37 
38  return i < result.size() ? result[i] : TrackingParticle();
39 }

References mps_fire::i, TrackingParticle::parentVertex(), mps_fire::result, TP(), and ProducerES_cfi::TrackingParticle.

Member Data Documentation

◆ beamSpot_

math::XYZPoint TPtoRecoTrack::beamSpot_
protected

Definition at line 125 of file TPtoRecoTrack.h.

Referenced by BeamSpot(), and SetBeamSpot().

◆ recoTrack_AlgoA_

reco::TrackBaseRef TPtoRecoTrack::recoTrack_AlgoA_
protected

Definition at line 115 of file TPtoRecoTrack.h.

Referenced by matchedA(), RTA(), and SetRecoTrack_AlgoA().

◆ recoTrack_AlgoB_

reco::TrackBaseRef TPtoRecoTrack::recoTrack_AlgoB_
protected

Definition at line 118 of file TPtoRecoTrack.h.

Referenced by matchedB(), RTB(), and SetRecoTrack_AlgoB().

◆ recoVertex_AlgoA_

reco::VertexRef TPtoRecoTrack::recoVertex_AlgoA_
protected

Definition at line 116 of file TPtoRecoTrack.h.

Referenced by hasRVA(), RVA(), and SetRecoVertex_AlgoA().

◆ recoVertex_AlgoB_

reco::VertexRef TPtoRecoTrack::recoVertex_AlgoB_
protected

Definition at line 119 of file TPtoRecoTrack.h.

Referenced by hasRVB(), RVB(), and SetRecoVertex_AlgoB().

◆ sharedA_

float TPtoRecoTrack::sharedA_
protected

Definition at line 126 of file TPtoRecoTrack.h.

Referenced by GetSharedA(), and SetShared_AlgoA().

◆ sharedB_

float TPtoRecoTrack::sharedB_
protected

Definition at line 127 of file TPtoRecoTrack.h.

Referenced by GetSharedB(), and SetShared_AlgoB().

◆ simMomPCA_

GlobalVector TPtoRecoTrack::simMomPCA_
protected

Definition at line 123 of file TPtoRecoTrack.h.

Referenced by s_p(), and SetTrackingParticleMomentumPCA().

◆ simPCA_

GlobalPoint TPtoRecoTrack::simPCA_
protected

Definition at line 124 of file TPtoRecoTrack.h.

Referenced by s_pca(), and SetTrackingParticlePCA().

◆ trackingParticle_

TrackingParticleRef TPtoRecoTrack::trackingParticle_
protected

Definition at line 121 of file TPtoRecoTrack.h.

Referenced by matchedA(), matchedB(), SetTrackingParticle(), and TP().

TPtoRecoTrack::matchedB
bool matchedB() const
Definition: TPtoRecoTrack.h:48
TPtoRecoTrack::recoTrack_AlgoA_
reco::TrackBaseRef recoTrack_AlgoA_
Definition: TPtoRecoTrack.h:115
DDAxes::y
mps_fire.i
i
Definition: mps_fire.py:428
HLT_FULL_cff.track
track
Definition: HLT_FULL_cff.py:11713
TPtoRecoTrack::SetTrackingParticleMomentumPCA
void SetTrackingParticleMomentumPCA(const GlobalVector &p)
Definition: TPtoRecoTrack.h:82
TPtoRecoTrack::beamSpot_
math::XYZPoint beamSpot_
Definition: TPtoRecoTrack.h:125
PV3DBase::x
T x() const
Definition: PV3DBase.h:59
TPtoRecoTrack::hasRVB
bool hasRVB() const
Definition: TPtoRecoTrack.h:54
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
PV3DBase::theta
Geom::Theta< T > theta() const
Definition: PV3DBase.h:72
TPtoRecoTrack::matchedA
bool matchedA() const
Definition: TPtoRecoTrack.h:47
TPtoRecoTrack::rB_dxy
double rB_dxy() const
Definition: TPtoRecoTrack.h:67
ProducerES_cfi.TrackingParticle
TrackingParticle
Definition: ProducerES_cfi.py:66
reco::TrackBase::dsz
double dsz() const
dsz parameter (THIS IS NOT the SZ impact parameter to (0,0,0) if refPoint is far from (0,...
Definition: TrackBase.h:614
TrackingParticle::parentVertex
const TrackingVertexRef & parentVertex() const
Definition: TrackingParticle.h:90
TPtoRecoTrack::recoTrack_AlgoB_
reco::TrackBaseRef recoTrack_AlgoB_
Definition: TPtoRecoTrack.h:118
DDAxes::x
TPtoRecoTrack::hasRV
bool hasRV() const
Definition: TPtoRecoTrack.h:57
GlobalVector
Global3DVector GlobalVector
Definition: GlobalVector.h:10
findQualityFiles.v
v
Definition: findQualityFiles.py:179
TPtoRecoTrack::s_p
GlobalVector s_p() const
Definition: TPtoRecoTrack.h:85
TPtoRecoTrack::hasRVA
bool hasRVA() const
Definition: TPtoRecoTrack.h:51
TPtoRecoTrack::sharedA_
float sharedA_
Definition: TPtoRecoTrack.h:126
PV3DBase::z
T z() const
Definition: PV3DBase.h:61
TrackingParticle::charge
float charge() const
Electric charge. Note this is taken from the first SimTrack only.
Definition: TrackingParticle.h:98
TPtoRecoTrack::RVB
reco::Vertex RVB() const
Definition: TPtoRecoTrack.h:43
cms::cuda::bs
bs
Definition: HistoContainer.h:127
TPtoRecoTrack::RTA
reco::Track RTA() const
Definition: TPtoRecoTrack.h:39
TrackingParticle
Monte Carlo truth information used for tracking validation.
Definition: TrackingParticle.h:29
DDAxes::z
TPtoRecoTrack::simPCA_
GlobalPoint simPCA_
Definition: TPtoRecoTrack.h:124
reco::Track
Definition: Track.h:27
TPtoRecoTrack::TP
TrackingParticle TP() const
Definition: TPtoRecoTrack.h:41
submitPVResolutionJobs.count
count
Definition: submitPVResolutionJobs.py:352
theta
Geom::Theta< T > theta() const
Definition: Basic3DVectorLD.h:150
reco::TrackBase::dz
double dz() const
dz parameter (= dsz/cos(lambda)). This is the track z0 w.r.t (0,0,0) only if the refPoint is close to...
Definition: TrackBase.h:622
GlobalPoint
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
TPtoRecoTrack::SetBeamSpot
void SetBeamSpot(const math::XYZPoint &bs)
Definition: TPtoRecoTrack.h:36
cmsswSequenceInfo.tp
tp
Definition: cmsswSequenceInfo.py:17
TPtoRecoTrack::recoVertex_AlgoA_
reco::VertexRef recoVertex_AlgoA_
Definition: TPtoRecoTrack.h:116
TPtoRecoTrack::trackingParticle_
TrackingParticleRef trackingParticle_
Definition: TPtoRecoTrack.h:121
TPtoRecoTrack::numTPMothers
int numTPMothers() const
Definition: TPtoRecoTrack.cc:41
bphysicsOniaDQM_cfi.vertex
vertex
Definition: bphysicsOniaDQM_cfi.py:7
math::XYZPoint
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
TPtoRecoTrack::s_v
GlobalPoint s_v() const
Definition: TPtoRecoTrack.h:87
TPtoRecoTrack::rA_dxy
double rA_dxy() const
Definition: TPtoRecoTrack.h:66
edm::Ref::isNonnull
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:238
position
static int position[264][3]
Definition: ReadPGInfo.cc:289
PV3DBase::y
T y() const
Definition: PV3DBase.h:60
funct::tan
Tan< T >::type tan(const T &t)
Definition: Tan.h:22
TPtoRecoTrack::simMomPCA_
GlobalVector simMomPCA_
Definition: TPtoRecoTrack.h:123
M_PI
#define M_PI
Definition: BXVectorInputProducer.cc:49
TPtoRecoTrack::s_pca
GlobalPoint s_pca() const
Definition: TPtoRecoTrack.h:86
PV3DBase::mag
T mag() const
Definition: PV3DBase.h:64
HltBtagValidation_cff.Vertex
Vertex
Definition: HltBtagValidation_cff.py:32
TPtoRecoTrack::s_dxy
double s_dxy() const
Definition: TPtoRecoTrack.h:97
TPtoRecoTrack::BeamSpot
math::XYZPoint BeamSpot() const
Definition: TPtoRecoTrack.h:44
edm::RefToBase::isNonnull
bool isNonnull() const
Checks for non-null.
Definition: RefToBase.h:301
TPtoRecoTrack::SetTrackingParticlePCA
void SetTrackingParticlePCA(const GlobalPoint &v)
Definition: TPtoRecoTrack.h:83
edm::RefVectorIterator
Definition: EDProductfwd.h:33
TPtoRecoTrack::recoVertex_AlgoB_
reco::VertexRef recoVertex_AlgoB_
Definition: TPtoRecoTrack.h:119
TPtoRecoTrack::sharedB_
float sharedB_
Definition: TPtoRecoTrack.h:127
TPtoRecoTrack::matched
bool matched() const
Definition: TPtoRecoTrack.h:46
dqm-mbProfile.log
log
Definition: dqm-mbProfile.py:17
TPtoRecoTrack::RVA
reco::Vertex RVA() const
Definition: TPtoRecoTrack.h:42
mps_fire.result
result
Definition: mps_fire.py:311
TPtoRecoTrack::RTB
reco::Track RTB() const
Definition: TPtoRecoTrack.h:40
reco::TrackBase::dxy
double dxy() const
dxy parameter. (This is the transverse impact parameter w.r.t. to (0,0,0) ONLY if refPoint is close t...
Definition: TrackBase.h:608
PV3DBase::perp
T perp() const
Definition: PV3DBase.h:69
PV3DBase::phi
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
TPtoRecoTrack::TPMother
TrackingParticle TPMother() const
Definition: TPtoRecoTrack.h:109