#include <newBasic3DVector.h>
Public Types | |
typedef Geom::Cylindrical2Cartesian< T > | Cylindrical |
typedef Geom::Cylindrical2Cartesian< T > | Cylindrical |
typedef mathSSE::Vec4< T > | MathVector |
typedef Basic3DVector< T > | MathVector |
typedef Spherical | Polar |
typedef Spherical | Polar |
typedef T | ScalarType |
typedef T | ScalarType |
typedef Geom::Spherical2Cartesian< T > | Spherical |
typedef Geom::Spherical2Cartesian< T > | Spherical |
typedef mathSSE::Vec4< T > | VectorType |
Public Member Functions | |
T | barePhi () const |
T | barePhi () const |
T | bareTheta () const |
T | bareTheta () const |
Basic3DVector () | |
Basic3DVector (const Basic3DVector &p) | |
Copy constructor from same type. Should not be needed but for gcc bug 12685. More... | |
Basic3DVector () | |
Basic3DVector (const Basic3DVector &p) | |
Copy constructor from same type. Should not be needed but for gcc bug 12685. More... | |
template<class U > | |
Basic3DVector (const Basic3DVector< U > &p) | |
Copy constructor and implicit conversion from Basic3DVector of different precision. More... | |
template<class U > | |
Basic3DVector (const Basic3DVector< U > &p) | |
Copy constructor and implicit conversion from Basic3DVector of different precision. More... | |
Basic3DVector (const Basic2DVector< T > &p) | |
constructor from 2D vector (X and Y from 2D vector, z set to zero) More... | |
Basic3DVector (const Basic2DVector< T > &p) | |
constructor from 2D vector (X and Y from 2D vector, z set to zero) More... | |
template<class OtherPoint > | |
Basic3DVector (const OtherPoint &p) | |
template<class OtherPoint > | |
Basic3DVector (const OtherPoint &p) | |
template<class U > | |
Basic3DVector (mathSSE::Vec4< U > const &iv) | |
template<typename U > | |
Basic3DVector (mathSSE::Vec4< U > const &iv) | |
Basic3DVector (const T &x, const T &y, const T &z, const T &w=0) | |
construct from cartesian coordinates More... | |
Basic3DVector (const T &x, const T &y, const T &z, const T &w=0) | |
construct from cartesian coordinates More... | |
template<typename U > | |
Basic3DVector (const Geom::Theta< U > &theta, const Geom::Phi< U > &phi, const T &r) | |
template<typename U > | |
Basic3DVector (const Geom::Theta< U > &theta, const Geom::Phi< U > &phi, const T &r) | |
Basic3DVector | cross (const Basic3DVector &lh) const |
Vector product, or "cross" product, with a vector of same type. More... | |
template<class U > | |
Basic3DVector< typename PreciseFloatType< T, U >::Type > | cross (const Basic3DVector< U > &lh) const |
Basic3DVector | cross (const Basic3DVector &v) const |
Vector product, or "cross" product, with a vector of same type. More... | |
template<class U > | |
Basic3DVector< typename PreciseFloatType< T, U >::Type > | cross (const Basic3DVector< U > &v) const |
T | dot (const Basic3DVector &rh) const |
Scalar product, or "dot" product, with a vector of same type. More... | |
template<class U > | |
PreciseFloatType< T, U >::Type | dot (const Basic3DVector< U > &lh) const |
T | dot (const Basic3DVector &v) const |
Scalar product, or "dot" product, with a vector of same type. More... | |
template<class U > | |
PreciseFloatType< T, U >::Type | dot (const Basic3DVector< U > &v) const |
T | eta () const |
T | eta () const |
T | mag () const |
The vector magnitude. Equivalent to sqrt(vec.mag2()) More... | |
T | mag () const |
The vector magnitude. Equivalent to sqrt(vec.mag2()) More... | |
T | mag2 () const |
The vector magnitude squared. Equivalent to vec.dot(vec) More... | |
T | mag2 () const |
The vector magnitude squared. Equivalent to vec.dot(vec) More... | |
MathVector const & | mathVector () const |
MathVector & | mathVector () |
Basic3DVector & | operator*= (T t) |
Scaling by a scalar value (multiplication) More... | |
Basic3DVector & | operator*= (T t) |
Scaling by a scalar value (multiplication) More... | |
template<class U > | |
Basic3DVector & | operator+= (const Basic3DVector< U > &p) |
template<class U > | |
Basic3DVector & | operator+= (const Basic3DVector< U > &p) |
Basic3DVector | operator- () const |
Unary minus, returns a vector with components (-x(),-y(),-z()) More... | |
Basic3DVector | operator- () const |
Unary minus, returns a vector with components (-x(),-y(),-z()) More... | |
template<class U > | |
Basic3DVector & | operator-= (const Basic3DVector< U > &p) |
template<class U > | |
Basic3DVector & | operator-= (const Basic3DVector< U > &p) |
Basic3DVector & | operator/= (T t) |
Scaling by a scalar value (division) More... | |
Basic3DVector & | operator/= (T t) |
Scaling by a scalar value (division) More... | |
bool | operator== (const Basic3DVector &rh) const |
bool | operator== (const Basic3DVector &rh) const |
T | perp () const |
Magnitude of transverse component. More... | |
T | perp () const |
Magnitude of transverse component. More... | |
T | perp2 () const |
Squared magnitude of transverse component. More... | |
T | perp2 () const |
Squared magnitude of transverse component. More... | |
Geom::Phi< T > | phi () const |
Geom::Phi< T > | phi () const |
Geom::Theta< T > | theta () const |
Geom::Theta< T > | theta () const |
T | transverse () const |
Another name for perp() More... | |
T | transverse () const |
Another name for perp() More... | |
Basic3DVector | unit () const |
Basic3DVector | unit () const |
T | w () const |
T | w () const |
T | x () const |
Cartesian x coordinate. More... | |
T | x () const |
Cartesian x coordinate. More... | |
Basic2DVector< T > | xy () const |
Basic2DVector< T > | xy () const |
T | y () const |
Cartesian y coordinate. More... | |
T | y () const |
Cartesian y coordinate. More... | |
T | z () const |
Cartesian z coordinate. More... | |
T | z () const |
Cartesian z coordinate. More... | |
Public Attributes | |
mathSSE::Vec4< T > | v |
Private Attributes | |
T | theW |
T | theX |
T | theY |
T | theZ |
Definition at line 24 of file newBasic3DVector.h.
typedef Geom::Cylindrical2Cartesian<T> Basic3DVector< T >::Cylindrical |
Definition at line 30 of file newBasic3DVector.h.
typedef Geom::Cylindrical2Cartesian<T> Basic3DVector< T >::Cylindrical |
Definition at line 34 of file oldBasic3DVector.h.
typedef mathSSE::Vec4<T> Basic3DVector< T >::MathVector |
Definition at line 29 of file newBasic3DVector.h.
typedef Basic3DVector<T> Basic3DVector< T >::MathVector |
Definition at line 30 of file oldBasic3DVector.h.
typedef Spherical Basic3DVector< T >::Polar |
Definition at line 32 of file newBasic3DVector.h.
typedef Spherical Basic3DVector< T >::Polar |
Definition at line 36 of file oldBasic3DVector.h.
typedef T Basic3DVector< T >::ScalarType |
Definition at line 27 of file newBasic3DVector.h.
typedef T Basic3DVector< T >::ScalarType |
Definition at line 33 of file oldBasic3DVector.h.
typedef Geom::Spherical2Cartesian<T> Basic3DVector< T >::Spherical |
Definition at line 31 of file newBasic3DVector.h.
typedef Geom::Spherical2Cartesian<T> Basic3DVector< T >::Spherical |
Definition at line 35 of file oldBasic3DVector.h.
typedef mathSSE::Vec4<T> Basic3DVector< T >::VectorType |
Definition at line 28 of file newBasic3DVector.h.
|
inline |
default constructor uses default constructor of T to initialize the components. For built-in floating-point types this means initialization to zero??? (force init to 0)
Definition at line 38 of file newBasic3DVector.h.
Referenced by Basic3DVector< long double >::cross(), Basic3DVector< align::Scalar >::cross(), Basic3DVector< long double >::operator-(), and Basic3DVector< align::Scalar >::operator-().
|
inline |
Copy constructor from same type. Should not be needed but for gcc bug 12685.
Definition at line 41 of file newBasic3DVector.h.
|
inline |
Copy constructor and implicit conversion from Basic3DVector of different precision.
Definition at line 46 of file newBasic3DVector.h.
|
inline |
constructor from 2D vector (X and Y from 2D vector, z set to zero)
Definition at line 51 of file newBasic3DVector.h.
|
inlineexplicit |
Explicit constructor from other (possibly unrelated) vector classes The only constraint on the argument type is that it has methods x(), y() and z(), and that these methods return a type convertible to T. Examples of use are
construction from a Basic3DVector with different precision
construction from a Hep3Vector
construction from a coordinate system converter
Definition at line 64 of file newBasic3DVector.h.
|
inline |
Definition at line 70 of file newBasic3DVector.h.
|
inline |
|
inline |
Deprecated construct from polar coordinates, use
Basic3DVector<T>( Basic3DVector<T>::Polar( theta, phi, r)) instead.
Definition at line 81 of file newBasic3DVector.h.
|
inline |
default constructor uses default constructor of T to initialize the components. For built-in floating-point types this means initialization to zero??? (force init to 0)
Definition at line 42 of file oldBasic3DVector.h.
|
inline |
Copy constructor from same type. Should not be needed but for gcc bug 12685.
Definition at line 45 of file oldBasic3DVector.h.
|
inline |
Copy constructor and implicit conversion from Basic3DVector of different precision.
Definition at line 50 of file oldBasic3DVector.h.
|
inline |
constructor from 2D vector (X and Y from 2D vector, z set to zero)
Definition at line 54 of file oldBasic3DVector.h.
|
inlineexplicit |
Explicit constructor from other (possibly unrelated) vector classes The only constraint on the argument type is that it has methods x(), y() and z(), and that these methods return a type convertible to T. Examples of use are
construction from a Basic3DVector with different precision
construction from a Hep3Vector
construction from a coordinate system converter
Definition at line 66 of file oldBasic3DVector.h.
|
inline |
Definition at line 73 of file oldBasic3DVector.h.
|
inline |
|
inline |
Deprecated construct from polar coordinates, use
Basic3DVector<T>( Basic3DVector<T>::Polar( theta, phi, r)) instead.
Definition at line 96 of file oldBasic3DVector.h.
|
inline |
Azimuthal angle. The value is returned in radians, in the range (-pi,pi]. Same precision as the system atan2(x,y) function. The return type is Geom::Phi<T>, see it's documentation.
Definition at line 128 of file newBasic3DVector.h.
Referenced by PV3DBase< long double, PointTag, GlobalTag >::barePhi(), Basic3DVector< long double >::phi(), and Basic3DVector< align::Scalar >::phi().
|
inline |
Azimuthal angle. The value is returned in radians, in the range (-pi,pi]. Same precision as the system atan2(x,y) function. The return type is Geom::Phi<T>, see it's documentation.
Definition at line 141 of file oldBasic3DVector.h.
|
inline |
Polar angle. The value is returned in radians, in the range [0,pi] Same precision as the system atan2(x,y) function. The return type is Geom::Phi<T>, see it's documentation.
Definition at line 135 of file newBasic3DVector.h.
Referenced by PV3DBase< long double, PointTag, GlobalTag >::bareTheta().
|
inline |
Polar angle. The value is returned in radians, in the range [0,pi] Same precision as the system atan2(x,y) function. The return type is Geom::Phi<T>, see it's documentation.
Definition at line 148 of file oldBasic3DVector.h.
|
inline |
Vector product, or "cross" product, with a vector of same type.
Definition at line 202 of file newBasic3DVector.h.
Referenced by Vector3DBase< Scalar, GlobalTag >::cross(), PFDisplacedVertexFinder::getTransvDiff(), CartesianLorentzForce::operator()(), and TkRotation< align::Scalar >::TkRotation().
|
inline |
Vector (or cross) product with a vector of different precision. The product is computed without loss of precision. The type of the returned vector is the more precise of the types of the two vectors.
Definition at line 214 of file newBasic3DVector.h.
|
inline |
Vector product, or "cross" product, with a vector of same type.
Definition at line 228 of file oldBasic3DVector.h.
|
inline |
Vector (or cross) product with a vector of different precision. The product is computed without loss of precision. The type of the returned vector is the more precise of the types of the two vectors.
Definition at line 242 of file oldBasic3DVector.h.
|
inline |
Scalar product, or "dot" product, with a vector of same type.
Definition at line 186 of file newBasic3DVector.h.
Referenced by CosmicMuonTrajectoryBuilder::build(), Vector3DBase< Scalar, GlobalTag >::dot(), PFDisplacedVertexFinder::getLongDiff(), PFDisplacedVertexFinder::getLongProj(), MuRingForwardDoubleLayer::isInsideOut(), MuonNavigableLayer::isInsideOut(), GlobalCosmicMuonTrajectoryBuilder::match(), operator*(), DirectTrackerNavigation::outward(), StraightLinePlaneCrossing::pathLength(), HelixExtrapolatorToLine2Order::pathLength(), phi(), TrackCandidateProducer::produce(), TkRotation< align::Scalar >::rotateAxes(), theta(), CosmicMuonTrajectoryBuilder::trajectories(), GlobalMuonRefitter::transform(), and SimpleNavigableLayer::wellInside().
|
inline |
Scalar (or dot) product with a vector of different precision. The product is computed without loss of precision. The type of the returned scalar is the more precise of the scalar types of the two vectors.
Definition at line 196 of file newBasic3DVector.h.
|
inline |
Scalar product, or "dot" product, with a vector of same type.
Definition at line 213 of file oldBasic3DVector.h.
|
inline |
Scalar (or dot) product with a vector of different precision. The product is computed without loss of precision. The type of the returned scalar is the more precise of the scalar types of the two vectors.
Definition at line 223 of file oldBasic3DVector.h.
|
inline |
Pseudorapidity. Does not check for zero transverse component; in this case the behavior is as for divide-by zero, i.e. system-dependent.
Definition at line 143 of file newBasic3DVector.h.
Referenced by DeDxDiscriminatorLearner::algoBeginJob(), DeDxDiscriminatorLearnerFromCalibTree::algoBeginJob(), SiStripGainFromData::algoBeginJob(), SiStripGainFromCalibTree::algoBeginJob(), DeDxDiscriminatorProducer::beginRun(), CosmicMuonTrajectoryBuilder::build(), and PV3DBase< long double, PointTag, GlobalTag >::eta().
|
inline |
Pseudorapidity. Does not check for zero transverse component; in this case the behavior is as for divide-by zero, i.e. system-dependent.
Definition at line 156 of file oldBasic3DVector.h.
|
inline |
The vector magnitude. Equivalent to sqrt(vec.mag2())
Definition at line 113 of file newBasic3DVector.h.
Referenced by SurveyInputTrackerFromDB::addSurveyInfo(), RK4PreciseStep::distance(), PFDisplacedVertexFinder::getLongDiff(), PFDisplacedVertexFinder::getLongProj(), PFDisplacedVertexFinder::getTransvDiff(), HelixBarrelPlaneCrossingByCircle::init(), PV3DBase< long double, PointTag, GlobalTag >::mag(), RKCurvilinearDistance< T, N >::operator()(), RKCartesianDistance::operator()(), PathToPlane2Order::operator()(), HelixArbitraryPlaneCrossing::pathLength(), AnalyticalPropagator::propagateParametersOnPlane(), AnalyticalImpactPointExtrapolator::propagateWithHelix(), AnalyticalTrajectoryExtrapolatorToLine::propagateWithHelix(), and AnalyticalPropagator::propagateWithHelixCrossing().
|
inline |
The vector magnitude. Equivalent to sqrt(vec.mag2())
Definition at line 126 of file oldBasic3DVector.h.
|
inline |
The vector magnitude squared. Equivalent to vec.dot(vec)
Definition at line 110 of file newBasic3DVector.h.
Referenced by PFDisplacedVertexFinder::getLongDiff(), Basic3DVector< long double >::mag(), Basic3DVector< align::Scalar >::mag(), PV3DBase< long double, PointTag, GlobalTag >::mag2(), HelixExtrapolatorToLine2Order::pathLength(), TkRotation< align::Scalar >::rotateAxes(), Basic3DVector< align::Scalar >::unit(), and xy().
|
inline |
The vector magnitude squared. Equivalent to vec.dot(vec)
Definition at line 123 of file oldBasic3DVector.h.
|
inline |
Definition at line 87 of file newBasic3DVector.h.
|
inline |
Definition at line 88 of file newBasic3DVector.h.
|
inline |
|
inline |
|
inline |
Operator += with a Basic3DVector of possibly different precision.
Definition at line 156 of file newBasic3DVector.h.
|
inline |
Operator += with a Basic3DVector of possibly different precision.
Definition at line 171 of file oldBasic3DVector.h.
|
inline |
Unary minus, returns a vector with components (-x(),-y(),-z())
Definition at line 170 of file newBasic3DVector.h.
|
inline |
Unary minus, returns a vector with components (-x(),-y(),-z())
Definition at line 191 of file oldBasic3DVector.h.
|
inline |
Operator -= with a Basic3DVector of possibly different precision.
Definition at line 164 of file newBasic3DVector.h.
|
inline |
Operator -= with a Basic3DVector of possibly different precision.
Definition at line 182 of file oldBasic3DVector.h.
|
inline |
|
inline |
|
inline |
Definition at line 105 of file newBasic3DVector.h.
|
inline |
Definition at line 118 of file oldBasic3DVector.h.
|
inline |
Magnitude of transverse component.
Definition at line 119 of file newBasic3DVector.h.
Referenced by Basic3DVector< long double >::bareTheta(), Basic3DVector< align::Scalar >::bareTheta(), HelixBarrelPlaneCrossingByCircle::init(), RK4PreciseStep::operator()(), CylinderBuilderFromDet::operator()(), PV3DBase< long double, PointTag, GlobalTag >::perp(), RKPropagatorInS::propagateParametersOnCylinder(), Basic3DVector< long double >::theta(), Basic3DVector< align::Scalar >::theta(), Basic3DVector< long double >::transverse(), and Basic3DVector< align::Scalar >::transverse().
|
inline |
Magnitude of transverse component.
Definition at line 132 of file oldBasic3DVector.h.
|
inline |
Squared magnitude of transverse component.
Definition at line 116 of file newBasic3DVector.h.
Referenced by Basic3DVector< long double >::perp(), Basic3DVector< align::Scalar >::perp(), and PV3DBase< long double, PointTag, GlobalTag >::perp2().
|
inline |
|
inline |
Definition at line 129 of file newBasic3DVector.h.
Referenced by SiStripGainFromData::algoBeginJob(), SiStripGainFromCalibTree::algoBeginJob(), PV3DBase< long double, PointTag, GlobalTag >::phi(), AlCaHOCalibProducer::produce(), and TkRotation< align::Scalar >::TkRotation().
|
inline |
Definition at line 142 of file oldBasic3DVector.h.
|
inline |
Definition at line 136 of file newBasic3DVector.h.
Referenced by AlCaHOCalibProducer::produce(), PV3DBase< long double, PointTag, GlobalTag >::theta(), and TkRotation< align::Scalar >::TkRotation().
|
inline |
Definition at line 149 of file oldBasic3DVector.h.
|
inline |
Another name for perp()
Definition at line 122 of file newBasic3DVector.h.
Referenced by DeDxDiscriminatorLearner::algoBeginJob(), DeDxDiscriminatorLearnerFromCalibTree::algoBeginJob(), SiStripGainFromData::algoBeginJob(), SiStripGainFromCalibTree::algoBeginJob(), DeDxDiscriminatorProducer::beginRun(), and PV3DBase< long double, PointTag, GlobalTag >::transverse().
|
inline |
Another name for perp()
Definition at line 135 of file oldBasic3DVector.h.
|
inline |
Unit vector parallel to this. If mag() is zero, a zero vector is returned.
Definition at line 148 of file newBasic3DVector.h.
Referenced by CartesianLorentzForce::operator()(), PathToPlane2Order::operator()(), HelixBarrelPlaneCrossingByCircle::position(), and TkRotation< align::Scalar >::TkRotation().
|
inline |
Unit vector parallel to this. If mag() is zero, a zero vector is returned.
Definition at line 161 of file oldBasic3DVector.h.
|
inline |
|
inline |
Definition at line 111 of file oldBasic3DVector.h.
|
inline |
Cartesian x coordinate.
Definition at line 92 of file newBasic3DVector.h.
Referenced by svgfig.Curve.Sample::__repr__(), svgfig.Ellipse::__repr__(), SiStripGainFromCalibTree::algoBeginJob(), LinearEquation3< T >::Array3< U >::Array3(), Vispa.Gui.WidgetContainer.WidgetContainer::autosize(), Basic3DVector< long double >::barePhi(), Basic3DVector< align::Scalar >::barePhi(), Vispa.Gui.VispaWidget.VispaWidget::boundingRect(), HelixBarrelPlaneCrossingByCircle::chooseSolution(), TSCPBuilderNoMaterial::createFTSatTransverseImpactPointCharged(), Basic3DVector< long double >::cross(), Basic3DVector< align::Scalar >::cross(), HelixBarrelPlaneCrossingByCircle::direction(), HelixArbitraryPlaneCrossing::direction(), HelixArbitraryPlaneCrossing2Order::direction(), HelixExtrapolatorToLine2Order::directionInDouble(), Basic3DVector< long double >::dot(), Basic3DVector< align::Scalar >::dot(), Basic3DVector< long double >::eta(), Basic3DVector< align::Scalar >::eta(), IterativeHelixExtrapolatorToLine::genericPathLength(), HelixArbitraryPlaneCrossing::HelixArbitraryPlaneCrossing(), HelixArbitraryPlaneCrossing2Order::HelixArbitraryPlaneCrossing2Order(), HelixExtrapolatorToLine2Order::HelixExtrapolatorToLine2Order(), HelixForwardPlaneCrossing::HelixForwardPlaneCrossing(), HelixBarrelPlaneCrossingByCircle::init(), IterativeHelixExtrapolatorToLine::IterativeHelixExtrapolatorToLine(), Basic3DVector< long double >::mag2(), Basic3DVector< align::Scalar >::mag2(), ThirdHitPredictionFromInvLine::MappedPoint< T >::MappedPoint(), ConformalMappingFit::MappedPoint< T >::MappedPoint(), reco::PFDisplacedVertexSeed::mergeWith(), TkRotation< align::Scalar >::multiplyInverse(), HelixArbitraryPlaneCrossing::notAtSurface(), PathToPlane2Order::operator()(), TkRotation< align::Scalar >::operator*(), operator*(), operator+(), operator+=(), Basic3DVector< long double >::operator-(), Basic3DVector< align::Scalar >::operator-(), operator-(), Basic3DVector< align::Scalar >::operator-=(), LinearEquation3< T >::Array3< U >::operator=(), Basic3DVector< long double >::operator==(), Basic3DVector< align::Scalar >::operator==(), TrackAssociatorByChi2::parametersAtClosestApproach(), HelixArbitraryPlaneCrossing::pathLength(), HelixBarrelPlaneCrossingByCircle::pathLength(), HelixExtrapolatorToLine2Order::pathLength(), Basic3DVector< long double >::perp2(), Basic3DVector< align::Scalar >::perp2(), geometryXMLparser.Alignable::pos(), HelixBarrelPlaneCrossingByCircle::position(), HelixArbitraryPlaneCrossing::position(), HelixArbitraryPlaneCrossing2Order::position(), HelixExtrapolatorToLine2Order::positionInDouble(), Vispa.Gui.ConnectableWidget.ConnectableWidget::positionizeMenuWidget(), TrackKinematicStatePropagator::propagateToTheTransversePCACharged(), CartesianStateAdaptor::rkstate(), TkRotation< align::Scalar >::rotateAxes(), VertexDistanceXY::signedDistance(), VertexDistance3D::signedDistance(), transverse(), ThirdHitPredictionFromInvLine::MappedPoint< T >::unmap(), ConformalMappingFit::MappedPoint< T >::unmap(), reco::PFDisplacedVertexSeed::updateSeedPoint(), and PV3DBase< long double, PointTag, GlobalTag >::x().
|
inline |
Cartesian x coordinate.
Definition at line 103 of file oldBasic3DVector.h.
Referenced by svgfig.Curve.Sample::__repr__(), svgfig.Ellipse::__repr__(), Vispa.Gui.WidgetContainer.WidgetContainer::autosize(), Vispa.Gui.VispaWidget.VispaWidget::boundingRect(), geometryXMLparser.Alignable::pos(), and Vispa.Gui.ConnectableWidget.ConnectableWidget::positionizeMenuWidget().
|
inline |
Definition at line 102 of file newBasic3DVector.h.
Referenced by geometryXMLparser.Alignable::covariance(), and ThirdHitPredictionFromInvParabola::init().
|
inline |
Definition at line 114 of file oldBasic3DVector.h.
Referenced by geometryXMLparser.Alignable::covariance().
|
inline |
Cartesian y coordinate.
Definition at line 95 of file newBasic3DVector.h.
Referenced by svgfig.Ellipse::__repr__(), AlignmentParameterStore::acquireRelativeParameters(), SiStripGainFromCalibTree::algoBeginJob(), LinearEquation3< T >::Array3< U >::Array3(), Vispa.Gui.WidgetContainer.WidgetContainer::autosize(), Basic3DVector< long double >::barePhi(), Basic3DVector< align::Scalar >::barePhi(), Vispa.Gui.VispaWidget.VispaWidget::boundingRect(), HelixBarrelPlaneCrossingByCircle::chooseSolution(), TSCPBuilderNoMaterial::createFTSatTransverseImpactPointCharged(), Basic3DVector< long double >::cross(), Basic3DVector< align::Scalar >::cross(), HelixBarrelPlaneCrossingByCircle::direction(), HelixArbitraryPlaneCrossing::direction(), HelixArbitraryPlaneCrossing2Order::direction(), HelixExtrapolatorToLine2Order::directionInDouble(), Basic3DVector< long double >::dot(), Basic3DVector< align::Scalar >::dot(), Basic3DVector< long double >::eta(), Basic3DVector< align::Scalar >::eta(), IterativeHelixExtrapolatorToLine::genericPathLength(), HelixArbitraryPlaneCrossing::HelixArbitraryPlaneCrossing(), HelixArbitraryPlaneCrossing2Order::HelixArbitraryPlaneCrossing2Order(), HelixExtrapolatorToLine2Order::HelixExtrapolatorToLine2Order(), HelixForwardPlaneCrossing::HelixForwardPlaneCrossing(), HelixBarrelPlaneCrossingByCircle::init(), IterativeHelixExtrapolatorToLine::IterativeHelixExtrapolatorToLine(), Basic3DVector< long double >::mag2(), Basic3DVector< align::Scalar >::mag2(), ThirdHitPredictionFromInvLine::MappedPoint< T >::MappedPoint(), ConformalMappingFit::MappedPoint< T >::MappedPoint(), reco::PFDisplacedVertexSeed::mergeWith(), TkRotation< align::Scalar >::multiplyInverse(), HelixArbitraryPlaneCrossing::notAtSurface(), PathToPlane2Order::operator()(), TkRotation< align::Scalar >::operator*(), operator*(), operator+(), operator+=(), Basic3DVector< long double >::operator-(), Basic3DVector< align::Scalar >::operator-(), operator-(), Basic3DVector< align::Scalar >::operator-=(), LinearEquation3< T >::Array3< U >::operator=(), Basic3DVector< long double >::operator==(), Basic3DVector< align::Scalar >::operator==(), TrackAssociatorByChi2::parametersAtClosestApproach(), HelixArbitraryPlaneCrossing::pathLength(), HelixBarrelPlaneCrossingByCircle::pathLength(), HelixExtrapolatorToLine2Order::pathLength(), Basic3DVector< long double >::perp2(), Basic3DVector< align::Scalar >::perp2(), geometryXMLparser.Alignable::pos(), HelixBarrelPlaneCrossingByCircle::position(), HelixArbitraryPlaneCrossing::position(), HelixArbitraryPlaneCrossing2Order::position(), HelixExtrapolatorToLine2Order::positionInDouble(), Vispa.Gui.ConnectableWidget.ConnectableWidget::positionizeMenuWidget(), TrackKinematicStatePropagator::propagateToTheTransversePCACharged(), CartesianStateAdaptor::rkstate(), TkRotation< align::Scalar >::rotateAxes(), VertexDistanceXY::signedDistance(), VertexDistance3D::signedDistance(), transverse(), ThirdHitPredictionFromInvLine::MappedPoint< T >::unmap(), ConformalMappingFit::MappedPoint< T >::unmap(), reco::PFDisplacedVertexSeed::updateSeedPoint(), and PV3DBase< long double, PointTag, GlobalTag >::y().
|
inline |
Cartesian y coordinate.
Definition at line 106 of file oldBasic3DVector.h.
Referenced by svgfig.Ellipse::__repr__(), Vispa.Gui.WidgetContainer.WidgetContainer::autosize(), Vispa.Gui.VispaWidget.VispaWidget::boundingRect(), geometryXMLparser.Alignable::pos(), and Vispa.Gui.ConnectableWidget.ConnectableWidget::positionizeMenuWidget().
|
inline |
Cartesian z coordinate.
Definition at line 98 of file newBasic3DVector.h.
Referenced by SiStripGainFromCalibTree::algoBeginJob(), LinearEquation3< T >::Array3< U >::Array3(), Basic3DVector< long double >::bareTheta(), Basic3DVector< align::Scalar >::bareTheta(), TSCPBuilderNoMaterial::createFTSatTransverseImpactPointCharged(), Basic3DVector< long double >::cross(), Basic3DVector< align::Scalar >::cross(), HelixBarrelPlaneCrossingByCircle::direction(), HelixArbitraryPlaneCrossing::direction(), HelixArbitraryPlaneCrossing2Order::direction(), HelixExtrapolatorToLine2Order::directionInDouble(), Basic3DVector< long double >::dot(), Basic3DVector< align::Scalar >::dot(), Basic3DVector< long double >::eta(), Basic3DVector< align::Scalar >::eta(), IterativeHelixExtrapolatorToLine::genericPathLength(), HelixArbitraryPlaneCrossing::HelixArbitraryPlaneCrossing(), HelixArbitraryPlaneCrossing2Order::HelixArbitraryPlaneCrossing2Order(), HelixExtrapolatorToLine2Order::HelixExtrapolatorToLine2Order(), HelixForwardPlaneCrossing::HelixForwardPlaneCrossing(), HelixBarrelPlaneCrossingByCircle::init(), IterativeHelixExtrapolatorToLine::IterativeHelixExtrapolatorToLine(), Basic3DVector< long double >::mag2(), Basic3DVector< align::Scalar >::mag2(), reco::PFDisplacedVertexSeed::mergeWith(), TkRotation< align::Scalar >::multiplyInverse(), HelixArbitraryPlaneCrossing::notAtSurface(), RK4PreciseStep::operator()(), PathToPlane2Order::operator()(), TkRotation< align::Scalar >::operator*(), operator*(), operator+(), operator+=(), Basic3DVector< long double >::operator-(), Basic3DVector< align::Scalar >::operator-(), operator-(), LinearEquation3< T >::Array3< U >::operator=(), Basic3DVector< long double >::operator==(), Basic3DVector< align::Scalar >::operator==(), TrackAssociatorByChi2::parametersAtClosestApproach(), HelixForwardPlaneCrossing::pathLength(), HelixArbitraryPlaneCrossing::pathLength(), geometryXMLparser.Alignable::pos(), HelixBarrelPlaneCrossingByCircle::position(), HelixArbitraryPlaneCrossing::position(), HelixArbitraryPlaneCrossing2Order::position(), HelixExtrapolatorToLine2Order::positionInDouble(), RKPropagatorInS::propagateParametersOnCylinder(), TrackKinematicStatePropagator::propagateToTheTransversePCACharged(), CartesianStateAdaptor::rkstate(), TkRotation< align::Scalar >::rotateAxes(), VertexDistance3D::signedDistance(), Basic3DVector< long double >::theta(), Basic3DVector< align::Scalar >::theta(), transverse(), reco::PFDisplacedVertexSeed::updateSeedPoint(), and PV3DBase< long double, PointTag, GlobalTag >::z().
|
inline |
Cartesian z coordinate.
Definition at line 109 of file oldBasic3DVector.h.
Referenced by geometryXMLparser.Alignable::pos().
|
private |
Definition at line 252 of file oldBasic3DVector.h.
Referenced by Basic3DVector< align::Scalar >::operator*=(), and Basic3DVector< align::Scalar >::w().
|
private |
Definition at line 249 of file oldBasic3DVector.h.
Referenced by Basic3DVector< long double >::Basic3DVector(), Basic3DVector(), Basic3DVector< align::Scalar >::Basic3DVector(), Basic3DVector< long double >::operator*=(), Basic3DVector< align::Scalar >::operator*=(), Basic3DVector< align::Scalar >::operator-=(), Basic3DVector< align::Scalar >::operator/=(), transverse(), Basic3DVector< align::Scalar >::x(), Basic3DVector< long double >::xy(), and Basic3DVector< align::Scalar >::xy().
|
private |
Definition at line 250 of file oldBasic3DVector.h.
Referenced by Basic3DVector< long double >::Basic3DVector(), Basic3DVector< align::Scalar >::Basic3DVector(), Basic3DVector< align::Scalar >::operator*=(), Basic3DVector< align::Scalar >::operator-=(), Basic3DVector< align::Scalar >::operator/=(), transverse(), Basic3DVector< long double >::xy(), Basic3DVector< align::Scalar >::xy(), Basic3DVector< long double >::y(), and Basic3DVector< align::Scalar >::y().
|
private |
Definition at line 251 of file oldBasic3DVector.h.
Referenced by Basic3DVector< long double >::Basic3DVector(), Basic3DVector< align::Scalar >::Basic3DVector(), Basic3DVector< align::Scalar >::operator*=(), Basic3DVector< align::Scalar >::operator/=(), transverse(), Basic3DVector< long double >::z(), and Basic3DVector< align::Scalar >::z().
mathSSE::Vec4<T> Basic3DVector< T >::v |
Definition at line 220 of file newBasic3DVector.h.
Referenced by Basic3DVector< align::Scalar >::Basic3DVector(), Basic3DVector< align::Scalar >::cross(), Basic3DVector< align::Scalar >::dot(), LinearGridInterpolator3D::interpolate(), Basic3DVector< align::Scalar >::mag2(), PV3DBase< long double, PointTag, GlobalTag >::mathVector(), Basic3DVector< align::Scalar >::mathVector(), TkRotation< align::Scalar >::multiplyInverse(), TkRotation< align::Scalar >::operator*(), operator*(), Basic3DVector< align::Scalar >::operator*=(), Basic3DVector< align::Scalar >::operator+=(), Basic3DVector< align::Scalar >::operator-(), operator/(), Basic3DVector< align::Scalar >::operator==(), Basic3DVector< align::Scalar >::perp2(), TkRotation< align::Scalar >::rotate(), TkRotation< align::Scalar >::rotateBack(), TkRotation< align::Scalar >::TkRotation(), transverse(), Basic3DVector< align::Scalar >::w(), Basic3DVector< align::Scalar >::x(), Basic3DVector< align::Scalar >::xy(), Basic3DVector< align::Scalar >::y(), and Basic3DVector< align::Scalar >::z().