Analysis Software
Documentation for sPHENIX simulation software
|
#include <acts/blob/sPHENIX/Core/include/Acts/EventData/GenericBoundTrackParameters.hpp>
Public Types | |
using | Scalar = ActsScalar |
using | ParametersVector = BoundVector |
using | CovarianceMatrix = BoundSquareMatrix |
using | ParticleHypothesis = particle_hypothesis_t |
Public Member Functions | |
GenericBoundTrackParameters (std::shared_ptr< const Surface > surface, const ParametersVector ¶ms, std::optional< CovarianceMatrix > cov, ParticleHypothesis particleHypothesis) | |
template<typename other_particle_hypothesis_t > | |
GenericBoundTrackParameters (const GenericBoundTrackParameters< other_particle_hypothesis_t > &other) | |
Converts a bound track parameter with a different hypothesis. | |
GenericBoundTrackParameters ()=delete | |
Parameters are not default constructible due to the charge type. | |
GenericBoundTrackParameters (const GenericBoundTrackParameters &)=default | |
GenericBoundTrackParameters (GenericBoundTrackParameters &&)=default | |
~GenericBoundTrackParameters ()=default | |
GenericBoundTrackParameters & | operator= (const GenericBoundTrackParameters &)=default |
GenericBoundTrackParameters & | operator= (GenericBoundTrackParameters &&)=default |
ParametersVector & | parameters () |
Parameters vector. | |
const ParametersVector & | parameters () const |
Parameters vector. | |
ActsVector< 2 > | spatialImpactParameters () const |
Vector of spatial impact parameters (i.e., d0 and z0) | |
ActsVector< 3 > | impactParameters () const |
Vector of spatial and temporal impact parameters (i.e., d0, z0, and t) | |
std::optional< CovarianceMatrix > & | covariance () |
Optional covariance matrix. | |
const std::optional < CovarianceMatrix > & | covariance () const |
Optional covariance matrix. | |
std::optional < ActsSquareMatrix< 2 > > | spatialImpactParameterCovariance () const |
Covariance matrix of the spatial impact parameters (i.e., of d0 and z0) | |
std::optional < ActsSquareMatrix< 3 > > | impactParameterCovariance () const |
template<BoundIndices kIndex> | |
Scalar | get () const |
Vector2 | localPosition () const |
Local spatial position two-vector. | |
Vector4 | fourPosition (const GeometryContext &geoCtx) const |
Vector3 | position (const GeometryContext &geoCtx) const |
Scalar | time () const |
Time coordinate. | |
Scalar | phi () const |
Phi direction. | |
Scalar | theta () const |
Theta direction. | |
Scalar | qOverP () const |
Charge over momentum. | |
Vector3 | direction () const |
Scalar | absoluteMomentum () const |
Absolute momentum. | |
Scalar | transverseMomentum () const |
Transverse momentum. | |
Vector3 | momentum () const |
Momentum three-vector. | |
Scalar | charge () const |
Particle electric charge. | |
const ParticleHypothesis & | particleHypothesis () const |
Particle hypothesis. | |
const Surface & | referenceSurface () const |
Reference surface onto which the parameters are bound. | |
RotationMatrix3 | referenceFrame (const GeometryContext &geoCtx) const |
Static Public Member Functions | |
static Result < GenericBoundTrackParameters > | create (std::shared_ptr< const Surface > surface, const GeometryContext &geoCtx, const Vector4 &pos4, const Vector3 &dir, Scalar qOverP, std::optional< CovarianceMatrix > cov, ParticleHypothesis particleHypothesis, ActsScalar tolerance=s_onSurfaceTolerance) |
Private Member Functions | |
void | normalizePhiTheta () |
Ensure phi and theta angles are within bounds. | |
Private Attributes | |
BoundVector | m_params |
std::optional< BoundSquareMatrix > | m_cov |
std::shared_ptr< const Surface > | m_surface |
reference surface | |
ParticleHypothesis | m_particleHypothesis |
Friends | |
bool | operator== (const GenericBoundTrackParameters &lhs, const GenericBoundTrackParameters &rhs) |
bool | operator!= (const GenericBoundTrackParameters &lhs, const GenericBoundTrackParameters &rhs) |
Compare two bound track parameters for bitwise in-equality. | |
std::ostream & | operator<< (std::ostream &os, const GenericBoundTrackParameters &tp) |
Print information to the output stream. | |
Track parameters bound to a reference surface for a single track.
particle_hypothesis_t | Helper type to interpret the particle charge/momentum |
This is intended as a user-facing data class that adds additional accessors and charge/momentum interpretation on top of the pure parameters vector. All parameters and their corresponding covariance matrix are stored in bound parametrization. The specific definition of the local spatial parameters is defined by the associated surface.
Definition at line 37 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 37 of file GenericBoundTrackParameters.hpp
using Acts::GenericBoundTrackParameters< particle_hypothesis_t >::CovarianceMatrix = BoundSquareMatrix |
Definition at line 41 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 41 of file GenericBoundTrackParameters.hpp
using Acts::GenericBoundTrackParameters< particle_hypothesis_t >::ParametersVector = BoundVector |
Definition at line 40 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 40 of file GenericBoundTrackParameters.hpp
using Acts::GenericBoundTrackParameters< particle_hypothesis_t >::ParticleHypothesis = particle_hypothesis_t |
Definition at line 42 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 42 of file GenericBoundTrackParameters.hpp
using Acts::GenericBoundTrackParameters< particle_hypothesis_t >::Scalar = ActsScalar |
Definition at line 39 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 39 of file GenericBoundTrackParameters.hpp
|
inline |
Construct from a parameters vector on the surface and particle charge.
surface | Reference surface the parameters are defined on |
params | Bound parameters vector |
cov | Bound parameters covariance matrix |
particleHypothesis | Particle hypothesis |
In principle, only the charge magnitude is needed her to allow unambiguous extraction of the absolute momentum. The particle charge is required as an input here to be consistent with the other constructors below that that also take the charge as an input. The charge sign is only used in debug builds to check for consistency with the q/p parameter.
Definition at line 56 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 56 of file GenericBoundTrackParameters.hpp
|
inline |
Converts a bound track parameter with a different hypothesis.
Definition at line 70 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 70 of file GenericBoundTrackParameters.hpp
|
delete |
Parameters are not default constructible due to the charge type.
|
default |
|
default |
|
default |
|
inline |
Absolute momentum.
Definition at line 219 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 219 of file GenericBoundTrackParameters.hpp
Referenced by Acts::MultiComponentBoundTrackParameters::absoluteMomentum(), Acts::detail::GsfActor< bethe_heitler_approx_t, traj_t >::applyBetheHeitler(), Acts::Test::BOOST_AUTO_TEST_CASE(), Acts::Test::BOOST_DATA_TEST_CASE(), checkParametersConsistency(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::momentum(), PHCosmicsTrkFitter::printTrackSeed(), PHActsTrkFitter::printTrackSeed(), and Acts::GenericBoundTrackParameters< ParticleHypothesis >::transverseMomentum().
|
inline |
Particle electric charge.
Definition at line 230 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 230 of file GenericBoundTrackParameters.hpp
Referenced by Acts::detail::GsfActor< bethe_heitler_approx_t, traj_t >::applyBetheHeitler(), Acts::Test::BOOST_AUTO_TEST_CASE(), Acts::MultiComponentBoundTrackParameters::charge(), checkParametersConsistency(), PHCosmicsTrkFitter::printTrackSeed(), and PHActsTrkFitter::printTrackSeed().
|
inline |
Optional covariance matrix.
Definition at line 134 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 134 of file GenericBoundTrackParameters.hpp
Referenced by Acts::GaussianTrackDensity< input_track_t >::addTracks(), Acts::detail::GsfActor< bethe_heitler_approx_t, traj_t >::applyBetheHeitler(), BOOST_AUTO_TEST_CASE(), Acts::Test::BOOST_AUTO_TEST_CASE(), BOOST_DATA_TEST_CASE(), checkCovarianceConsistency(), Acts::EDM4hepUtil::detail::convertTrackParametersToEdm4hep(), Acts::MultiComponentBoundTrackParameters::covariance(), ActsExamples::ResPlotTool::fill(), Acts::Test::fillTrackState(), Acts::IterativeVertexFinder< vfitter_t, sfinder_t >::fillTracksToFit(), Acts::CombinatorialKalmanFilter< propagator_t, traj_t >::findTracks(), Acts::ImpactPointEstimator< input_track_t, propagator_t, propagator_options_t >::getVertexCompatibility(), Acts::RiddersPropagator< propagator_t >::propagate(), ActsTransformations::rotateActsCovToSvtxTrack(), Acts::StraightLineStepper::State::State(), Acts::EigenStepper< extensionlist_t, auctioneer_t >::State::State(), and PHActsVertexPropagator::updateSvtxTrack().
|
inline |
Optional covariance matrix.
Definition at line 136 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 136 of file GenericBoundTrackParameters.hpp
|
inlinestatic |
Factory to construct from four-position, direction, absolute momentum, and charge.
surface | Reference surface the parameters are defined on |
geoCtx | Geometry context for the local-to-global transformation |
pos4 | Track position/time four-vector |
dir | Track direction three-vector; normalization is ignored |
qOverP | Charge over momentum |
cov | Bound parameters covariance matrix |
particleHypothesis | Particle hypothesis |
tolerance | Tolerance used for globalToLocal |
Definition at line 90 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 90 of file GenericBoundTrackParameters.hpp
Referenced by PHCosmicsTrkFitter::loopTracks(), PHActsTrkFitter::loopTracks(), PHActsGSF::makeSeed(), and ActsPropagator::makeTrackParams().
|
inline |
Unit direction three-vector, i.e. the normalized momentum three-vector.
Definition at line 214 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 214 of file GenericBoundTrackParameters.hpp
Referenced by Acts::detail::GsfActor< bethe_heitler_approx_t, traj_t >::applyBetheHeitler(), BOOST_DATA_TEST_CASE(), checkParametersConsistency(), Acts::EDM4hepUtil::detail::convertTrackParametersToEdm4hep(), Acts::MultiComponentBoundTrackParameters::direction(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::fourPosition(), Acts::ImpactPointEstimator< input_track_t, propagator_t, propagator_options_t >::getDistanceAndMomentum(), Acts::ImpactPointEstimator< input_track_t, propagator_t, propagator_options_t >::getImpactParameters(), makeCurvilinearTransform(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::momentum(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::position(), Acts::StraightLineStepper::State::State(), and Acts::EigenStepper< extensionlist_t, auctioneer_t >::State::State().
|
inline |
Space-time position four-vector.
[in] | geoCtx | Geometry context for the local-to-global transformation |
This uses the associated surface to transform the local position on the surface to globalcoordinates. This requires a geometry context to select the appropriate transformation and might be a computationally expensive operation.
Definition at line 183 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 183 of file GenericBoundTrackParameters.hpp
Referenced by Acts::GenericCurvilinearTrackParameters< particle_hypothesis_t >::fourPosition(), and Acts::MultiComponentBoundTrackParameters::fourPosition().
|
inline |
Access a single parameter value identified by its index.
kIndex | Track parameter index |
Definition at line 168 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 168 of file GenericBoundTrackParameters.hpp
Referenced by Acts::MultiComponentBoundTrackParameters::get().
|
inline |
Covariance matrix of the spatial and temporal impact parameters (i.e., of d0, z0, and t)
Definition at line 148 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 148 of file GenericBoundTrackParameters.hpp
Referenced by Acts::AdaptiveGridTrackDensity< spatialTrkGridSize, temporalTrkGridSize >::addTrack(), and Acts::ImpactPointEstimator< input_track_t, propagator_t, propagator_options_t >::getVertexCompatibility().
|
inline |
Vector of spatial and temporal impact parameters (i.e., d0, z0, and t)
Definition at line 126 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 126 of file GenericBoundTrackParameters.hpp
Referenced by Acts::AdaptiveGridTrackDensity< spatialTrkGridSize, temporalTrkGridSize >::addTrack().
|
inline |
Local spatial position two-vector.
Definition at line 173 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 173 of file GenericBoundTrackParameters.hpp
Referenced by Acts::GenericBoundTrackParameters< ParticleHypothesis >::fourPosition(), and Acts::GenericBoundTrackParameters< ParticleHypothesis >::position().
|
inline |
Momentum three-vector.
Definition at line 227 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 227 of file GenericBoundTrackParameters.hpp
Referenced by PHTpcResiduals::addTrackState(), Acts::Test::BOOST_AUTO_TEST_CASE(), ActsTransformations::calculateDCA(), ActsExamples::PropagationAlgorithm::execute(), ActsExamples::DuplicationPlotTool::fill(), ActsExamples::TrackSummaryPlotTool::fill(), ActsExamples::FakeRatePlotTool::fill(), Acts::MultiComponentBoundTrackParameters::momentum(), ActsPropagator::printTrackParams(), PHCosmicsTrkFitter::printTrackSeed(), PHActsTrkFitter::printTrackSeed(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::referenceFrame(), ActsTransformations::rotateActsCovToSvtxTrack(), and PHActsVertexPropagator::updateSvtxTrack().
|
inlineprivate |
Ensure phi and theta angles are within bounds.
Definition at line 262 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 262 of file GenericBoundTrackParameters.hpp
Referenced by Acts::GenericBoundTrackParameters< ParticleHypothesis >::GenericBoundTrackParameters().
|
default |
|
default |
|
inline |
Parameters vector.
Definition at line 120 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 120 of file GenericBoundTrackParameters.hpp
Referenced by Acts::GaussianGridTrackDensity< mainGridSize, trkGridSize >::addTrack(), Acts::GaussianTrackDensity< input_track_t >::addTracks(), Acts::detail::GsfActor< bethe_heitler_approx_t, traj_t >::applyBetheHeitler(), BOOST_AUTO_TEST_CASE(), Acts::Test::BOOST_AUTO_TEST_CASE(), BOOST_DATA_TEST_CASE(), Acts::EDM4hepUtil::detail::convertTrackParametersToEdm4hep(), ActsExamples::ResPlotTool::fill(), Acts::Test::fillTrackState(), Acts::ZScanVertexFinder< vfitter_t >::find(), Acts::CombinatorialKalmanFilter< propagator_t, traj_t >::findTracks(), Acts::ImpactPointEstimator< input_track_t, propagator_t, propagator_options_t >::getDistanceAndMomentum(), Acts::ImpactPointEstimator< input_track_t, propagator_t, propagator_options_t >::getVertexCompatibility(), Acts::MultiComponentBoundTrackParameters::parameters(), Acts::StraightLineStepper::State::State(), Acts::EigenStepper< extensionlist_t, auctioneer_t >::State::State(), and ActsExamples::VertexPerformanceWriter::writeT().
|
inline |
Parameters vector.
Definition at line 122 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 122 of file GenericBoundTrackParameters.hpp
|
inline |
Particle hypothesis.
Definition at line 235 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 235 of file GenericBoundTrackParameters.hpp
Referenced by Acts::EDM4hepUtil::detail::convertTrackParametersToEdm4hep(), and Acts::ImpactPointEstimator< input_track_t, propagator_t, propagator_options_t >::getDistanceAndMomentum().
|
inline |
Phi direction.
Definition at line 206 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 206 of file GenericBoundTrackParameters.hpp
Referenced by Acts::GenericBoundTrackParameters< ParticleHypothesis >::normalizePhiTheta().
|
inline |
Spatial position three-vector.
[in] | geoCtx | Geometry context for the local-to-global transformation |
This uses the associated surface to transform the local position on the surface to globalcoordinates. This requires a geometry context to select the appropriate transformation and might be a computationally expensive operation.
Definition at line 199 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 199 of file GenericBoundTrackParameters.hpp
Referenced by PHTpcResiduals::addTrackState(), Acts::detail::GsfActor< bethe_heitler_approx_t, traj_t >::applyBetheHeitler(), BOOST_DATA_TEST_CASE(), ActsTransformations::calculateDCA(), checkParametersConsistency(), ActsExamples::PropagationAlgorithm::execute(), ActsTransformations::fillSvtxTrackStates(), Acts::ZScanVertexFinder< vfitter_t >::find(), Acts::ImpactPointEstimator< input_track_t, propagator_t, propagator_options_t >::getDistanceAndMomentum(), Acts::ImpactPointEstimator< input_track_t, propagator_t, propagator_options_t >::getImpactParameters(), makeCurvilinearTransform(), ZCylinderSurfaceBuilder::operator()(), ZStrawSurfaceBuilder::operator()(), Acts::GenericCurvilinearTrackParameters< particle_hypothesis_t >::position(), Acts::MultiComponentBoundTrackParameters::position(), ActsPropagator::printTrackParams(), PHCosmicsTrkFitter::printTrackSeed(), PHActsTrkFitter::printTrackSeed(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::referenceFrame(), Acts::StraightLineStepper::State::State(), Acts::EigenStepper< extensionlist_t, auctioneer_t >::State::State(), and PHActsVertexPropagator::updateSvtxTrack().
|
inline |
Charge over momentum.
Definition at line 210 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 210 of file GenericBoundTrackParameters.hpp
|
inline |
Reference frame in which the local error is defined.
[in] | geoCtx | Geometry context for the local-to-global transformation |
For planar surfaces, this is the transformation local-to-global rotation matrix. For non-planar surfaces, it is the local-to-global rotation matrix of the tangential plane at the track position.
Definition at line 249 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 249 of file GenericBoundTrackParameters.hpp
|
inline |
Reference surface onto which the parameters are bound.
Definition at line 240 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 240 of file GenericBoundTrackParameters.hpp
Referenced by Acts::Test::BOOST_AUTO_TEST_CASE(), BOOST_AUTO_TEST_CASE(), Acts::Test::BOOST_DATA_TEST_CASE(), Acts::EDM4hepUtil::detail::convertTrackParametersToEdm4hep(), ActsExamples::TracksToTrajectories::execute(), ActsExamples::ResPlotTool::fill(), Acts::Test::fillTrackState(), Acts::CombinatorialKalmanFilter< propagator_t, traj_t >::findTracks(), Acts::ImpactPointEstimator< input_track_t, propagator_t, propagator_options_t >::getDistanceAndMomentum(), PHCosmicsTrkFitter::getTrackFitResult(), PHActsTrkFitter::getTrackFitResult(), Acts::ImpactPointEstimator< input_track_t, propagator_t, propagator_options_t >::getVertexCompatibility(), Acts::Test::runTest(), Acts::StraightLineStepper::State::State(), Acts::EigenStepper< extensionlist_t, auctioneer_t >::State::State(), FitterTester::test_ZeroFieldWithSurfaceBackward(), Acts::EventDataView3DTest::testMultiTrajectory(), and PHActsGSF::updateTrack().
|
inline |
Covariance matrix of the spatial impact parameters (i.e., of d0 and z0)
Definition at line 138 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 138 of file GenericBoundTrackParameters.hpp
Referenced by Acts::GaussianGridTrackDensity< mainGridSize, trkGridSize >::addTrack(), and Acts::ImpactPointEstimator< input_track_t, propagator_t, propagator_options_t >::getVertexCompatibility().
|
inline |
Vector of spatial impact parameters (i.e., d0 and z0)
Definition at line 124 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 124 of file GenericBoundTrackParameters.hpp
|
inline |
Theta direction.
Definition at line 208 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 208 of file GenericBoundTrackParameters.hpp
Referenced by Acts::GenericBoundTrackParameters< ParticleHypothesis >::normalizePhiTheta().
|
inline |
Time coordinate.
Definition at line 203 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 203 of file GenericBoundTrackParameters.hpp
Referenced by Acts::Test::BOOST_AUTO_TEST_CASE(), checkParametersConsistency(), Acts::StraightLineStepper::State::State(), Acts::EigenStepper< extensionlist_t, auctioneer_t >::State::State(), and Acts::MultiComponentBoundTrackParameters::time().
|
inline |
Transverse momentum.
Definition at line 223 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 223 of file GenericBoundTrackParameters.hpp
Referenced by Acts::MultiComponentBoundTrackParameters::transverseMomentum().
|
friend |
Compare two bound track parameters for bitwise in-equality.
Definition at line 286 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 286 of file GenericBoundTrackParameters.hpp
|
friend |
Print information to the output stream.
Definition at line 291 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 291 of file GenericBoundTrackParameters.hpp
|
friend |
Compare two bound track parameters for bitwise equality.
Definition at line 279 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 279 of file GenericBoundTrackParameters.hpp
|
private |
Definition at line 255 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 255 of file GenericBoundTrackParameters.hpp
Referenced by Acts::GenericBoundTrackParameters< ParticleHypothesis >::covariance(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::impactParameterCovariance(), and Acts::GenericBoundTrackParameters< ParticleHypothesis >::spatialImpactParameterCovariance().
|
private |
Definition at line 254 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 254 of file GenericBoundTrackParameters.hpp
Referenced by Acts::GenericBoundTrackParameters< ParticleHypothesis >::absoluteMomentum(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::direction(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::fourPosition(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::get(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::impactParameters(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::localPosition(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::normalizePhiTheta(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::parameters(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::phi(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::qOverP(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::spatialImpactParameters(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::theta(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::time(), and Acts::GenericBoundTrackParameters< ParticleHypothesis >::transverseMomentum().
|
private |
Definition at line 259 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 259 of file GenericBoundTrackParameters.hpp
Referenced by Acts::GenericBoundTrackParameters< ParticleHypothesis >::absoluteMomentum(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::charge(), and Acts::GenericBoundTrackParameters< ParticleHypothesis >::particleHypothesis().
|
private |
reference surface
Definition at line 257 of file GenericBoundTrackParameters.hpp.
View newest version in sPHENIX GitHub at line 257 of file GenericBoundTrackParameters.hpp
Referenced by Acts::GenericBoundTrackParameters< ParticleHypothesis >::fourPosition(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::GenericBoundTrackParameters(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::position(), Acts::GenericBoundTrackParameters< ParticleHypothesis >::referenceFrame(), and Acts::GenericBoundTrackParameters< ParticleHypothesis >::referenceSurface().