CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Public Attributes | Private Attributes
Basic3DVector< T > Class Template Reference

#include <newBasic3DVector.h>

Public Types

typedef
Geom::Cylindrical2Cartesian< T
Cylindrical
 
typedef
Geom::Cylindrical2Cartesian< T
Cylindrical
 
typedef mathSSE::Vec4< TMathVector
 
typedef Basic3DVector< TMathVector
 
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< TVectorType
 

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
 
MathVectormathVector ()
 
Basic3DVectoroperator*= (T t)
 Scaling by a scalar value (multiplication) More...
 
Basic3DVectoroperator*= (T t)
 Scaling by a scalar value (multiplication) More...
 
template<class U >
Basic3DVectoroperator+= (const Basic3DVector< U > &p)
 
template<class U >
Basic3DVectoroperator+= (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 >
Basic3DVectoroperator-= (const Basic3DVector< U > &p)
 
template<class U >
Basic3DVectoroperator-= (const Basic3DVector< U > &p)
 
Basic3DVectoroperator/= (T t)
 Scaling by a scalar value (division) More...
 
Basic3DVectoroperator/= (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< Tphi () const
 
Geom::Phi< Tphi () const
 
Geom::Theta< Ttheta () const
 
Geom::Theta< Ttheta () 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< Txy () const
 
Basic2DVector< Txy () 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< Tv
 

Private Attributes

T theW
 
T theX
 
T theY
 
T theZ
 

Detailed Description

template<typename T>
class Basic3DVector< T >

Definition at line 24 of file newBasic3DVector.h.

Member Typedef Documentation

template<typename T>
typedef Geom::Cylindrical2Cartesian<T> Basic3DVector< T >::Cylindrical

Definition at line 30 of file newBasic3DVector.h.

template<typename T>
typedef Geom::Cylindrical2Cartesian<T> Basic3DVector< T >::Cylindrical

Definition at line 34 of file oldBasic3DVector.h.

template<typename T>
typedef mathSSE::Vec4<T> Basic3DVector< T >::MathVector

Definition at line 29 of file newBasic3DVector.h.

template<typename T>
typedef Basic3DVector<T> Basic3DVector< T >::MathVector

Definition at line 30 of file oldBasic3DVector.h.

template<typename T>
typedef Spherical Basic3DVector< T >::Polar

Definition at line 32 of file newBasic3DVector.h.

template<typename T>
typedef Spherical Basic3DVector< T >::Polar

Definition at line 36 of file oldBasic3DVector.h.

template<typename T>
typedef T Basic3DVector< T >::ScalarType

Definition at line 27 of file newBasic3DVector.h.

template<typename T>
typedef T Basic3DVector< T >::ScalarType

Definition at line 33 of file oldBasic3DVector.h.

template<typename T>
typedef Geom::Spherical2Cartesian<T> Basic3DVector< T >::Spherical

Definition at line 31 of file newBasic3DVector.h.

template<typename T>
typedef Geom::Spherical2Cartesian<T> Basic3DVector< T >::Spherical

Definition at line 35 of file oldBasic3DVector.h.

template<typename T>
typedef mathSSE::Vec4<T> Basic3DVector< T >::VectorType

Definition at line 28 of file newBasic3DVector.h.

Constructor & Destructor Documentation

template<typename T>
Basic3DVector< T >::Basic3DVector ( )
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-().

38 {}
template<typename T>
Basic3DVector< T >::Basic3DVector ( const Basic3DVector< T > &  p)
inline

Copy constructor from same type. Should not be needed but for gcc bug 12685.

Definition at line 41 of file newBasic3DVector.h.

41  :
42  v(p.v) {}
mathSSE::Vec4< T > v
template<typename T>
template<class U >
Basic3DVector< T >::Basic3DVector ( const Basic3DVector< U > &  p)
inline

Copy constructor and implicit conversion from Basic3DVector of different precision.

Definition at line 46 of file newBasic3DVector.h.

46  :
47  v(p.v) {}
mathSSE::Vec4< T > v
template<typename T>
Basic3DVector< T >::Basic3DVector ( const Basic2DVector< T > &  p)
inline

constructor from 2D vector (X and Y from 2D vector, z set to zero)

Definition at line 51 of file newBasic3DVector.h.

51  :
52  v(p.x(),p.y(),0) {}
mathSSE::Vec4< T > v
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
template<typename T>
template<class OtherPoint >
Basic3DVector< T >::Basic3DVector ( const OtherPoint &  p)
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.

64  :
65  v(p.x(),p.y(),p.z()) {}
mathSSE::Vec4< T > v
template<typename T>
template<class U >
Basic3DVector< T >::Basic3DVector ( mathSSE::Vec4< U > const &  iv)
inline

Definition at line 70 of file newBasic3DVector.h.

70 : v(iv){}
mathSSE::Vec4< T > v
template<typename T>
Basic3DVector< T >::Basic3DVector ( const T x,
const T y,
const T z,
const T w = 0 
)
inline

construct from cartesian coordinates

Definition at line 73 of file newBasic3DVector.h.

73  :
74  v(x,y,z,w){}
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T z() const
Cartesian z coordinate.
mathSSE::Vec4< T > v
template<typename T>
template<typename U >
Basic3DVector< T >::Basic3DVector ( const Geom::Theta< U > &  theta,
const Geom::Phi< U > &  phi,
const T r 
)
inline

Deprecated construct from polar coordinates, use
Basic3DVector<T>( Basic3DVector<T>::Polar( theta, phi, r)) instead.

Definition at line 81 of file newBasic3DVector.h.

82  {
83  Polar p( theta.value(), phi.value(), r);
84  v.o.theX = p.x(); v.o.theY = p.y(); v.o.theZ = p.z();
85  }
mathSSE::Vec4< T > v
T value() const
Explicit access to value in case implicit conversion not OK.
Definition: Theta.h:25
T value() const
Explicit access to value in case implicit conversion not OK.
Definition: Phi.h:38
template<typename T>
Basic3DVector< T >::Basic3DVector ( )
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.

template<typename T>
Basic3DVector< T >::Basic3DVector ( const Basic3DVector< T > &  p)
inline

Copy constructor from same type. Should not be needed but for gcc bug 12685.

Definition at line 45 of file oldBasic3DVector.h.

45  :
46  theX(p.x()), theY(p.y()), theZ(p.z()), theW(p.w()) {}
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T z() const
Cartesian z coordinate.
template<typename T>
template<class U >
Basic3DVector< T >::Basic3DVector ( const Basic3DVector< U > &  p)
inline

Copy constructor and implicit conversion from Basic3DVector of different precision.

Definition at line 50 of file oldBasic3DVector.h.

50  :
51  theX(p.x()), theY(p.y()), theZ(p.z()), theW(p.w()) {}
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T z() const
Cartesian z coordinate.
template<typename T>
Basic3DVector< T >::Basic3DVector ( const Basic2DVector< T > &  p)
inline

constructor from 2D vector (X and Y from 2D vector, z set to zero)

Definition at line 54 of file oldBasic3DVector.h.

54  :
55  theX(p.x()), theY(p.y()), theZ(0), theW(0) {}
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
template<typename T>
template<class OtherPoint >
Basic3DVector< T >::Basic3DVector ( const OtherPoint &  p)
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.

template<typename T>
template<typename U >
Basic3DVector< T >::Basic3DVector ( mathSSE::Vec4< U > const &  iv)
inline

Definition at line 73 of file oldBasic3DVector.h.

73  :
74  theX(iv.arr[0]), theY(iv.arr[1]), theZ(iv.arr[2]), theW(0) {}
template<typename T>
Basic3DVector< T >::Basic3DVector ( const T x,
const T y,
const T z,
const T w = 0 
)
inline

construct from cartesian coordinates

Definition at line 79 of file oldBasic3DVector.h.

79  :
80  theX(x), theY(y), theZ(z), theW(w) {}
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T z() const
Cartesian z coordinate.
template<typename T>
template<typename U >
Basic3DVector< T >::Basic3DVector ( const Geom::Theta< U > &  theta,
const Geom::Phi< U > &  phi,
const T r 
)
inline

Deprecated construct from polar coordinates, use
Basic3DVector<T>( Basic3DVector<T>::Polar( theta, phi, r)) instead.

Definition at line 96 of file oldBasic3DVector.h.

97  {
98  Polar p( theta.value(), phi.value(), r);
99  theX = p.x(); theY = p.y(); theZ = p.z();
100  }
T value() const
Explicit access to value in case implicit conversion not OK.
Definition: Theta.h:25
T value() const
Explicit access to value in case implicit conversion not OK.
Definition: Phi.h:38

Member Function Documentation

template<typename T>
T Basic3DVector< T >::barePhi ( ) const
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().

128 {return std::atan2(y(),x());}
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
template<typename T>
T Basic3DVector< T >::barePhi ( ) const
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.

141 {return std::atan2(y(),x());}
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
template<typename T>
T Basic3DVector< T >::bareTheta ( ) const
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().

135 {return std::atan2(perp(),z());}
T z() const
Cartesian z coordinate.
T perp() const
Magnitude of transverse component.
template<typename T>
T Basic3DVector< T >::bareTheta ( ) const
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.

148 {return std::atan2(perp(),z());}
T z() const
Cartesian z coordinate.
T perp() const
Magnitude of transverse component.
template<typename T>
Basic3DVector Basic3DVector< T >::cross ( const Basic3DVector< T > &  lh) const
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().

202  {
203  return ::cross(v,lh.v);
204  }
mathSSE::Vec4< T > v
Basic3DVector cross(const Basic3DVector &v) const
Vector product, or &quot;cross&quot; product, with a vector of same type.
template<typename T>
template<class U >
Basic3DVector<typename PreciseFloatType<T,U>::Type> Basic3DVector< T >::cross ( const Basic3DVector< U > &  lh) const
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.

214  {
217  }
Basic3DVector cross(const Basic3DVector &lh) const
Vector product, or &quot;cross&quot; product, with a vector of same type.
template<typename T>
Basic3DVector Basic3DVector< T >::cross ( const Basic3DVector< T > &  v) const
inline

Vector product, or "cross" product, with a vector of same type.

Definition at line 228 of file oldBasic3DVector.h.

228  {
229  return Basic3DVector( y()*v.z() - v.y()*z(),
230  z()*v.x() - v.z()*x(),
231  x()*v.y() - v.x()*y());
232  }
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T z() const
Cartesian z coordinate.
template<typename T>
template<class U >
Basic3DVector<typename PreciseFloatType<T,U>::Type> Basic3DVector< T >::cross ( const Basic3DVector< U > &  v) const
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.

242  {
243  return Basic3DVector<typename PreciseFloatType<T,U>::Type>( y()*v.z() - v.y()*z(),
244  z()*v.x() - v.z()*x(),
245  x()*v.y() - v.x()*y());
246  }
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T z() const
Cartesian z coordinate.
template<typename T>
T Basic3DVector< T >::dot ( const Basic3DVector< T > &  rh) const
inline
template<typename T>
template<class U >
PreciseFloatType<T,U>::Type Basic3DVector< T >::dot ( const Basic3DVector< U > &  lh) const
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.

196  {
199  }
T dot(const Basic3DVector &rh) const
Scalar product, or &quot;dot&quot; product, with a vector of same type.
template<typename T>
T Basic3DVector< T >::dot ( const Basic3DVector< T > &  v) const
inline

Scalar product, or "dot" product, with a vector of same type.

Definition at line 213 of file oldBasic3DVector.h.

213  {
214  return x()*v.x() + y()*v.y() + z()*v.z();
215  }
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T z() const
Cartesian z coordinate.
template<typename T>
template<class U >
PreciseFloatType<T,U>::Type Basic3DVector< T >::dot ( const Basic3DVector< U > &  v) const
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.

223  {
224  return x()*v.x() + y()*v.y() + z()*v.z();
225  }
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T z() const
Cartesian z coordinate.
template<typename T>
T Basic3DVector< T >::eta ( ) const
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().

143 { return detailsBasic3DVector::eta(x(),y(),z());} // correct
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T eta() const
T z() const
Cartesian z coordinate.
template<typename T>
T Basic3DVector< T >::eta ( ) const
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.

156 { return detailsBasic3DVector::eta(x(),y(),z());} // correct
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T eta() const
T z() const
Cartesian z coordinate.
template<typename T>
T Basic3DVector< T >::mag ( ) const
inline
template<typename T>
T Basic3DVector< T >::mag ( ) const
inline

The vector magnitude. Equivalent to sqrt(vec.mag2())

Definition at line 126 of file oldBasic3DVector.h.

126 { return std::sqrt( mag2());}
T sqrt(T t)
Definition: SSEVec.h:46
T mag2() const
The vector magnitude squared. Equivalent to vec.dot(vec)
template<typename T>
T Basic3DVector< T >::mag2 ( ) const
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().

110 { return ::dot(v,v);}
mathSSE::Vec4< T > v
T dot(const Basic3DVector &v) const
Scalar product, or &quot;dot&quot; product, with a vector of same type.
template<typename T>
T Basic3DVector< T >::mag2 ( ) const
inline

The vector magnitude squared. Equivalent to vec.dot(vec)

Definition at line 123 of file oldBasic3DVector.h.

123 { return x()*x() + y()*y()+z()*z();}
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T z() const
Cartesian z coordinate.
template<typename T>
MathVector const& Basic3DVector< T >::mathVector ( ) const
inline

Definition at line 87 of file newBasic3DVector.h.

87 { return v;}
mathSSE::Vec4< T > v
template<typename T>
MathVector& Basic3DVector< T >::mathVector ( )
inline

Definition at line 88 of file newBasic3DVector.h.

88 { return v;}
mathSSE::Vec4< T > v
template<typename T>
Basic3DVector& Basic3DVector< T >::operator*= ( T  t)
inline

Scaling by a scalar value (multiplication)

Definition at line 173 of file newBasic3DVector.h.

173  {
174  v = t*v;
175  return *this;
176  }
mathSSE::Vec4< T > v
template<typename T>
Basic3DVector& Basic3DVector< T >::operator*= ( T  t)
inline

Scaling by a scalar value (multiplication)

Definition at line 194 of file oldBasic3DVector.h.

194  {
195  theX *= t;
196  theY *= t;
197  theZ *= t;
198  theW *= t;;
199  return *this;
200  }
template<typename T>
template<class U >
Basic3DVector& Basic3DVector< T >::operator+= ( const Basic3DVector< U > &  p)
inline

Operator += with a Basic3DVector of possibly different precision.

Definition at line 156 of file newBasic3DVector.h.

156  {
157  v = v + p.v;
158  return *this;
159  }
mathSSE::Vec4< T > v
template<typename T>
template<class U >
Basic3DVector& Basic3DVector< T >::operator+= ( const Basic3DVector< U > &  p)
inline

Operator += with a Basic3DVector of possibly different precision.

Definition at line 171 of file oldBasic3DVector.h.

171  {
172  theX += p.x();
173  theY += p.y();
174  theZ += p.z();
175  theW += p.w();
176  return *this;
177  }
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T z() const
Cartesian z coordinate.
template<typename T>
Basic3DVector Basic3DVector< T >::operator- ( ) const
inline

Unary minus, returns a vector with components (-x(),-y(),-z())

Definition at line 170 of file newBasic3DVector.h.

170 { return Basic3DVector(-v);}
mathSSE::Vec4< T > v
template<typename T>
Basic3DVector Basic3DVector< T >::operator- ( ) const
inline

Unary minus, returns a vector with components (-x(),-y(),-z())

Definition at line 191 of file oldBasic3DVector.h.

191 { return Basic3DVector(-x(),-y(),-z());}
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T z() const
Cartesian z coordinate.
template<typename T>
template<class U >
Basic3DVector& Basic3DVector< T >::operator-= ( const Basic3DVector< U > &  p)
inline

Operator -= with a Basic3DVector of possibly different precision.

Definition at line 164 of file newBasic3DVector.h.

164  {
165  v = v - p.v;
166  return *this;
167  }
mathSSE::Vec4< T > v
template<typename T>
template<class U >
Basic3DVector& Basic3DVector< T >::operator-= ( const Basic3DVector< U > &  p)
inline

Operator -= with a Basic3DVector of possibly different precision.

Definition at line 182 of file oldBasic3DVector.h.

182  {
183  theX -= p.x();
184  theY -= p.y();
185  theZ -= p.z();
186  theW -= p.w();
187  return *this;
188  }
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T z() const
Cartesian z coordinate.
template<typename T>
Basic3DVector& Basic3DVector< T >::operator/= ( T  t)
inline

Scaling by a scalar value (division)

Definition at line 179 of file newBasic3DVector.h.

179  {
180  //t = T(1)/t;
181  v = v/t;
182  return *this;
183  }
mathSSE::Vec4< T > v
template<typename T>
Basic3DVector& Basic3DVector< T >::operator/= ( T  t)
inline

Scaling by a scalar value (division)

Definition at line 203 of file oldBasic3DVector.h.

203  {
204  t = T(1)/t;
205  theX *= t;
206  theY *= t;
207  theZ *= t;
208  theW *= t;;
209  return *this;
210  }
long double T
template<typename T>
bool Basic3DVector< T >::operator== ( const Basic3DVector< T > &  rh) const
inline

Definition at line 105 of file newBasic3DVector.h.

105  {
106  return v==rh.v;
107  }
mathSSE::Vec4< T > v
template<typename T>
bool Basic3DVector< T >::operator== ( const Basic3DVector< T > &  rh) const
inline

Definition at line 118 of file oldBasic3DVector.h.

118  {
119  return x()==rh.x() && y()==rh.y() && z()==rh.z();
120  }
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
T z() const
Cartesian z coordinate.
template<typename T>
T Basic3DVector< T >::perp ( ) const
inline
template<typename T>
T Basic3DVector< T >::perp ( ) const
inline

Magnitude of transverse component.

Definition at line 132 of file oldBasic3DVector.h.

132 { return std::sqrt( perp2());}
T perp2() const
Squared magnitude of transverse component.
T sqrt(T t)
Definition: SSEVec.h:46
template<typename T>
T Basic3DVector< T >::perp2 ( ) const
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().

116 { return ::dotxy(v,v);}
mathSSE::Vec4< T > v
template<typename T>
T Basic3DVector< T >::perp2 ( ) const
inline

Squared magnitude of transverse component.

Definition at line 129 of file oldBasic3DVector.h.

129 { return x()*x() + y()*y();}
T y() const
Cartesian y coordinate.
T x() const
Cartesian x coordinate.
template<typename T>
Geom::Phi<T> Basic3DVector< T >::phi ( ) const
inline
template<typename T>
Geom::Phi<T> Basic3DVector< T >::phi ( ) const
inline

Definition at line 142 of file oldBasic3DVector.h.

142 {return Geom::Phi<T>(barePhi());}
T barePhi() const
Definition: Phi.h:20
template<typename T>
Geom::Theta<T> Basic3DVector< T >::theta ( ) const
inline

Definition at line 136 of file newBasic3DVector.h.

Referenced by AlCaHOCalibProducer::produce(), PV3DBase< long double, PointTag, GlobalTag >::theta(), and TkRotation< align::Scalar >::TkRotation().

136 {return Geom::Theta<T>(std::atan2(perp(),z()));}
T z() const
Cartesian z coordinate.
T perp() const
Magnitude of transverse component.
template<typename T>
Geom::Theta<T> Basic3DVector< T >::theta ( ) const
inline

Definition at line 149 of file oldBasic3DVector.h.

149 {return Geom::Theta<T>(std::atan2(perp(),z()));}
T z() const
Cartesian z coordinate.
T perp() const
Magnitude of transverse component.
template<typename T>
T Basic3DVector< T >::transverse ( ) const
inline
template<typename T>
T Basic3DVector< T >::transverse ( ) const
inline

Another name for perp()

Definition at line 135 of file oldBasic3DVector.h.

135 { return perp();}
T perp() const
Magnitude of transverse component.
template<typename T>
Basic3DVector Basic3DVector< T >::unit ( ) const
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().

148  {
149  T my_mag = mag2();
150  return (0!=my_mag) ? (*this)*(T(1)/std::sqrt(my_mag)) : *this;
151  }
T sqrt(T t)
Definition: SSEVec.h:46
long double T
T mag2() const
The vector magnitude squared. Equivalent to vec.dot(vec)
template<typename T>
Basic3DVector Basic3DVector< T >::unit ( ) const
inline

Unit vector parallel to this. If mag() is zero, a zero vector is returned.

Definition at line 161 of file oldBasic3DVector.h.

161  {
162  T my_mag = mag2();
163  if (my_mag==0) return *this;
164  my_mag = T(1)/std::sqrt(my_mag);
165  return *this * my_mag;
166  }
T sqrt(T t)
Definition: SSEVec.h:46
long double T
T mag2() const
The vector magnitude squared. Equivalent to vec.dot(vec)
template<typename T>
T Basic3DVector< T >::w ( ) const
inline

Definition at line 100 of file newBasic3DVector.h.

Referenced by operator*().

100 { return v.o.theW;}
mathSSE::Vec4< T > v
template<typename T>
T Basic3DVector< T >::w ( ) const
inline

Definition at line 111 of file oldBasic3DVector.h.

111 { return theW;}
template<typename T>
T Basic3DVector< T >::x ( ) const
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().

92 { return v.o.theX;}
mathSSE::Vec4< T > v
template<typename T>
T Basic3DVector< T >::x ( ) const
inline
template<typename T>
Basic2DVector<T> Basic3DVector< T >::xy ( ) const
inline

Definition at line 102 of file newBasic3DVector.h.

Referenced by geometryXMLparser.Alignable::covariance(), and ThirdHitPredictionFromInvParabola::init().

102 { return v.xy();}
mathSSE::Vec4< T > v
template<typename T>
Basic2DVector<T> Basic3DVector< T >::xy ( ) const
inline
template<typename T>
T Basic3DVector< T >::y ( ) const
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().

95 { return v.o.theY;}
mathSSE::Vec4< T > v
template<typename T>
T Basic3DVector< T >::y ( ) const
inline
template<typename T>
T Basic3DVector< T >::z ( ) const
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().

98 { return v.o.theZ;}
mathSSE::Vec4< T > v
template<typename T>
T Basic3DVector< T >::z ( ) const
inline

Cartesian z coordinate.

Definition at line 109 of file oldBasic3DVector.h.

Referenced by geometryXMLparser.Alignable::pos().

109 { return theZ;}

Member Data Documentation

template<typename T>
T Basic3DVector< T >::theW
private
template<typename T>
T Basic3DVector< T >::theX
private
template<typename T>
T Basic3DVector< T >::theY
private
template<typename T>
T Basic3DVector< T >::theZ
private
template<typename T>
mathSSE::Vec4<T> Basic3DVector< T >::v