CMS 3D CMS Logo

Classes | Namespaces | Typedefs | Functions | Variables
extBasic2DVector.h File Reference
#include "DataFormats/GeometryVector/interface/Phi.h"
#include "DataFormats/GeometryVector/interface/PreciseFloatType.h"
#include "DataFormats/GeometryVector/interface/CoordinateSets.h"
#include "DataFormats/Math/interface/ExtVec.h"
#include <cmath>
#include <iosfwd>

Go to the source code of this file.

Classes

class  Basic2DVector< T >
 

Namespaces

 geometryDetails
 

Typedefs

typedef Basic2DVector< double > Basic2DVectorD
 
typedef Basic2DVector< float > Basic2DVectorF
 

Functions

template<class T >
T operator* (const Basic2DVector< T > &v1, const Basic2DVector< T > &v2)
 
template<class T , class U >
PreciseFloatType< T, U >::Type operator* (const Basic2DVector< T > &v1, const Basic2DVector< U > &v2)
 scalar product of vectors of different precision More...
 
template<class T >
Basic2DVector< Toperator* (const Basic2DVector< T > &v, T t)
 
template<class T >
Basic2DVector< Toperator* (T t, const Basic2DVector< T > &v)
 Same as operator*( Vector, Scalar) More...
 
template<class T , class Scalar >
Basic2DVector< Toperator* (const Basic2DVector< T > &v, const Scalar &s)
 
template<class T , class Scalar >
Basic2DVector< Toperator* (const Scalar &s, const Basic2DVector< T > &v)
 Same as operator*( Vector, Scalar) More...
 
template<class T >
Basic2DVector< Toperator+ (const Basic2DVector< T > &a, const Basic2DVector< T > &b)
 vector sum and subtraction of vectors of possibly different precision More...
 
template<class T , class U >
Basic2DVector< typename PreciseFloatType< T, U >::Type > operator+ (const Basic2DVector< T > &a, const Basic2DVector< U > &b)
 
template<class T >
Basic2DVector< Toperator- (const Basic2DVector< T > &a, const Basic2DVector< T > &b)
 
template<class T , class U >
Basic2DVector< typename PreciseFloatType< T, U >::Type > operator- (const Basic2DVector< T > &a, const Basic2DVector< U > &b)
 
template<class T >
Basic2DVector< Toperator/ (const Basic2DVector< T > &v, T t)
 
template<class T , class Scalar >
Basic2DVector< Toperator/ (const Basic2DVector< T > &v, const Scalar &s)
 
template<class T >
std::ostream & operator<< (std::ostream &s, const Basic2DVector< T > &v)
 simple text output to standard streams More...
 
std::ostream & geometryDetails::print2D (std::ostream &s, double x, double y)
 

Variables

class Basic2DVector __attribute__
 

Typedef Documentation

◆ Basic2DVectorD

typedef Basic2DVector<double> Basic2DVectorD

Definition at line 242 of file extBasic2DVector.h.

◆ Basic2DVectorF

typedef Basic2DVector<float> Basic2DVectorF

Definition at line 241 of file extBasic2DVector.h.

Function Documentation

◆ operator*() [1/6]

template<class T >
T operator* ( const Basic2DVector< T > &  v1,
const Basic2DVector< T > &  v2 
)
inline

Definition at line 189 of file extBasic2DVector.h.

189  {
190  return v1.dot(v2);
191 }

◆ operator*() [2/6]

template<class T , class U >
PreciseFloatType<T, U>::Type operator* ( const Basic2DVector< T > &  v1,
const Basic2DVector< U > &  v2 
)
inline

scalar product of vectors of different precision

Definition at line 195 of file extBasic2DVector.h.

195  {
196  return v1.dot(v2);
197 }

◆ operator*() [3/6]

template<class T >
Basic2DVector<T> operator* ( const Basic2DVector< T > &  v,
T  t 
)
inline

Multiplication by scalar, does not change the precision of the vector. The return type is the same as the type of the vector argument.

Definition at line 203 of file extBasic2DVector.h.

References submitPVValidationJobs::t, and findQualityFiles::v.

203  {
204  return v.v * t;
205 }

◆ operator*() [4/6]

template<class T >
Basic2DVector<T> operator* ( T  t,
const Basic2DVector< T > &  v 
)
inline

