CMS 3D CMS Logo

Classes | Functions
Point3DBase.h File Reference
#include "DataFormats/GeometryVector/interface/PointTag.h"
#include "DataFormats/GeometryVector/interface/PV3DBase.h"
#include "DataFormats/GeometryVector/interface/Point2DBase.h"
#include "DataFormats/GeometryVector/interface/Vector3DBase.h"

Go to the source code of this file.

Classes

class  Point3DBase< T, FrameTag >
 

Functions

template<typename T , typename U , class Frame >
Point3DBase< typename PreciseFloatType< T, U >::Type, Frame > operator+ (const Point3DBase< T, Frame > &p, const Vector3DBase< U, Frame > &v)
 
template<typename T , typename U , class Frame >
Point3DBase< typename PreciseFloatType< T, U >::Type, Frame > operator+ (const Vector3DBase< T, Frame > &p, const Point3DBase< U, Frame > &v)
 
template<typename T , typename U , class Frame >
Vector3DBase< typename PreciseFloatType< T, U >::Type, Frame > operator- (const Point3DBase< T, Frame > &p1, const Point3DBase< U, Frame > &p2)
 
template<typename T , typename U , class Frame >
Point3DBase< typename PreciseFloatType< T, U >::Type, Frame > operator- (const Point3DBase< T, Frame > &p, const Vector3DBase< U, Frame > &v)
 

Function Documentation

◆ operator+() [1/2]

template<typename T , typename U , class Frame >
Point3DBase<typename PreciseFloatType<T, U>::Type, Frame> operator+ ( const Point3DBase< T, Frame > &  p,
const Vector3DBase< U, Frame > &  v 
)
inline

The sum of a Point and a Vector is a Point. The arguments must be defined in the same reference frame. The resulting point has the higher precision of the precisions of the two arguments.

Definition at line 83 of file Point3DBase.h.

References AlCaHLTBitMon_ParallelJobs::p, and findQualityFiles::v.

84  {
86  return RT(p.basicVector() + v.basicVector());
87 }
std::bitset< TTBV::S_ > Frame
Definition: TTTypes.h:58

◆ operator+() [2/2]

template<typename T , typename U , class Frame >
Point3DBase<typename PreciseFloatType<T, U>::Type, Frame> operator+ ( const Vector3DBase< T, Frame > &  p,
const Point3DBase< U, Frame > &  v 
)
inline

Same as operator+(Point,Vector) (see above)

Definition at line 92 of file Point3DBase.h.

References AlCaHLTBitMon_ParallelJobs::p, and findQualityFiles::v.

93  {
95  return RT(p.basicVector() + v.basicVector());
96 }
std::bitset< TTBV::S_ > Frame
Definition: TTTypes.h:58

◆ operator-() [1/2]

template<typename T , typename U , class Frame >
Vector3DBase<typename PreciseFloatType<T, U>::Type, Frame> operator- ( const Point3DBase< T, Frame > &  p1,
const Point3DBase< U, Frame > &  p2 
)
inline

The difference of two points is a vector. The arguments must be defined in the same reference frame. The resulting vector has the higher precision of the precisions of the two arguments.

Definition at line 103 of file Point3DBase.h.

References LaserDQM_cfg::p1, and SiStripOfflineCRack_cfg::p2.

104  {
106  return RT(p1.basicVector() - p2.basicVector());
107 }
std::bitset< TTBV::S_ > Frame
Definition: TTTypes.h:58

◆ operator-() [2/2]

template<typename T , typename U , class Frame >
Point3DBase<typename PreciseFloatType<T, U>::Type, Frame> operator- ( const Point3DBase< T, Frame > &  p,
const Vector3DBase< U, Frame > &  v 
)
inline

The difference of a Point and a Vector is a Point. The arguments must be defined in the same reference frame. The resulting point has the higher precision of the precisions of the two arguments.

Definition at line 114 of file Point3DBase.h.

References AlCaHLTBitMon_ParallelJobs::p, and findQualityFiles::v.

115  {
117  return RT(p.basicVector() - v.basicVector());
118 }
std::bitset< TTBV::S_ > Frame
Definition: TTTypes.h:58