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 314 of file FPGATrackSimHoughTransform_d0phi0_Tool.cxx.
315{
316 std::ostringstream oss;
317 oss << "[";
319 std::copy(
v.begin(),
v.end()-1, std::ostream_iterator<T>(oss,
", "));
321 }
322 oss << "]";
323 return oss.str();
324}
◆ unquant()
| double unquant |
( |
double | min, |
|
|
double | max, |
|
|
unsigned | nSteps, |
|
|
int | step ) |
|
inlinestatic |