CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Typedefs | Functions
ExtVec.h File Reference
#include <type_traits>
#include <iosfwd>

Go to the source code of this file.

Classes

struct  As3D< V >
 
struct  ExtVecTraits< T, N >
 
struct  Rot2< T >
 
struct  Rot3< T >
 

Typedefs

typedef float __attribute__ ((vector_size(8))) float32x2_t
 
template<typename T , int N>
using ExtVec = typename ExtVecTraits< T, N >::type
 
typedef Rot2< double > Rot2D
 
typedef Rot2< float > Rot2F
 
typedef Rot3< double > Rot3D
 
typedef Rot3< float > Rot3F
 
template<typename T >
using Vec2 = ExtVec< T, 2 >
 
typedef Vec2< double > Vec2D
 
typedef Vec2< float > Vec2F
 
typedef Vec4< double > Vec3D
 
typedef Vec4< float > Vec3F
 
template<typename T >
using Vec4 = ExtVec< T, 4 >
 
typedef Vec4< double > Vec4D
 
typedef Vec4< float > Vec4F
 

Functions

template<typename Vec , typename F >
Vec apply (Vec v, F f)
 
template<typename V >
As3D< V > as3D (V const &v)
 
template<typename V1 , typename V2 >
auto cross2 (V1 x, V2 y) -> typename std::remove_reference< decltype(x[0])>::type
 
template<typename Vec >
Vec cross3 (Vec x, Vec y)
 
template<typename V >
auto dot (V x, V y) -> typenamestd::remove_reference< decltype(x[0])>::type
 
template<typename V1 , typename V2 >
auto dot2 (V1 x, V2 y) -> typenamestd::remove_reference< decltype(x[0])>::type
 
template<typename T >
constexpr Rot3< Toperator* (Rot3< T > const &rh, Rot3< T > const &lh)
 
template<typename T >
constexpr Rot2< Toperator* (Rot2< T > const &rh, Rot2< T > const &lh)
 
std::ostream & operator<< (std::ostream &out, Vec2D const &v)
 
std::ostream & operator<< (std::ostream &out, Vec2F const &v)
 
std::ostream & operator<< (std::ostream &out, Vec4F const &v)
 
std::ostream & operator<< (std::ostream &out, Vec4D const &v)
 
std::ostream & operator<< (std::ostream &out, As3D< Vec4F > const &v)
 
std::ostream & operator<< (std::ostream &out, As3D< Vec4D > const &v)
 
std::ostream & operator<< (std::ostream &out, Rot3F const &v)
 
std::ostream & operator<< (std::ostream &out, Rot3D const &v)
 
std::ostream & operator<< (std::ostream &out, Rot2F const &v)
 
std::ostream & operator<< (std::ostream &out, Rot2D const &v)
 
template<typename V >
auto xy (V v) -> Vec2< typenamestd::remove_reference< decltype(v[0])>::type >
 
template<typename V >
auto zw (V v) -> Vec2< typenamestd::remove_reference< decltype(v[0])>::type >
 

Typedef Documentation

float __attribute__
inline

Definition at line 6 of file ExtVec.h.

template<typename T , int N>
using ExtVec = typename ExtVecTraits<T,N>::type

Definition at line 21 of file ExtVec.h.

typedef Rot2<double> Rot2D

Definition at line 265 of file ExtVec.h.

typedef Rot2<float> Rot2F

Definition at line 263 of file ExtVec.h.

typedef Rot3<double> Rot3D

Definition at line 205 of file ExtVec.h.

typedef Rot3<float> Rot3F

Definition at line 203 of file ExtVec.h.

template<typename T >
using Vec2 = ExtVec<T,2>

Definition at line 24 of file ExtVec.h.

typedef Vec2<double> Vec2D

Definition at line 124 of file ExtVec.h.

typedef Vec2<float> Vec2F

Definition at line 121 of file ExtVec.h.

typedef Vec4<double> Vec3D

Definition at line 125 of file ExtVec.h.

typedef Vec4<float> Vec3F

Definition at line 123 of file ExtVec.h.

template<typename T >
using Vec4 = ExtVec<T,4>

Definition at line 23 of file ExtVec.h.

typedef Vec4<double> Vec4D

Definition at line 126 of file ExtVec.h.

typedef Vec4<float> Vec4F

Definition at line 122 of file ExtVec.h.

Function Documentation

template<typename Vec , typename F >
Vec apply ( Vec  v,
F  f 
)
inline

Definition at line 44 of file ExtVec.h.

References constexpr, f, i, N, and run_regression::ret.

Referenced by BeautifulSoup.Tag::__call__(), reco::BinOp< A, Operation, B >::operator()(), and python.multivaluedict::sort().

44  {
46  constexpr int N = sizeof(Vec)/sizeof(T);
47  Vec ret;
48  for (int i=0;i!=N;++i) ret[i] = f(v[i]);
49  return ret;
50 }
type
Definition: HCALResponse.h:21
int i
Definition: DBlmapReader.cc:9
double f[11][100]
#define N
Definition: blowfish.cc:9
long double T
#define constexpr
template<typename V >
As3D<V> as3D ( V const &  v)
inline

Definition at line 144 of file ExtVec.h.

References findQualityFiles::v.

144 { return v;}
template<typename V1 , typename V2 >
auto cross2 ( V1  x,
V2  y 
) -> typename std::remove_reference<decltype(x[0])>::type
inline

Definition at line 67 of file ExtVec.h.

References x, and detailsBasic3DVector::y.

Referenced by Conv::convolution(), and Basic2DVector< TmpType >::cross().

67  {
68  return x[0]*y[1]-x[1]*y[0];
69 }
Definition: DDAxes.h:10
template<typename Vec >
Vec cross3 ( Vec  x,
Vec  y 
)
inline

