Calibrator  0.1
Command line tool for 14C calibration
uncal_date_list.h
Go to the documentation of this file.
1 
19 #ifndef _uncal_date_list_h_
20 #define _uncal_date_list_h_
21 
22 #include "uncal_date.h"
23 #include "cal_curve.h"
24 #include "cal_date_list.h"
25 #include <vector>
26 
27 using namespace std;
28 
30  public:
31  UncalDateList(vector<UncalDate> dates);
32  UncalDateList();
33  vector<UncalDate> get_dates();
34  void push_back(UncalDate date);
35  CalDateList calibrate(CalCurve &calcurve);
36  private:
37  vector<UncalDate> _dates;
38 };
39 
40 #endif
Represents a list of uncalibrated dates.
Represents a list of calibrated dates.
Definition: cal_date_list.h:27
Represents an uncalibrated date.
Definition: uncal_date.h:30
Represents the calibration curve.
Definition: cal_curve.h:32