aboutsummaryrefslogtreecommitdiffstats
path: root/src/beta_cfg.hpp
blob: 27148dfd96d2729a3b75c8235bccdc72980d964a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef BETA_CFG
#define BETA_CFG

#include <map>
#include <vector>
#include <string>
#include <iostream>

struct cfg_map
{
  std::string sbp_data;
  std::string cfunc_profile;
  std::string tprofile;
  double z;
  double cm_per_pixel;
  double rmin_kpc;
  double rmin_pixel;
  std::map<std::string,std::vector<double> > param_map;
};

cfg_map parse_cfg_file(std::istream& is);

#endif