1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef DUMP_FIT_QDP_HPP
#define DUMP_FIT_QDP_HPP
#include <core/fitter.hpp>
#include <vector>
#include <iostream>
#include <string>
namespace opt_utilities
{
void dump_sbp_beta(std::ostream& os,fitter<double,double,std::vector<double>,double,std::string>& f,double cm_per_pixel,const std::vector<double>& r,const std::vector<double>& y,const std::vector<double>& ye);
void dump_rho_beta(std::ostream& os,fitter<std::vector<double>,std::vector<double>,std::vector<double>,double,std::string>& f,double cm_per_pixel,const std::vector<double>& r,const std::vector<double>& sbps,const std::vector<double>& sbpe);
void dump_rho_dbeta(std::ostream& os,fitter<std::vector<double>,std::vector<double>,std::vector<double>,double,std::string>& f,double cm_per_pixel);
};
#endif
|