ATLAS Offline Software
ImpactPoint3dEstimator.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 /*********************************************************************
6  ImpactPoint3dEstimator.cxx - Description in header file
7 *********************************************************************/
8 
14 
15 // #define IMPACTPOINT3DESTIMATOR_DEBUG
16 
17 //added for cuts in case of displaced vertex
20 
21 #include <cmath>
22 
23 namespace Trk
24 {
25 
26  ImpactPoint3dEstimator::ImpactPoint3dEstimator(const std::string& t, const std::string& n, const IInterface* p) :
27  base_class(t,n,p),
28  m_extrapolator(""),
29  m_maxiterations(20),
30  m_precision(1e-10)//DeltaPhi
31  {
32  declareProperty("Extrapolator",m_extrapolator);
33  declareProperty("MaxIterations",m_maxiterations);
34  declareProperty("Precision",m_precision);
35  }
36 
38 
40  {
41  if (!m_extrapolator.empty()) {
42  ATH_CHECK( m_extrapolator.retrieve() );
43  } else {
44  m_extrapolator.disable();
45  }
47 
48  ATH_MSG_DEBUG( "Initialize successful" );
49  return StatusCode::SUCCESS;
50  }
51 
53  {
54  ATH_MSG_DEBUG( "Finalize successful" );
55  return StatusCode::SUCCESS;
56  }
57 
58 
59  template<typename T>
60  std::unique_ptr<PlaneSurface>
62  const Amg::Vector3D* theVertex,
63  double& distance) const
64  {
65  const Amg::Vector3D momentumUnit = thePerigee->momentum().unit();
66  double pathLength = ( *theVertex - thePerigee->position() ).dot( momentumUnit )
67  / ( momentumUnit.dot( momentumUnit )) ;
68  //first vector at 3d impact point
69 
70 
71  Amg::Vector3D POCA = thePerigee->position() + pathLength * momentumUnit;// Position of closest approach
72  Amg::Vector3D DeltaR = *theVertex - POCA;
73  distance=DeltaR.mag();
74  DeltaR=DeltaR.unit();
75 
76 
77  //correct DeltaR from small deviations from orthogonality to DeltaR -- DeltaR.dot(momentumUnit) should equal 0 if the above is correct
78 
79  Amg::Vector3D DeltaRcorrected=DeltaR-(DeltaR.dot(momentumUnit))*momentumUnit;
80 
81  if ((DeltaR-DeltaRcorrected).mag()>1e-4)
82  {
83  ATH_MSG_WARNING( " DeltaR and MomentumDir are not orthogonal " );
84  ATH_MSG_DEBUG( std::setprecision(10) << " DeltaR-DeltaRcorrected: " << (DeltaR-DeltaRcorrected).mag() );
85  }
86 
87  Amg::Vector3D YDir=momentumUnit.cross(DeltaRcorrected);
88 
89  ATH_MSG_VERBOSE( "final minimal distance is: " << distance);
90  ATH_MSG_DEBUG( "POCA in 3D is: " << POCA );
91 
92  //store the plane...
93  ATH_MSG_VERBOSE( "plane to which to extrapolate X " << DeltaRcorrected << " Y " << YDir << " Z " << momentumUnit);
94 
95  Amg::Transform3D thePlane(DeltaRcorrected, YDir, momentumUnit, *theVertex);
96 
97 #ifdef IMPACTPOINT3DESTIMATOR_DEBUG
98  std::cout << "the translation is, directly from Transform3d: " << thePlane->getTranslation() << endmsg;
99 #endif
100 
101  return std::make_unique<PlaneSurface>(thePlane);
102 
103  }
104 
105  std::unique_ptr<PlaneSurface>
107  const Amg::Vector3D* theVertex,
108  double& distance) const
109  {
110  ATH_MSG_DEBUG("Neutral particle -- propagate like a straight line");
111  return Estimate3dIPNoCurvature(neutralPerigee, theVertex, distance);
112  }
113 
114  std::unique_ptr<PlaneSurface>
116  const Amg::Vector3D* theVertex,
117  double& distance) const
118  {
119  SG::ReadCondHandle<AtlasFieldCacheCondObj> readHandle{m_fieldCacheCondObjInputKey, Gaudi::Hive::currentContext()};
120  const AtlasFieldCacheCondObj* fieldCondObj{*readHandle};
121 
122  MagField::AtlasFieldCache fieldCache;
123  fieldCondObj->getInitializedCache (fieldCache);
124 
125  double magnFieldVect[3];
126  fieldCache.getField(trackPerigee->associatedSurface().center().data(),magnFieldVect);
127  if(magnFieldVect[2] == 0 ){
128  ATH_MSG_DEBUG("Magnetic field in the Z direction is 0 -- propagate like a straight line");
129  return Estimate3dIPNoCurvature(trackPerigee, theVertex, distance);
130  }
131 
132  const Trk::Perigee* thePerigee=dynamic_cast<const Trk::Perigee*>(trackPerigee);
133  if (thePerigee==nullptr)
134  {
136  " ImpactPoint3dEstimator didn't get a Perigee* as ParametersBase*: "
137  "cast not possible. Need to EXTRAPOLATE...");
138  Trk::PerigeeSurface perigeeSurface(*theVertex);
139  std::unique_ptr<const Trk::TrackParameters> tmp =
140  m_extrapolator->extrapolateDirectly(
141  Gaudi::Hive::currentContext(), *trackPerigee, perigeeSurface);
142  if (tmp && tmp->associatedSurface().type() == Trk::SurfaceType::Perigee) {
143  thePerigee = static_cast<const Trk::Perigee*>(tmp.release());
144  }
145  if (thePerigee == nullptr){
146  return nullptr;
147  }
148  }
149 
150  ATH_MSG_VERBOSE( " Now running ImpactPoint3dEstimator::Estimate3dIP" );
151  double phi0=thePerigee->parameters()[Trk::phi0];
152  double dCosPhi0=-std::sin(phi0);
153  double dSinPhi0=std::cos(phi0);
154  double theta=thePerigee->parameters()[Trk::theta];
155  double cotTheta=1./std::tan(thePerigee->parameters()[Trk::theta]);
156  double d0=thePerigee->parameters()[Trk::d0];
157 
158  //I need the radius (magnetic field...)
159  double Bz=magnFieldVect[2]*299.792;
160  double Rt=std::sin(theta)/(Bz*thePerigee->parameters()[Trk::qOverP]);
161 
162  double x0=thePerigee->associatedSurface().center().x()+(d0-Rt)*dCosPhi0;
163  double y0=thePerigee->associatedSurface().center().y()+(d0-Rt)*dSinPhi0;
164  double z0=thePerigee->associatedSurface().center().z()+thePerigee->parameters()[Trk::z0]+Rt*phi0*cotTheta;
165 
166  if (thePerigee!=trackPerigee) {
167  delete thePerigee;
168  thePerigee=nullptr;
169  }
170 
171  double xc=theVertex->x();
172  double yc=theVertex->y();
173  double zc=theVertex->z();
174 
175  double phiActual=phi0;
176  double dCosPhiActual=-std::sin(phiActual);
177  double dSinPhiActual=std::cos(phiActual);
178 
179  double secderivative=0.;
180  double derivative=0.;
181 
182  int ncycle=0;
183  bool isok=false;
184 
185  double deltaphi=0.;
186 
187 #ifdef IMPACTPOINT3DESTIMATOR_DEBUG
188  std::cout << std::setprecision(25) << "actual distance before cycle is: " << std::hypot(x0-xc+Rt*dCosPhiActual,
189  y0-yc+Rt*dSinPhiActual,
190  z0-zc-Rt*cotTheta*phiActual) << std::endl;
191 #endif
192 
193  do {
194 
195 #ifdef IMPACTPOINT3DESTIMATOR_DEBUG
196  ATH_MSG_VERBOSE( "Cycle number: " << ncycle << " old phi: " << phiActual );
197 #endif
198 
199 
200  derivative=(x0-xc)*(-Rt*dSinPhiActual)+(y0-yc)*Rt*dCosPhiActual+(z0-zc-Rt*phiActual*cotTheta)*(-Rt*cotTheta);
201  secderivative=Rt*(-(x0-xc)*dCosPhiActual-(y0-yc)*dSinPhiActual+Rt*cotTheta*cotTheta);
202 #ifdef IMPACTPOINT3DESTIMATOR_DEBUG
203  ATH_MSG_VERBOSE( "derivative is: " << derivative << " sec derivative is: " << secderivative );
204 #endif
205 
206  deltaphi=-derivative/secderivative;
207 
208 #ifdef IMPACTPOINT3DESTIMATOR_DEBUG
209  std::cout << std::setprecision(25) << "deltaphi: " << deltaphi << std::endl;
210 #endif
211 
212  phiActual+=deltaphi;
213  dCosPhiActual=-std::sin(phiActual);
214  dSinPhiActual=std::cos(phiActual);
215 
216 #ifdef IMPACTPOINT3DESTIMATOR_DEBUG
217  ATH_MSG_VERBOSE( "derivative is: " << derivative << " sec derivative is: " << secderivative );
218  std::cout << std::setprecision(25) << std::hypot(x0-xc+Rt*dCosPhiActual, y0-yc+Rt*dSinPhiActual,
219  z0-zc-Rt*cotTheta*phiActual) << std::endl;
220  ATH_MSG_VERBOSE( "actual distance is: " << std::hypot(x0-xc+Rt*dCosPhiActual,
221  y0-yc+Rt*dSinPhiActual,
222  z0-zc-Rt*cotTheta*phiActual));
223 #endif
224 
225  if (secderivative<0) throw error::ImpactPoint3dEstimatorProblem("Second derivative is negative");
226 
227  if (ncycle>m_maxiterations) throw error::ImpactPoint3dEstimatorProblem("Too many loops: could not find minimum distance to vertex");
228 
229  ncycle+=1;
230  if (ncycle>m_maxiterations||std::abs(deltaphi)<m_precision) {
231 #ifdef IMPACTPOINT3DESTIMATOR_DEBUG
232  ATH_MSG_VERBOSE( "found minimum at: " << phiActual );
233 #endif
234  isok=true;
235  }
236 
237  } while (!isok);
238 
239  //now you have to construct the plane with PlaneSurface
240  //first vector at 3d impact point
241  Amg::Vector3D MomentumDir(std::cos(phiActual)*std::sin(theta),std::sin(phiActual)*std::sin(theta),std::cos(theta));
242  Amg::Vector3D DeltaR(x0-xc+Rt*dCosPhiActual,y0-yc+Rt*dSinPhiActual,z0-zc-Rt*cotTheta*phiActual);
243  distance=DeltaR.mag();
244  if (distance==0.){
245  ATH_MSG_WARNING("DeltaR is zero in ImpactPoint3dEstimator::Estimate3dIP, returning nullptr");
246  return nullptr;
247  }
248  DeltaR=DeltaR.unit();
249 
250 
251  //correct DeltaR from small deviations from orthogonality to DeltaR
252 
253  Amg::Vector3D DeltaRcorrected=DeltaR-(DeltaR.dot(MomentumDir))*MomentumDir;
254 
255  if ((DeltaR-DeltaRcorrected).mag()>1e-4)
256  {
257  ATH_MSG_WARNING( " DeltaR and MomentumDir are not orthogonal " );
258  ATH_MSG_DEBUG( std::setprecision(10) << " DeltaR-DeltaRcorrected: " << (DeltaR-DeltaRcorrected).mag() );
259  }
260 
261  Amg::Vector3D YDir=MomentumDir.cross(DeltaRcorrected);
262 
263  //store the impact 3d point
264  Amg::Vector3D vertex(x0+Rt*dCosPhiActual,y0+Rt*dSinPhiActual,z0-Rt*cotTheta*phiActual);
265 
266  ATH_MSG_VERBOSE( "final minimal distance is: " << std::hypot(x0-xc+Rt*dCosPhiActual,
267  y0-yc+Rt*dSinPhiActual,
268  z0-zc-Rt*cotTheta*phiActual));
269 
270  ATH_MSG_DEBUG( "POCA in 3D is: " << vertex );
271 
272 
273  //store the plane...
274  ATH_MSG_VERBOSE( "plane to which to extrapolate X " << DeltaRcorrected << " Y " << YDir << " Z " << MomentumDir );
275 
276  Amg::Transform3D thePlane(DeltaRcorrected, YDir, MomentumDir, *theVertex);
277 
278 #ifdef IMPACTPOINT3DESTIMATOR_DEBUG
279  std::cout << "the translation is, directly from Transform3d: " << thePlane.getTranslation() << endmsg;
280 #endif
281  return std::make_unique<PlaneSurface>(thePlane);
282  }//end of estimate 3dIP method
283 
284  bool
286  {
287  if (vtxTrack.initialPerigee()) {
288  const AtaPlane* myPlane=IP3dAtaPlane(vtxTrack,vertex);
289  if (myPlane)
290  {
291  vtxTrack.setImpactPoint3dAtaPlane(myPlane);
292  return true;
293  }
294  } else { //for neutrals
296  if (myPlane) {
297  ATH_MSG_VERBOSE ("Adding plane: " << myPlane->associatedSurface() );
298  vtxTrack.setImpactPoint3dNeutralAtaPlane(myPlane);
299  return true;
300  }
301  }
302  return false;
303  }
304 
305 
306  const Trk::AtaPlane *
307  ImpactPoint3dEstimator::IP3dAtaPlane(VxTrackAtVertex & vtxTrack,const Amg::Vector3D & vertex) const
308  {
309  if (!vtxTrack.initialPerigee() && vtxTrack.initialNeutralPerigee())
310  ATH_MSG_WARNING( "Calling ImpactPoint3dEstimator::IP3dAtaPlane cannot return NeutralAtaPlane" );
311  std::unique_ptr<PlaneSurface> theSurfaceAtIP;
312  try
313  {
314  double distance = 0;
315  theSurfaceAtIP = Estimate3dIP(vtxTrack.initialPerigee(),&vertex,distance);
316  }
318  {
319  ATH_MSG_WARNING( " ImpactPoint3dEstimator failed to find minimum distance between track and vertex seed: " << err.p );
320  return nullptr;
321  }
322  if(!theSurfaceAtIP){
323  ATH_MSG_WARNING( " ImpactPoint3dEstimator failed to find minimum distance and returned 0 " );
324  return nullptr;
325  }
326 #ifdef ImpactPoint3dAtaPlaneFactory_DEBUG
327  ATH_MSG_VERBOSE( "Original perigee was: " << *(vtxTrack.initialPerigee()) );
328  ATH_MSG_VERBOSE( "The resulting surface is: " << *theSurfaceAtIP );
329 #endif
330  const auto* pTrackPar = m_extrapolator->extrapolate(
331  Gaudi::Hive::currentContext(),
332  *(vtxTrack.initialPerigee()),
333  *theSurfaceAtIP).release();
334  if (const Trk::AtaPlane* res = dynamic_cast<const Trk::AtaPlane *>(pTrackPar); res){
335  return res;
336  }
337  ATH_MSG_WARNING("TrackParameters ptr returned from extrapolate could not be cast to Trk::AtaPlane* in IP3dAtaPlane(..)");
338  return nullptr;
339  }
340 
341 
342  const Trk::NeutralAtaPlane *
344  {
345  std::unique_ptr<PlaneSurface> theSurfaceAtIP;
346 
347  try
348  {
349  double distance = 0;
350  theSurfaceAtIP = Estimate3dIP(initNeutPerigee,&vertex,distance);
351  }
353  {
354  ATH_MSG_WARNING( " ImpactPoint3dEstimator failed to find minimum distance between track and vertex seed: " << err.p );
355  return nullptr;
356  }
357  if(!theSurfaceAtIP){
358  ATH_MSG_WARNING( " ImpactPoint3dEstimator failed to find minimum distance and returned 0 " );
359  return nullptr;
360  }
361 #ifdef ImpactPoint3dAtaPlaneFactory_DEBUG
362  ATH_MSG_VERBOSE( "Original neutral perigee was: " << *initNeutPerigee );
363  ATH_MSG_VERBOSE( "The resulting surface is: " << *theSurfaceAtIP );
364 #endif
365 
366  const Trk::NeutralAtaPlane* res = nullptr;
367  std::unique_ptr<const Trk::NeutralParameters> tmp = m_extrapolator->extrapolate(*initNeutPerigee,*theSurfaceAtIP);
368  if(dynamic_cast<const Trk::NeutralAtaPlane*> (tmp.get())){
369  res = static_cast<const Trk::NeutralAtaPlane*> (tmp.release());
370  }
371  return res;
372  }
373 
374 
375 }
Trk::ImpactPoint3dEstimator::~ImpactPoint3dEstimator
virtual ~ImpactPoint3dEstimator()
Trk::VxTrackAtVertex::setImpactPoint3dAtaPlane
void setImpactPoint3dAtaPlane(const AtaPlane *myIP3dAtaPlane)
Set method for ImpactPoint3dAtaPlane.
Definition: VxTrackAtVertex.cxx:379
python.PerfMonSerializer.p
def p
Definition: PerfMonSerializer.py:743
TrackParameters.h
Trk::VxTrackAtVertex
The VxTrackAtVertex is a common class for all present TrkVertexFitters The VxTrackAtVertex is designe...
Definition: VxTrackAtVertex.h:77
SG::ReadCondHandle
Definition: ReadCondHandle.h:44
PerigeeSurface.h
AtlasFieldCacheCondObj
Definition: AtlasFieldCacheCondObj.h:19
Trk::PerigeeSurface
Definition: PerigeeSurface.h:43
Trk::ImpactPoint3dEstimator::ImpactPoint3dEstimator
ImpactPoint3dEstimator(const std::string &t, const std::string &n, const IInterface *p)
Default constructor due to Athena interface.
Definition: ImpactPoint3dEstimator.cxx:28
Trk::ParametersBase::associatedSurface
virtual const Surface & associatedSurface() const override=0
Access to the Surface associated to the Parameters.
Trk::ParametersT
Dummy class used to allow special convertors to be called for surfaces owned by a detector element.
Definition: EMErrorDetail.h:25
met::DeltaR
@ DeltaR
Definition: METRecoCommon.h:11
Trk::z0
@ z0
Definition: ParamDefs.h:70
IExtrapolator.h
Trk::ImpactPoint3dEstimator::m_precision
double m_precision
Definition: ImpactPoint3dEstimator.h:93
read_hist_ntuple.t
t
Definition: read_hist_ntuple.py:5
drawFromPickle.cos
cos
Definition: drawFromPickle.py:36
ATH_MSG_VERBOSE
#define ATH_MSG_VERBOSE(x)
Definition: AthMsgStreamMacros.h:28
Trk::Surface::center
const Amg::Vector3D & center() const
Returns the center position of the Surface.
ParamDefs.h
ImpactPoint3dEstimator.h
Trk::ImpactPoint3dEstimator::Estimate3dIPNoCurvature
std::unique_ptr< PlaneSurface > Estimate3dIPNoCurvature(const T *, const Amg::Vector3D *theVertex, double &distance) const
Definition: ImpactPoint3dEstimator.cxx:63
Trk::ParametersT::associatedSurface
virtual const S & associatedSurface() const override final
Access to the Surface method.
Trk::ImpactPoint3dEstimator::m_extrapolator
ToolHandle< Trk::IExtrapolator > m_extrapolator
Definition: ImpactPoint3dEstimator.h:88
dqt_zlumi_pandas.err
err
Definition: dqt_zlumi_pandas.py:193
Trk::NeutralParameters
ParametersBase< 5, Neutral > NeutralParameters
Definition: NeutralParameters.h:25
beamspotman.n
n
Definition: beamspotman.py:731
Trk::theta
@ theta
Definition: ParamDefs.h:72
endmsg
#define endmsg
Definition: AnalysisConfig_Ntuple.cxx:63
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
Trk::VxTrackAtVertex::initialNeutralPerigee
const NeutralParameters * initialNeutralPerigee(void) const
Access to the initial perigee parameters of trajectory.
Definition: VxTrackAtVertex.cxx:362
error::ImpactPoint3dEstimatorProblem
Definition: IImpactPoint3dEstimator.h:72
Amg::Transform3D
Eigen::Affine3d Transform3D
Definition: GeoPrimitives.h:46
res
std::pair< std::vector< unsigned int >, bool > res
Definition: JetGroupProductTest.cxx:14
AtlasFieldCache.h
Trk::ImpactPoint3dEstimator::m_maxiterations
int m_maxiterations
Definition: ImpactPoint3dEstimator.h:92
VxTrackAtVertex.h
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
drawFromPickle.tan
tan
Definition: drawFromPickle.py:36
Trk::ParametersBase
Definition: ParametersBase.h:55
DeMoUpdate.tmp
string tmp
Definition: DeMoUpdate.py:1167
Trk::VxTrackAtVertex::setImpactPoint3dNeutralAtaPlane
void setImpactPoint3dNeutralAtaPlane(const NeutralAtaPlane *myIP3dNeutralAtaPlane)
Set method for ImpactPoint3dNeutralAtaPlane.
Definition: VxTrackAtVertex.cxx:387
dot.dot
def dot(G, fn, nodesToHighlight=[])
Definition: dot.py:5
python.compareTCTs.isok
isok
Definition: compareTCTs.py:350
Trk
Ensure that the ATLAS eigen extensions are properly loaded.
Definition: FakeTrackBuilder.h:9
Trk::SurfaceType::Perigee
@ Perigee
Trk::d0
@ d0
Definition: ParamDefs.h:69
SG::CondHandleKey::initialize
StatusCode initialize(bool used=true)
Amg::Vector3D
Eigen::Matrix< double, 3, 1 > Vector3D
Definition: GeoPrimitives.h:47
Trk::vertex
@ vertex
Definition: MeasurementType.h:21
DiTauMassTools::MaxHistStrategyV2::e
e
Definition: PhysicsAnalysis/TauID/DiTauMassTools/DiTauMassTools/HelperFunctions.h:26
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
Trk::ImpactPoint3dEstimator::addIP3dAtaPlane
virtual bool addIP3dAtaPlane(VxTrackAtVertex &, const Amg::Vector3D &vertex) const override
Actual estimate method, changing the state of Trk::VxTrackAtVertex.
Definition: ImpactPoint3dEstimator.cxx:287
MagField::AtlasFieldCache
Local cache for magnetic field (based on MagFieldServices/AtlasFieldSvcTLS.h)
Definition: AtlasFieldCache.h:43
Trk::qOverP
@ qOverP
perigee
Definition: ParamDefs.h:73
TRT::Track::cotTheta
@ cotTheta
Definition: InnerDetector/InDetCalibEvent/TRT_CalibData/TRT_CalibData/TrackInfo.h:65
MagField::AtlasFieldCache::getField
void getField(const double *ATH_RESTRICT xyz, double *ATH_RESTRICT bxyz, double *ATH_RESTRICT deriv=nullptr)
get B field value at given position xyz[3] is in mm, bxyz[3] is in kT if deriv[9] is given,...
Definition: AtlasFieldCache.cxx:42
Trk::ImpactPoint3dEstimator::finalize
virtual StatusCode finalize() override
Definition: ImpactPoint3dEstimator.cxx:54
declareProperty
#define declareProperty(n, p, h)
Definition: BaseFakeBkgTool.cxx:15
drawFromPickle.sin
sin
Definition: drawFromPickle.py:36
Trk::ImpactPoint3dEstimator::initialize
virtual StatusCode initialize() override
Definition: ImpactPoint3dEstimator.cxx:41
Amg::distance
float distance(const Amg::Vector3D &p1, const Amg::Vector3D &p2)
calculates the distance between two point in 3D space
Definition: GeoPrimitivesHelpers.h:54
Trk::ImpactPoint3dEstimator::IP3dAtaPlane
virtual const Trk::AtaPlane * IP3dAtaPlane(VxTrackAtVertex &vtxTrack, const Amg::Vector3D &vertex) const override
This method creates the ImpactPoint3dAtaPlane as the parameters of the track at the point of closest ...
Definition: ImpactPoint3dEstimator.cxx:309
Trk::ImpactPoint3dEstimator::m_fieldCacheCondObjInputKey
SG::ReadCondHandleKey< AtlasFieldCacheCondObj > m_fieldCacheCondObjInputKey
Definition: ImpactPoint3dEstimator.h:90
mag
Scalar mag() const
mag method
Definition: AmgMatrixBasePlugin.h:25
Trk::ImpactPoint3dEstimator::Estimate3dIP
virtual std::unique_ptr< PlaneSurface > Estimate3dIP(const Trk::TrackParameters *trackPerigee, const Amg::Vector3D *theVertex, double &distance) const override
Definition: ImpactPoint3dEstimator.cxx:117
Trk::phi0
@ phi0
Definition: ParamDefs.h:71
Trk::ImpactPoint3dEstimator::IP3dNeutralAtaPlane
virtual const Trk::NeutralAtaPlane * IP3dNeutralAtaPlane(const NeutralParameters *initNeutPerigee, const Amg::Vector3D &vertex) const override
Definition: ImpactPoint3dEstimator.cxx:345
Trk::VxTrackAtVertex::initialPerigee
const TrackParameters * initialPerigee(void) const
Access to the initial perigee parameters of trajectory.
Definition: VxTrackAtVertex.cxx:351