CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Attributes
ConformalMappingFit::MappedPoint< T > Class Template Reference

Public Types

typedef Basic2DVector< TPointXY
 

Public Member Functions

 MappedPoint ()
 
 MappedPoint (const T &aU, const T &aV, const T &aWeight, const TkRotation< T > *aRot)
 
 MappedPoint (const PointXY &point, const T &weight, const TkRotation< T > *aRot)
 
T u () const
 
PointXY unmap () const
 
T unmappedWeight () const
 
T v () const
 
T weight () const
 

Private Attributes

const TkRotation< T > * pRot
 
T theU
 
T theV
 
T theW
 

Detailed Description

template<class T>
class ConformalMappingFit::MappedPoint< T >

Definition at line 49 of file ConformalMappingFit.h.

Member Typedef Documentation

◆ PointXY

template<class T >
typedef Basic2DVector<T> ConformalMappingFit::MappedPoint< T >::PointXY

Definition at line 51 of file ConformalMappingFit.h.

Constructor & Destructor Documentation

◆ MappedPoint() [1/3]

template<class T >
ConformalMappingFit::MappedPoint< T >::MappedPoint ( )
inline

◆ MappedPoint() [2/3]

template<class T >
ConformalMappingFit::MappedPoint< T >::MappedPoint ( const T aU,
const T aV,
const T aWeight,
const TkRotation< T > *  aRot 
)
inline

◆ MappedPoint() [3/3]

template<class T >
ConformalMappingFit::MappedPoint< T >::MappedPoint ( const PointXY point,
const T weight,
const TkRotation< T > *  aRot 
)
inline

Definition at line 55 of file ConformalMappingFit.h.

References point, ConformalMappingFit::MappedPoint< T >::theU, ConformalMappingFit::MappedPoint< T >::theV, ConformalMappingFit::MappedPoint< T >::theW, Basic3DVector< T >::x(), and Basic3DVector< T >::y().

55  : pRot(aRot) {
56  T radius2 = point.mag2();
57  Basic3DVector<T> rotated = (*pRot) * point;
58  theU = rotated.x() / radius2;
59  theV = rotated.y() / radius2;
60  theW = weight * radius2 * radius2;
61  }
T x() const
Cartesian x coordinate.
Definition: weight.py:1
T y() const
Cartesian y coordinate.
long double T
*vegas h *****************************************************used in the default bin number in original ***version of VEGAS is ***a higher bin number might help to derive a more precise ***grade subtle point
Definition: invegas.h:5

Member Function Documentation

◆ u()

template<class T >
T ConformalMappingFit::MappedPoint< T >::u ( ) const
inline

◆ unmap()

template<class T >
PointXY ConformalMappingFit::MappedPoint< T >::unmap ( ) const
inline

Definition at line 65 of file ConformalMappingFit.h.

References ConformalMappingFit::MappedPoint< T >::theU, ConformalMappingFit::MappedPoint< T >::theV, and createJobs::tmp.

65  {
66  T invRadius2 = theU * theU + theV * theV;
67  Basic3DVector<T> tmp = (*pRot).multiplyInverse(Basic2DVector<T>(theU, theV));
68  return PointXY(tmp.x() / invRadius2, tmp.y() / invRadius2);
69  }
tmp
align.sh
Definition: createJobs.py:716
long double T

◆ unmappedWeight()

template<class T >
T ConformalMappingFit::MappedPoint< T >::unmappedWeight ( ) const
inline

◆ v()

template<class T >
T ConformalMappingFit::MappedPoint< T >::v ( ) const
inline

◆ weight()

template<class T >
T ConformalMappingFit::MappedPoint< T >::weight ( ) const
inline

Member Data Documentation

◆ pRot

template<class T >
const TkRotation<T>* ConformalMappingFit::MappedPoint< T >::pRot
private

Definition at line 77 of file ConformalMappingFit.h.

◆ theU

template<class T >
T ConformalMappingFit::MappedPoint< T >::theU
private

◆ theV

template<class T >
T ConformalMappingFit::MappedPoint< T >::theV
private

◆ theW

template<class T >
T ConformalMappingFit::MappedPoint< T >::theW
private