aboutsummaryrefslogtreecommitdiffstats
path: root/mass_profile/beta_cfg.hpp
blob: 5dc9b2da0d2d5785318d2a54dc36885cad14476a (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
#ifndef BETA_CFG
#define BETA_CFG

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

struct cfg_map
{
  std::string radius_file;
  std::string sbp_file;
  std::string cfunc_file;
  std::string T_file;
  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