See header file.
More...
Go to the source code of this file.
|
| static int | quant (double min, double max, unsigned nSteps, double val) |
| static double | unquant (double min, double max, unsigned nSteps, int step) |
| template<typename T> |
| static std::string | to_string (std::vector< T > v) |
| static std::string | instance_name (std::string const &s) |
◆ instance_name()
| std::string instance_name |
( |
std::string const & | s | ) |
|
|
inlinestatic |
◆ quant()
| int quant |
( |
double | min, |
|
|
double | max, |
|
|
unsigned | nSteps, |
|
|
double | val ) |
|
inlinestatic |
◆ to_string()
template<typename T>
| std::string to_string |
( |
std::vector< T > | v | ) |
|
|
inlinestatic |
Definition at line 315 of file FPGATrackSimHoughTransform_d0phi0_Tool.cxx.
316{
317 std::ostringstream oss;
318 oss << "[";
320 std::copy(
v.begin(),
v.end()-1, std::ostream_iterator<T>(oss,
", "));
322 }
323 oss << "]";
324 return oss.str();
325}
◆ unquant()
| double unquant |
( |
double | min, |
|
|
double | max, |
|
|
unsigned | nSteps, |
|
|
int | step ) |
|
inlinestatic |