128 {
129 std::cout <<
" Algorithm name " <<
name <<
"\n"
130 <<
" library " <<
library <<
"\n"
131 << " parameters: " << "\n";
132 for (std::map<std::string, std::vector<float> >::const_iterator pit =
parameters.begin();
134
135 std::cout << " " << pit->first << " ";
136 for (std::vector<float>::const_iterator p2it = pit->second.begin();
137 p2it != pit->second.end(); ++p2it) {
138 std::cout << *p2it << " ";
139 }
140 std::cout << std::endl;
141 }
142 std::cout << " Green thresholds: " << "\n";
143 for (std::map<std::string, float>::const_iterator thit =
greenThresholds.begin();
145 std::cout << " " << thit->first << " " << thit->second << std::endl;
146 }
147 std::cout << " Red thresholds: " << "\n";
148 for (std::map<std::string, float>::const_iterator thit =
redThresholds.begin();
150 std::cout << " " << thit->first << " " << thit->second << std::endl;
151 }
152 }
std::map< std::string, float > greenThresholds
std::map< std::string, float > redThresholds
std::map< std::string, std::vector< float > > parameters