Definition at line 55 of file ExtVec.h.

55  {
56  // typedef Vec4<T> Vec;
57  // yz - zy, zx - xz, xy - yx, 0
58  Vec x1200{ x[1], x[2], x[0], x[0] };
59  Vec y2010{ y[2], y[0], y[1], y[0] };
60  Vec x2010{ x[2], x[0], x[1], x[0] };
61  Vec y1200{ y[1], y[2], y[0], y[0] };
62  return x1200 * y2010 - x2010 * y1200;
63 }
Definition: DDAxes.h:10
template<typename V >
auto dot ( x,
y 
) -> typename std::remove_reference<decltype(x[0])>::type
inline

Definition at line 101 of file ExtVec.h.

References constexpr, i, N, run_regression::ret, x, and detailsBasic3DVector::y.

101  {
103  constexpr int N = sizeof(V)/sizeof(T);
104  T ret=0;
105  for (int i=0;i!=N;++i) ret+=x[i]*y[i];
106  return ret;
107 }
type
Definition: HCALResponse.h:21
int i
Definition: DBlmapReader.cc:9
#define N
Definition: blowfish.cc:9
Definition: DDAxes.h:10
long double T
#define constexpr
template<typename V1 , typename V2 >
auto dot2 ( V1  x,
V2  y 
) -> typename std::remove_reference<decltype(x[0])>::type
inline

Definition at line 111 of file ExtVec.h.

References i, run_regression::ret, x, and detailsBasic3DVector::y.

Referenced by Basic3DVector< align::Scalar >::perp2().

111  {
113  T ret=0;
114  for (int i=0;i!=2;++i) ret+=x[i]*y[i];
115  return ret;
116 }
type
Definition: HCALResponse.h:21
int i
Definition: DBlmapReader.cc:9
Definition: DDAxes.h:10
long double T
template<typename T >
constexpr Rot3<T> operator* ( Rot3< T > const &  rh,
Rot3< T > const &  lh 
)
inline

Definition at line 208 of file ExtVec.h.

208  {
209  return lh.rotateBack(rh);
210 }
template<typename T >
constexpr Rot2<T> operator* ( Rot2< T > const &  rh,
Rot2< T > const &  lh 
)
inline

Definition at line 270 of file ExtVec.h.

270  {
271  return lh.rotateBack(rh);
272 }
std::ostream& operator<< ( std::ostream &  out,
Vec2D const &  v 
)

Definition at line 16 of file SSEVec.cc.

16  {
17  return out << '(' << v[0] <<", " << v[1] <<')';
18 }
tuple out
Definition: dbtoconf.py:99
std::ostream& operator<< ( std::ostream &  out,
Vec2F const &  v 
)

Definition at line 13 of file SSEVec.cc.

13  {
14  return out << '(' << v[0] <<", " << v[1] <<')';
15 }
tuple out
Definition: dbtoconf.py:99
std::ostream& operator<< ( std::ostream &  out,
Vec4F const &  v 
)

Definition at line 7 of file SSEVec.cc.

7  {
8  return out << '(' << v[0] <<", " << v[1] <<", "<< v[2] <<", "<< v[3] <<')';
9 }
tuple out
Definition: dbtoconf.py:99
std::ostream& operator<< ( std::ostream &  out,
Vec4D const &  v 
)
std::ostream& operator<< ( std::ostream &  out,
As3D< Vec4F > const &  v 
)
std::ostream& operator<< ( std::ostream &  out,
As3D< Vec4D > const &  v 
)
std::ostream& operator<< ( std::ostream &  out,
Rot3F const &  v 
)

Definition at line 28 of file SSEVec.cc.

References mathSSE::as3D(), and Rot3< T >::axis.

28  {
29  return out << as3D(r.axis[0]) << '\n' << as3D(r.axis[1]) << '\n' << as3D(r.axis[2]);
30 }
tuple out
Definition: dbtoconf.py:99
As3D< V > as3D(V const &v)
Definition: ExtVec.h:144
std::ostream& operator<< ( std::ostream &  out,
Rot3D const &  v 
)

Definition at line 32 of file SSEVec.cc.

References mathSSE::as3D(), and Rot3< T >::axis.

32  {
33  return out << as3D(r.axis[0]) << '\n' << as3D(r.axis[1]) << '\n' << as3D(r.axis[2]);
34 }
tuple out
Definition: dbtoconf.py:99
As3D< V > as3D(V const &v)
Definition: ExtVec.h:144
std::ostream& operator<< ( std::ostream &  out,
Rot2F const &  v 
)

Definition at line 36 of file SSEVec.cc.

References Rot2< T >::axis.

36  {
37  return out << r.axis[0] << '\n' << r.axis[1];
38 }
tuple out
Definition: dbtoconf.py:99
std::ostream& operator<< ( std::ostream &  out,
Rot2D const &  v 
)
template<typename V >
auto xy ( v) -> Vec2<typename std::remove_reference<decltype(v[0])>::type>
inline

Definition at line 28 of file ExtVec.h.

References findQualityFiles::v.

29 {
31  return Vec2<T>{v[0],v[1]};
32 }
type
Definition: HCALResponse.h:21
ExtVec< T, 2 > Vec2
Definition: ExtVec.h:24
long double T
template<typename V >
auto zw ( v) -> Vec2<typename std::remove_reference<decltype(v[0])>::type>
inline

Definition at line 36 of file ExtVec.h.

References findQualityFiles::v.

Referenced by PositionCalc::Calculate_Location().

37 {
39  return Vec2<T>{v[2],v[3]};
40 }
type
Definition: HCALResponse.h:21
ExtVec< T, 2 > Vec2
Definition: ExtVec.h:24
long double T