Skip to content
Snippets Groups Projects
Commit ef00c4d6 authored by FU Chengdong's avatar FU Chengdong
Browse files

add unit option from compact

parent 8e2f11b8
No related branches found
No related tags found
No related merge requests found
...@@ -19,10 +19,14 @@ void GenericBFieldMapBrBz::fieldComponents(const double* pos, double* field) { ...@@ -19,10 +19,14 @@ void GenericBFieldMapBrBz::fieldComponents(const double* pos, double* field) {
throw std::runtime_error(error_msg); throw std::runtime_error(error_msg);
} }
if (m_length_unit<=0||m_bfield_unit<=0) {
std::string error_msg = "[ERROR] GenericBFieldMapBrBz: Not set units or error (<0)! ";
throw std::runtime_error(error_msg);
}
// convert pos to r/z // convert pos to r/z
double x = pos[0] / dd4hep::m; // convert to meter double x = pos[0] / m_length_unit; // convert to length unit from input
double y = pos[1] / dd4hep::m; double y = pos[1] / m_length_unit;
double z = pos[2] / dd4hep::m; double z = pos[2] / m_length_unit;
double r = sqrt(x*x+y*y); double r = sqrt(x*x+y*y);
double phi = atan2(y, x); double phi = atan2(y, x);
...@@ -98,9 +102,9 @@ void GenericBFieldMapBrBz::fieldComponents(const double* pos, double* field) { ...@@ -98,9 +102,9 @@ void GenericBFieldMapBrBz::fieldComponents(const double* pos, double* field) {
+ rn * zn * Bz_r1z1; + rn * zn * Bz_r1z1;
// update the global field // update the global field
field[0] += Br*cos(phi); field[0] += Br*cos(phi)*m_bfield_unit; // convert to input unit
field[1] += Br*sin(phi); field[1] += Br*sin(phi)*m_bfield_unit;
field[2] += Bz; field[2] += Bz*m_bfield_unit;
return; return;
} }
...@@ -116,3 +120,9 @@ void GenericBFieldMapBrBz::init_provider(const std::string& provider, const std: ...@@ -116,3 +120,9 @@ void GenericBFieldMapBrBz::init_provider(const std::string& provider, const std:
throw std::runtime_error(error_msg); throw std::runtime_error(error_msg);
} }
} }
void GenericBFieldMapBrBz::init_unit(double l, double b) {
m_length_unit = l;
m_bfield_unit = b;
std::cout << "Initialize units to l = " << m_length_unit/dd4hep::m << " m" << ", b = " << m_bfield_unit/dd4hep::tesla << " tesla" << std::endl;
}
...@@ -26,9 +26,15 @@ public: ...@@ -26,9 +26,15 @@ public:
// following are interfaces to configure this field map // following are interfaces to configure this field map
void init_provider(const std::string& provider, const std::string& url); void init_provider(const std::string& provider, const std::string& url);
// set unit
void init_unit(double l, double b);
private: private:
IFieldMapProvider* m_provider; IFieldMapProvider* m_provider;
double m_length_unit = 0;
double m_bfield_unit = 0;
}; };
#endif #endif
......
...@@ -70,6 +70,19 @@ static dd4hep::Ref_t create_GenericBFieldMapBrBz(dd4hep::Detector& , ...@@ -70,6 +70,19 @@ static dd4hep::Ref_t create_GenericBFieldMapBrBz(dd4hep::Detector& ,
ptr->init_provider(provider, url); ptr->init_provider(provider, url);
// set unit, default values will be m and tesla
double lunit = dd4hep::m;
double bunit = dd4hep::tesla;
bool hasLunit = xmlParameter.hasAttr(_Unicode(lunit));
if (hasLunit) {
lunit = xmlParameter.attr<double>(_Unicode(lunit));
}
bool hasBunit = xmlParameter.hasAttr(_Unicode(bunit));
if (hasBunit) {
bunit = xmlParameter.attr<double>(_Unicode(bunit));
}
ptr->init_unit(lunit, bunit);
obj.assign(ptr, xmlParameter.nameStr(), xmlParameter.typeStr()); obj.assign(ptr, xmlParameter.nameStr(), xmlParameter.typeStr());
return obj; return obj;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment