| 2880 | |
| 2881 | public: |
| 2882 | std::string toString()const { |
| 2883 | std::stringstream ss; |
| 2884 | /* |
| 2885 | this prints a xml-like structure, just for debugging purposes |
| 2886 | */ |
| 2887 | ss << "----------------------------------------------------\n"; |
| 2888 | ss << "OutputDescriptor info\n"; |
| 2889 | ss << "----------------------------------------------------\n"; |
| 2890 | ss << "XML-like structure\n"; |
| 2891 | printInfo(0, ss); |
| 2892 | ss << "----------------------------------------------------\n"; |
| 2893 | return ss.str(); |
| 2894 | } |
| 2895 | |
| 2896 | void getGaussLocations(std::vector<double> &x) const { |
| 2897 | x.clear(); |