59 std::ostringstream os_etamin;
60 std::ostringstream os_etamax;
61 std::ostringstream os_res;
63 os_etamin <<
"etadep_etamin" <<
i;
64 os_etamax <<
"etadep_etamax" <<
i;
65 os_res <<
"etadep_vecres" <<
i;
67 if (defs.
exists(os_etamin.str()) && defs.
exists(os_etamax.str()) && defs.
exists(os_res.str())) {
90 if (
v[
i].IsOverlap(
v[
j])) {
117 std::vector<EtaDepResElement>::const_iterator etaDepResEleVecIter =
FindResolution(
eta);
119 return etaDepResEleVecIter->GetResolution();
122 std::stringstream message;
123 message <<
"Error, the given eta value : " <<
eta <<
" is not inside the valid eta range!";
125 throw std::runtime_error(message.str());
const double EtaMax() const
Return the upper limit of the valid -range.
Vector_Resolution GetResolution(double &eta) const
Return the corresponding resolution for a value of .
bool exists(std::string name) const override
std::string get_string(std::string name) const override
std::vector< EtaDepResElement >::size_type Read(const std::string &default_file)
Read the -dependent resolution information from an ASCII text file.
A lightweight implementation of the Defaults interface that uses simple ASCII text files...
Represent a resolution and an range in which the resolution is valid.
bool CheckNoOverlap(const std::vector< EtaDepResElement > &v)
Check for non-overlapping -range between -dependent resolution elements in a list.
std::vector< EtaDepResElement > _EtaDepResElement
double get_float(std::string name) const override
Vector_Resolution operator()(double &eta)
Allow users to call this instance as a function to access the corresponding resolution for an input v...
Hold on to -dependent resolution. This class acts as a function object and returns Vector_Resolution ...
EtaDepResolution()
Default constructor, instantiate an EtaDepResolution object with empty list of -dependent resolution ...
const bool CheckEta(double eta) const
Check is an input value is within the valid -range of this instance.
std::vector< EtaDepResElement >::const_iterator FindResolution(double &eta) const
Internal method to return the corresponding -dependent resolution element for a given value...
const double EtaMin() const
Return the lower limit of the valid -range.
Calculate and represent resolution for a vector of , pseudorapidity , and azimuthal angle ...
const std::vector< EtaDepResElement > GetEtaDepResElement() const
Access the internal list of -dependent resolution elements.