CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
OAEParametrizedMagneticField Class Referencefinal

#include <OAEParametrizedMagneticField.h>

Inheritance diagram for OAEParametrizedMagneticField:
MagneticField

Public Member Functions

GlobalVector inTesla (const GlobalPoint &gp) const override
 Field value ad specified global point, in Tesla. More...
 
GlobalVector inTeslaUnchecked (const GlobalPoint &gp) const override
 
bool isDefined (const GlobalPoint &gp) const override
 True if the point is within the region where the concrete field. More...
 
 OAEParametrizedMagneticField (float B)
 Constructor, pass value for nominal field. More...
 
 OAEParametrizedMagneticField (std::string T="3_8T")
 Constructor, pass string for nominal field [deprecated]. More...
 
 OAEParametrizedMagneticField (const edm::ParameterSet &parameters)
 Constructor. Parameters taken from a PSet [deprecated]. More...
 
 ~OAEParametrizedMagneticField () override
 Destructor. More...
 
- Public Member Functions inherited from MagneticField
virtual MagneticFieldclone () const
 
GlobalVector inInverseGeV (const GlobalPoint &gp) const
 Field value ad specified global point, in 1/Gev. More...
 
GlobalVector inKGauss (const GlobalPoint &gp) const
 Field value ad specified global point, in KGauss. More...
 
float inverseBzAtOriginInGeV () const
 The inverse of field z component for this map in GeV. More...
 
 MagneticField ()
 
 MagneticField (const MagneticField &orig)
 
int nominalValue () const
 The nominal field value for this map in kGauss. More...
 
virtual ~MagneticField ()
 

Private Attributes

magfieldparam::TkBfield theParam
 

Additional Inherited Members

- Protected Member Functions inherited from MagneticField
void setNominalValue ()
 

Detailed Description

Magnetic Field engine wrapper for V. Karimaki's "off-axis expansion" of the TOSCA field version 1103l_071212 (2, 3, 3.4, 3.8, 4 T) valid in the region r<1.15 m and |z|<2.8 m For details, cf TkBfield.h

Author
N. Amapane - Torino

Definition at line 25 of file OAEParametrizedMagneticField.h.

Constructor & Destructor Documentation

◆ OAEParametrizedMagneticField() [1/3]

OAEParametrizedMagneticField::OAEParametrizedMagneticField ( float  B)
explicit

Constructor, pass value for nominal field.

Definition at line 15 of file OAEParametrizedMagneticField.cc.

References MagneticField::setNominalValue().

15 : theParam(B) { setNominalValue(); }
Definition: APVGainStruct.h:7
void setNominalValue()

◆ OAEParametrizedMagneticField() [2/3]

OAEParametrizedMagneticField::OAEParametrizedMagneticField ( std::string  T = "3_8T")
explicit

Constructor, pass string for nominal field [deprecated].

◆ OAEParametrizedMagneticField() [3/3]

OAEParametrizedMagneticField::OAEParametrizedMagneticField ( const edm::ParameterSet parameters)
explicit

Constructor. Parameters taken from a PSet [deprecated].

Definition at line 19 of file OAEParametrizedMagneticField.cc.

References MagneticField::setNominalValue().

20  : theParam(parameters.getParameter<string>("BValue")) {
22 }
void setNominalValue()

◆ ~OAEParametrizedMagneticField()

OAEParametrizedMagneticField::~OAEParametrizedMagneticField ( )
override

Destructor.

Definition at line 24 of file OAEParametrizedMagneticField.cc.

24 {}

Member Function Documentation

◆ inTesla()

GlobalVector OAEParametrizedMagneticField::inTesla ( const GlobalPoint gp) const
overridevirtual

Field value ad specified global point, in Tesla.

Implements MagneticField.

Definition at line 26 of file OAEParametrizedMagneticField.cc.

References runTauDisplay::gp, inTeslaUnchecked(), and isDefined().

26  {
27  if (isDefined(gp)) {
28  return inTeslaUnchecked(gp);
29  } else {
30  edm::LogWarning("MagneticField") << " Point " << gp
31  << " is outside the validity region of OAEParametrizedMagneticField";
32  return GlobalVector();
33  }
34 }
bool isDefined(const GlobalPoint &gp) const override
True if the point is within the region where the concrete field.
GlobalVector inTeslaUnchecked(const GlobalPoint &gp) const override
Log< level::Warning, false > LogWarning
Global3DVector GlobalVector
Definition: GlobalVector.h:10

◆ inTeslaUnchecked()

GlobalVector OAEParametrizedMagneticField::inTeslaUnchecked ( const GlobalPoint gp) const
overridevirtual

Optional implementation that derived classes can implement to provide faster query by skipping the check to isDefined.

Reimplemented from MagneticField.

Definition at line 40 of file OAEParametrizedMagneticField.cc.

References B, magfieldparam::TkBfield::getBxyz(), runTauDisplay::gp, theParam, and x.

Referenced by inTesla().

40  {
41  float x[3] = {gp.x() * ooh, gp.y() * ooh, gp.z() * ooh};
42  float B[3];
43  theParam.getBxyz(x, B);
44  return GlobalVector(B[0], B[1], B[2]);
45 }
Definition: APVGainStruct.h:7
void getBxyz(float const *__restrict__ x, float *__restrict__ Bxyz) const
B out in cartesian.
Definition: TkBfield.cc:61
Global3DVector GlobalVector
Definition: GlobalVector.h:10

◆ isDefined()

bool OAEParametrizedMagneticField::isDefined ( const GlobalPoint ) const
overridevirtual

True if the point is within the region where the concrete field.

Reimplemented from MagneticField.

Definition at line 47 of file OAEParametrizedMagneticField.cc.

References f, and runTauDisplay::gp.

Referenced by inTesla().

47  {
48  return (gp.perp2() < (115.f * 115.f) && fabs(gp.z()) < 280.f);
49 }
double f[11][100]

Member Data Documentation

◆ theParam

magfieldparam::TkBfield OAEParametrizedMagneticField::theParam
private

Definition at line 46 of file OAEParametrizedMagneticField.h.

Referenced by inTeslaUnchecked().