Go to the documentation of this file.00001
00002 #ifndef pdf1d_builder_h
00003 #define pdf1d_builder_h
00004
00005
00006
00007
00008
00009
00010 #include <mbl/mbl_data_wrapper.h>
00011 #include <vsl/vsl_binary_io.h>
00012 #include <vcl_vector.h>
00013 #include <vcl_string.h>
00014 #include <vcl_iosfwd.h>
00015
00016
00017
00018 class pdf1d_pdf;
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 class pdf1d_builder
00030 {
00031 public:
00032
00033 pdf1d_builder();
00034
00035
00036 virtual ~pdf1d_builder();
00037
00038
00039 virtual pdf1d_pdf* new_model() const = 0;
00040
00041
00042 virtual vcl_string new_model_type() const =0;
00043
00044
00045 virtual void set_min_var(double min_var) =0;
00046
00047
00048 virtual double min_var() const =0;
00049
00050
00051 virtual void build(pdf1d_pdf& model,
00052 double mean) const = 0;
00053
00054
00055 virtual void build(pdf1d_pdf& model,
00056 mbl_data_wrapper<double>& data) const = 0;
00057
00058
00059
00060 virtual void build_from_array(pdf1d_pdf& model,
00061 const double* data, int n) const;
00062
00063
00064 virtual void weighted_build(pdf1d_pdf& model,
00065 mbl_data_wrapper<double>& data,
00066 const vcl_vector<double>& wts) const = 0;
00067
00068
00069 short version_no() const;
00070
00071
00072 virtual vcl_string is_a() const;
00073
00074
00075 virtual bool is_class(vcl_string const& s) const;
00076
00077
00078 virtual pdf1d_builder* clone() const = 0;
00079
00080
00081 virtual void print_summary(vcl_ostream& os) const = 0;
00082
00083
00084 virtual void b_write(vsl_b_ostream& bfs) const = 0;
00085
00086
00087 virtual void b_read(vsl_b_istream& bfs) = 0;
00088 };
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100 void vsl_add_to_binary_loader(const pdf1d_builder& b);
00101
00102
00103 void vsl_b_write(vsl_b_ostream& bfs, const pdf1d_builder& b);
00104
00105
00106 void vsl_b_read(vsl_b_istream& bfs, pdf1d_builder& b);
00107
00108
00109 void vsl_print_summary(vcl_ostream& os,const pdf1d_builder& b);
00110
00111
00112 void vsl_print_summary(vcl_ostream& os,const pdf1d_builder* b);
00113
00114
00115 vcl_ostream& operator<<(vcl_ostream& os,const pdf1d_builder& b);
00116
00117
00118 vcl_ostream& operator<<(vcl_ostream& os,const pdf1d_builder* b);
00119
00120 #endif // pdf1d_builder_h