CMS 3D CMS Logo

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

#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...
 
 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
 

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 21 of file OAEParametrizedMagneticField.h.

Constructor & Destructor Documentation

OAEParametrizedMagneticField::OAEParametrizedMagneticField ( float  B)
explicit

Constructor, pass value for nominal field.

Definition at line 15 of file OAEParametrizedMagneticField.cc.

References theParam.

15  :
16  theParam(B){}
static const std::string B
OAEParametrizedMagneticField::OAEParametrizedMagneticField ( std::string  T = "3_8T")
explicit

Constructor, pass string for nominal field [deprecated].

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

Constructor. Parameters taken from a PSet [deprecated].

Definition at line 22 of file OAEParametrizedMagneticField.cc.

22  :
23  theParam(parameters.getParameter<string>("BValue")) {}
T getParameter(std::string const &) const
OAEParametrizedMagneticField::~OAEParametrizedMagneticField ( )
override

Destructor.

Definition at line 26 of file OAEParametrizedMagneticField.cc.

26 {}

Member Function Documentation

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

Field value ad specified global point, in Tesla.

Implements MagneticField.

Definition at line 30 of file OAEParametrizedMagneticField.cc.

References constexpr, inTeslaUnchecked(), and isDefined().

30  {
31  if (isDefined(gp)) {
32  return inTeslaUnchecked(gp);
33  } else {
34  edm::LogWarning("MagneticField|FieldOutsideValidity") << " Point " << gp << " is outside the validity region of OAEParametrizedMagneticField";
35  return GlobalVector();
36  }
37 }
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
Global3DVector GlobalVector
Definition: GlobalVector.h:10
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 44 of file OAEParametrizedMagneticField.cc.

References TtFullHadDaughter::B, magfieldparam::TkBfield::getBxyz(), theParam, x, PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

Referenced by inTesla().

44  {
45  float x[3] = {gp.x()*ooh, gp.y()*ooh, gp.z()*ooh};
46  float B[3];
47  theParam.getBxyz(x,B);
48  return GlobalVector(B[0], B[1], B[2]);
49 }
void getBxyz(float const *__restrict__ x, float *__restrict__ Bxyz) const
B out in cartesian.
Definition: TkBfield.cc:59
T y() const
Definition: PV3DBase.h:63
T z() const
Definition: PV3DBase.h:64
static const std::string B
T x() const
Definition: PV3DBase.h:62
Global3DVector GlobalVector
Definition: GlobalVector.h:10
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 53 of file OAEParametrizedMagneticField.cc.

References f, PV3DBase< T, PVType, FrameType >::perp2(), and PV3DBase< T, PVType, FrameType >::z().

Referenced by inTesla().

53  {
54  return (gp.perp2()<(115.f*115.f) && fabs(gp.z())<280.f);
55 }
double f[11][100]

Member Data Documentation

magfieldparam::TkBfield OAEParametrizedMagneticField::theParam
private