CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
ZReflectedMFGrid Class Reference

#include <ZReflectedMFGrid.h>

Inheritance diagram for ZReflectedMFGrid:
MFGrid MagneticFieldProvider< float >

Public Member Functions

Dimensions dimensions () const override
 
LocalPoint fromGridFrame (double a, double b, double c) const override
 find grid coordinates for point. For debugging and validation only. More...
 
LocalPoint nodePosition (int i, int j, int k) const override
 Position of node in local frame. More...
 
LocalVector nodeValue (int i, int j, int k) const override
 Field value at node. More...
 
void toGridFrame (const LocalPoint &p, double &a, double &b, double &c) const override
 find grid coordinates for point. For debugging and validation only. More...
 
LocalVector valueInTesla (const LocalPoint &p) const override
 Interpolated field value at given point. More...
 
 ZReflectedMFGrid (const GloballyPositioned< float > &vol, MFGrid *sectorGrid)
 
 ~ZReflectedMFGrid () override
 
- Public Member Functions inherited from MFGrid
virtual void dump () const
 
const GloballyPositioned< float > & frame () const
 Local reference frame. More...
 
virtual Indexes index (const LocalPoint &p) const
 
 MFGrid (const GloballyPositioned< float > &vol)
 
 ~MFGrid () override
 
- Public Member Functions inherited from MagneticFieldProvider< float >
virtual LocalVectorType derivativeInTeslaPerMeter (const LocalPointType &p, int N) const
 
virtual int hasDerivatives () const
 
virtual LocalVectorType valueInTesla (const LocalPointType &p) const =0
 
virtual ~MagneticFieldProvider ()
 

Private Member Functions

void throwUp (const char *message) const
 

Private Attributes

double theDelta
 
double thePhiMax
 
double thePhiMin
 
MFGridtheSectorGrid
 

Additional Inherited Members

- Public Types inherited from MFGrid
typedef GloballyPositioned
< float >::GlobalPoint 
GlobalPoint
 
typedef GloballyPositioned
< float >::GlobalVector 
GlobalVector
 
typedef GloballyPositioned
< float >::LocalPoint 
LocalPoint
 
typedef GloballyPositioned
< float >::LocalVector 
LocalVector
 
- Public Types inherited from MagneticFieldProvider< float >
typedef Point3DBase< float,
GlobalTag
GlobalPointType
 
typedef Vector3DBase< float,
GlobalTag
GlobalVectorType
 
typedef Point3DBase< float,
LocalTag
LocalPointType
 
typedef Vector3DBase< float,
LocalTag
LocalVectorType
 

Detailed Description

Definition at line 7 of file ZReflectedMFGrid.h.

Constructor & Destructor Documentation

ZReflectedMFGrid::ZReflectedMFGrid ( const GloballyPositioned< float > &  vol,
MFGrid sectorGrid 
)

Definition at line 8 of file ZReflectedMFGrid.cc.

9  : MFGrid(vol),
10  theSectorGrid(sectorGrid)
11 
12 {}
MFGrid(const GloballyPositioned< float > &vol)
Definition: MFGrid.h:34
ZReflectedMFGrid::~ZReflectedMFGrid ( )
override

Definition at line 14 of file ZReflectedMFGrid.cc.

References theSectorGrid.

14 { delete theSectorGrid; }

Member Function Documentation

Dimensions ZReflectedMFGrid::dimensions ( void  ) const
overridevirtual

Implements MFGrid.

Definition at line 36 of file ZReflectedMFGrid.cc.

References MFGrid::dimensions(), and theSectorGrid.

36 { return theSectorGrid->dimensions(); }
virtual Dimensions dimensions() const =0
MFGrid::LocalPoint ZReflectedMFGrid::fromGridFrame ( double  a,
double  b,
double  c 
) const
overridevirtual

find grid coordinates for point. For debugging and validation only.

Implements MFGrid.

Definition at line 31 of file ZReflectedMFGrid.cc.

References throwUp().

31  {
32  throwUp("Not implemented yet");
33  return LocalPoint();
34 }
void throwUp(const char *message) const
GloballyPositioned< float >::LocalPoint LocalPoint
Definition: MFGrid.h:31
MFGrid::LocalPoint ZReflectedMFGrid::nodePosition ( int  i,
int  j,
int  k 
) const
overridevirtual

Position of node in local frame.

Implements MFGrid.

Definition at line 38 of file ZReflectedMFGrid.cc.

References throwUp().

38  {
39  throwUp("Not implemented yet");
40  return LocalPoint();
41 }
void throwUp(const char *message) const
GloballyPositioned< float >::LocalPoint LocalPoint
Definition: MFGrid.h:31
MFGrid::LocalVector ZReflectedMFGrid::nodeValue ( int  i,
int  j,
int  k 
) const
overridevirtual

Field value at node.

Implements MFGrid.

Definition at line 43 of file ZReflectedMFGrid.cc.

References throwUp().

43  {
44  throwUp("Not implemented yet");
45  return LocalVector();
46 }
void throwUp(const char *message) const
GloballyPositioned< float >::LocalVector LocalVector
Definition: MFGrid.h:32
void ZReflectedMFGrid::throwUp ( const char *  message) const
private

Definition at line 23 of file ZReflectedMFGrid.cc.

References gather_cfg::cout.

Referenced by fromGridFrame(), nodePosition(), nodeValue(), and toGridFrame().

23  {
24  std::cout << "Throwing exception " << message << std::endl;
25  throw MagGeometryError(message);
26 }
tuple cout
Definition: gather_cfg.py:144
void ZReflectedMFGrid::toGridFrame ( const LocalPoint p,
double &  a,
double &  b,
double &  c 
) const
overridevirtual

find grid coordinates for point. For debugging and validation only.

Implements MFGrid.

Definition at line 27 of file ZReflectedMFGrid.cc.

References throwUp().

27  {
28  throwUp("Not implemented yet");
29 }
void throwUp(const char *message) const
MFGrid::LocalVector ZReflectedMFGrid::valueInTesla ( const LocalPoint p) const
overridevirtual

Interpolated field value at given point.

Implements MFGrid.

Definition at line 16 of file ZReflectedMFGrid.cc.

References theSectorGrid, and MFGrid::valueInTesla().

16  {
17  // Z reflection of point
18  LocalPoint mirrorp(p.x(), p.y(), -p.z());
19  LocalVector mirrorB = theSectorGrid->valueInTesla(mirrorp);
20  return LocalVector(-mirrorB.x(), -mirrorB.y(), mirrorB.z());
21 }
T y() const
Definition: PV3DBase.h:60
T z() const
Definition: PV3DBase.h:61
LocalVector valueInTesla(const LocalPoint &p) const override=0
Interpolated field value at given point.
GloballyPositioned< float >::LocalVector LocalVector
Definition: MFGrid.h:32
T x() const
Definition: PV3DBase.h:59

Member Data Documentation

double ZReflectedMFGrid::theDelta
private

Definition at line 29 of file ZReflectedMFGrid.h.

double ZReflectedMFGrid::thePhiMax
private

Definition at line 27 of file ZReflectedMFGrid.h.

double ZReflectedMFGrid::thePhiMin
private

Definition at line 26 of file ZReflectedMFGrid.h.

MFGrid* ZReflectedMFGrid::theSectorGrid
private

Definition at line 28 of file ZReflectedMFGrid.h.

Referenced by dimensions(), valueInTesla(), and ~ZReflectedMFGrid().