aboutsummaryrefslogtreecommitdiffstats
path: root/dynamical_fit/dynamical_fit.cpp
blob: 719245040a29fa3d40020e22484413fee62ec6c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#include <core/fitter.hpp>
#include <interface/optdl.hpp>
#include <misc/data_loaders.hpp>
#include <sstream>
#include <iostream>
#include <fstream>
#include <string>
#include <methods/powell/powell_method.hpp>
#include <methods/gsl_simplex/gsl_simplex.hpp>
#include <statistics/chisq.hpp>
#include <cstdlib>

using namespace std;
using namespace opt_utilities;


int main(int argc,char* argv[])
{
  if(argc!=3)
    {
      cerr<<"Usage: "<<argv[0]<<" <config file> <model dump file>"<<endl;
      exit(-1);
    }
  ifstream cfg_file(argv[1]);
  fitter<double,double,std::vector<double>,double,std::string> fit;
  chisq<double,double,vector<double>,double,string> stat;
  stat.verbose(true);
  fit.set_opt_method(powell_method<double,vector<double> >());
  //
  fit.set_statistic(stat);
  std::string model_so_name;
  cfg_file>>model_so_name;
  cerr<<"loading model shared object "<<model_so_name<<endl;
  fit.set_model(*load_model<double,double,vector<double>,string>(model_so_name.c_str()));
  
  string data_file_name;
  cfg_file>>data_file_name;
  cerr<<"setting initializational values:"<<endl;
  for(;;)
    {
      string p,v;
      cfg_file>>p>>v;
      if(!cfg_file.good())
	{
	  break;
	}
      istringstream oss(v);
      
      double dvp=0;
      oss>>dvp;
      cerr<<p<<"="<<dvp<<endl;
      fit.set_param_value(p,dvp);
    }
  cfg_file.close();

  ifstream data_file(data_file_name.c_str());
  
  dl_x_xu_xl_y_yu_yl<double,double> dl;
  dl.load_from(data_file);
  data_file.close();

  fit.load_data(dl.get_data_set());

  fit.set_precision(1e-5);
  fit.fit();
  //fit.set_opt_method(gsl_simplex<double,vector<double> >());
  fit.fit();
  fit.fit();

  vector<double> p=fit.fit();
  for(int i=0;i<fit.get_num_params();++i)
    {
      cerr<<fit.get_param_info(i).get_name()<<"\t"<<fit.get_param_info(i).get_value()<<endl;
    }
  
  ofstream ofs(argv[2]);
  ofs<<"no no no\n";
  double xmin,xmax;
  xmin=fit.get_data_set().get_data(0).get_x();
  xmax=fit.get_data_set().get_data(0).get_x();
  for(int i=0;i<fit.get_data_set().size();++i)
    {
      xmin=std::min(xmin,fit.get_data_set().get_data(i).get_x());
      xmax=std::max(xmax,fit.get_data_set().get_data(i).get_x());
    }
  
  for(double x=xmin;x<xmax;x+=(xmax-xmin)/1000.)
    {
      ofs<<x<<"\t0\t0\t"<<fit.eval_model_raw(x,fit.get_all_params())<<"\t0\t0"<<endl;
    }

}