Calibrator  0.1
Command line tool for 14C calibration
sigma_range.cpp
Go to the documentation of this file.
1 #include "../include/sigma_range.h"
2 
3 SigmaRange::SigmaRange(int begin, int end, double sigma_level):
4  _begin(begin),
5  _end(end),
6  _sigma_level(sigma_level)
7  {}
8 
10  json this_json;
11  this_json["sigma_level"] = _sigma_level;
12  this_json["begin"] = _begin;
13  this_json["end"] = _end;
14  return this_json;
15 }
nlohmann::json json
Definition: cal_date.h:29
SigmaRange(int begin, int end, double sigma_level)
Definition: sigma_range.cpp:3
double _sigma_level
Definition: sigma_range.h:30
json to_json()
Definition: sigma_range.cpp:9