Class describing a 2D cartesian coordinate system (x, y coordinates)
Definition at line 39 of file Cartesian2D.h.
Public Types | |
typedef T | Scalar |
Public Member Functions | |
Cartesian2D () | |
Default constructor with x=y=0. | |
Cartesian2D (const Cartesian2D &v) | |
copy constructor | |
template<class CoordSystem > | |
Cartesian2D (const CoordSystem &v) | |
Construct from any Vector or coordinate system implementing X() and Y() | |
template<class T2 > | |
Cartesian2D (const Polar2D< T2 > &v) | |
Cartesian2D (Scalar xx, Scalar yy) | |
Constructor from x,y coordinates. | |
void | GetCoordinates (Scalar &xx, Scalar &yy) const |
get internal data into 2 Scalar numbers | |
Scalar | Mag2 () const |
void | Negate () |
negate the vector | |
bool | operator!= (const Cartesian2D &rhs) const |
Cartesian2D & | operator= (const Cartesian2D &v) |
assignment operator | |
template<class CoordSystem > | |
Cartesian2D & | operator= (const CoordSystem &v) |
Assignment from any class implementing x(),y() (can assign from any coordinate system) | |
template<class T2 > | |
Cartesian2D & | operator= (const Polar2D< T2 > &v) |
bool | operator== (const Cartesian2D &rhs) const |
Exact equality. | |
Scalar | Phi () const |
Scalar | R () const |
void | Rotate (Scalar angle) |
rotate by an angle | |
void | Scale (Scalar a) |
scale the vector by a scalar quantity a | |
void | SetCoordinates (Scalar xx, Scalar yy) |
Set internal data based on 2 Scalar numbers. | |
void | SetX (Scalar a) |
set the x coordinate value keeping y constant | |
void | SetXY (Scalar xx, Scalar yy) |
set all values using cartesian coordinates | |
void | SetY (Scalar a) |
set the y coordinate value keeping x constant | |
Scalar | X () const |
Scalar | x () const |
Scalar | Y () const |
Scalar | y () const |
Private Attributes | |
T | fX |
(Contiguous) data containing the coordinates values x and y | |
T | fY |
#include <Math/GenVector/Cartesian2D.h>
typedef T ROOT::Math::Cartesian2D< T >::Scalar |
Definition at line 43 of file Cartesian2D.h.
|
inline |
Default constructor with x=y=0.
Definition at line 48 of file Cartesian2D.h.
|
inline |
Constructor from x,y coordinates.
Definition at line 53 of file Cartesian2D.h.
|
inlineexplicit |
Construct from any Vector or coordinate system implementing X() and Y()
Definition at line 60 of file Cartesian2D.h.
|
inline |
copy constructor
Definition at line 69 of file Cartesian2D.h.
|
inlineexplicit |
Definition at line 166 of file Cartesian2D.h.
|
inline |
get internal data into 2 Scalar numbers
Definition at line 89 of file Cartesian2D.h.
|
inline |
Definition at line 93 of file Cartesian2D.h.
|
inline |
negate the vector
Definition at line 123 of file Cartesian2D.h.
|
inline |
Definition at line 153 of file Cartesian2D.h.
|
inline |
assignment operator
Definition at line 75 of file Cartesian2D.h.
|
inline |
Assignment from any class implementing x(),y() (can assign from any coordinate system)
Definition at line 141 of file Cartesian2D.h.
|
inline |
Definition at line 181 of file Cartesian2D.h.
|
inline |
Exact equality.
Definition at line 150 of file Cartesian2D.h.
|
inline |
Definition at line 95 of file Cartesian2D.h.
|
inline |
Definition at line 94 of file Cartesian2D.h.
|
inline |
rotate by an angle
Definition at line 128 of file Cartesian2D.h.
|
inline |
scale the vector by a scalar quantity a
Definition at line 118 of file Cartesian2D.h.
|
inline |
Set internal data based on 2 Scalar numbers.
Definition at line 84 of file Cartesian2D.h.
|
inline |
set the x coordinate value keeping y constant
Definition at line 100 of file Cartesian2D.h.
|
inline |
set all values using cartesian coordinates
Definition at line 110 of file Cartesian2D.h.
|
inline |
set the y coordinate value keeping x constant
Definition at line 105 of file Cartesian2D.h.
|
inline |
Definition at line 91 of file Cartesian2D.h.
|
inline |
Definition at line 160 of file Cartesian2D.h.
|
inline |
Definition at line 92 of file Cartesian2D.h.
|
inline |
Definition at line 161 of file Cartesian2D.h.
|
private |
(Contiguous) data containing the coordinates values x and y
Definition at line 209 of file Cartesian2D.h.
|
private |
Definition at line 210 of file Cartesian2D.h.