Same as operator*( Vector, Scalar)

Definition at line 209 of file extBasic2DVector.h.

References submitPVValidationJobs::t, and findQualityFiles::v.

209  {
210  return v.v * t;
211 }

◆ operator*() [5/6]

template<class T , class Scalar >
Basic2DVector<T> operator* ( const Basic2DVector< T > &  v,
const Scalar &  s 
)
inline

Definition at line 214 of file extBasic2DVector.h.

References alignCSCRings::s, submitPVValidationJobs::t, and findQualityFiles::v.

214  {
215  T t = static_cast<T>(s);
216  return v * t;
217 }
long double T

◆ operator*() [6/6]

template<class T , class Scalar >
Basic2DVector<T> operator* ( const Scalar &  s,
const Basic2DVector< T > &  v 
)
inline

Same as operator*( Vector, Scalar)

Definition at line 221 of file extBasic2DVector.h.

References alignCSCRings::s, submitPVValidationJobs::t, and findQualityFiles::v.

221  {
222  T t = static_cast<T>(s);
223  return v * t;
224 }
long double T

◆ operator+() [1/2]

template<class T >
Basic2DVector<T> operator+ ( const Basic2DVector< T > &  a,
const Basic2DVector< T > &  b 
)
inline

vector sum and subtraction of vectors of possibly different precision

Definition at line 165 of file extBasic2DVector.h.

References a, and b.

165  {
166  return a.v + b.v;
167 }
double b
Definition: hdecay.h:118
double a
Definition: hdecay.h:119

◆ operator+() [2/2]

template<class T , class U >
Basic2DVector<typename PreciseFloatType<T, U>::Type> operator+ ( const Basic2DVector< T > &  a,
const Basic2DVector< U > &  b 
)
inline

Definition at line 174 of file extBasic2DVector.h.

References a, and b.

175  {
177  return RT(a) + RT(b);
178 }
double b
Definition: hdecay.h:118
double a
Definition: hdecay.h:119

◆ operator-() [1/2]

template<class T >
Basic2DVector<T> operator- ( const Basic2DVector< T > &  a,
const Basic2DVector< T > &  b 
)
inline

Definition at line 169 of file extBasic2DVector.h.

References a, and b.

169  {
170  return a.v - b.v;
171 }
double b
Definition: hdecay.h:118
double a
Definition: hdecay.h:119

◆ operator-() [2/2]

template<class T , class U >
Basic2DVector<typename PreciseFloatType<T, U>::Type> operator- ( const Basic2DVector< T > &  a,
const Basic2DVector< U > &  b 
)
inline

Definition at line 181 of file extBasic2DVector.h.

References a, and b.

182  {
184  return RT(a) - RT(b);
185 }
double b
Definition: hdecay.h:118
double a
Definition: hdecay.h:119

◆ operator/() [1/2]

template<class T >
Basic2DVector<T> operator/ ( const Basic2DVector< T > &  v,
T  t 
)
inline

Division by scalar, does not change the precision of the vector. The return type is the same as the type of the vector argument.

Definition at line 230 of file extBasic2DVector.h.

References submitPVValidationJobs::t, and findQualityFiles::v.

230  {
231  return v.v / t;
232 }

◆ operator/() [2/2]

template<class T , class Scalar >
Basic2DVector<T> operator/ ( const Basic2DVector< T > &  v,
const Scalar &  s 
)
inline

Definition at line 235 of file extBasic2DVector.h.

References alignCSCRings::s, submitPVValidationJobs::t, and findQualityFiles::v.

235  {
236  // T t = static_cast<T>(Scalar(1)/s); return v*t;
237  T t = static_cast<T>(s);
238  return v / t;
239 }
long double T

◆ operator<<()

template<class T >
std::ostream& operator<< ( std::ostream &  s,
const Basic2DVector< T > &  v 
)
inline

simple text output to standard streams

Definition at line 159 of file extBasic2DVector.h.

References geometryDetails::print2D(), alignCSCRings::s, and findQualityFiles::v.

159  {
160  return geometryDetails::print2D(s, v.x(), v.y());
161 }
std::ostream & print2D(std::ostream &s, double x, double y)
Definition: print.cc:8

Variable Documentation

◆ __attribute__

class Basic2DVector __attribute__