CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TkBfield.cc
Go to the documentation of this file.
1 #include "TkBfield.h"
2 
4 
5 // #include <iostream>
6 // #include <iomanip>
7 #include <cmath>
8 #include<algorithm>
9 
10 using namespace magfieldparam;
11 
12 namespace {
13 
14 
15  BCylParam<float> fpar1{4.90541f,17.8768f,2.02355f,0.0210538f,0.000321885f,2.37511f,0.00326725f,2.07656f,1.71879f}; // 2.0T-2G
16  BCylParam<float> fpar2{4.41982f,15.7732f,3.02621f,0.0197814f,0.000515759f,2.43385f,0.00584258f,2.11333f,1.76079f}; // 3.0T-2G
17  BCylParam<float> fpar3{4.30161f,15.2586f,3.51926f,0.0183494f,0.000606773f,2.45110f,0.00709986f,2.12161f,1.77038f}; // 3.5T-2G
18  BCylParam<float> fpar4{4.24326f,15.0201f,3.81492f,0.0178712f,0.000656527f,2.45818f,0.00778695f,2.12500f,1.77436f}; // 3.8T-2G
19  BCylParam<float> fpar5{4.21136f,14.8824f,4.01683f,0.0175932f,0.000695541f,2.45311f,0.00813447f,2.11688f,1.76076f}; // 4.0T-2G
20  std::string const flds[] = {"2_0T","3_0T","3_5T","3_8T","4_0T"};
21  BCylParam<float> const fpars[]{fpar1,fpar2,fpar3,fpar4,fpar5};
22 
23  BCylParam<float> const & findPar(std::string fld) {
24  auto f = std::find(flds,flds+5,fld);
25  if (f-flds>4) throw cms::Exception("BadParameters")
26  << "Undefined key - " // abort!\n";
27  <<"Defined keys are: \"2_0T\" \"3_0T\" \"3_5T\" \"3_8T\" and \"4_0T\"\n";
28  return fpars[f-flds];
29 
30  }
31 
32 }
33 
34 TkBfield::TkBfield(std::string fld) : bcyl(findPar(fld)) {
35 
36 }
37 
38 
39 
40 void TkBfield::getBrfz(float const * __restrict__ x, float * __restrict__ Brfz) const {
41  float br; float bz;
42  float r2=x[0]*x[0]+x[1]*x[1];
43  bcyl(x[0]*x[0]+x[1]*x[1],x[2], br, bz); Brfz[0]=std::sqrt(r2)*br; Brfz[1]=0; Brfz[2]=bz;
44 }
45 
46 void TkBfield::getBxyz(float const * __restrict__ x, float * __restrict__ Bxyz) const {
47  float br; float bz;
48  float r2=x[0]*x[0]+x[1]*x[1];
49  bcyl(r2, x[2], br,bz);
50  Bxyz[0]=br*x[0];
51  Bxyz[1]=br*x[1];
52  Bxyz[2]=bz;
53 }
54 
void getBxyz(float const *__restrict__ x, float *__restrict__ Bxyz) const
B out in cartesian.
Definition: TkBfield.cc:46
void getBrfz(float const *__restrict__ x, float *__restrict__ Brfz) const
B out in cylindrical.
Definition: TkBfield.cc:40
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
BCycl< float > bcyl
Definition: TkBfield.h:39
T sqrt(T t)
Definition: SSEVec.h:48
TkBfield(std::string T="3_8T")
Definition: TkBfield.cc:34
double f[11][100]
Definition: DDAxes.h:10