1 #ifndef _RELATEDNESS_DATA_H_
2 #define _RELATEDNESS_DATA_H_
20 void write (std::ostream&)
const;
21 void read (std::istream&);
23 static Data * create(
const std::vector <std::string> & Columns){
37 float_t e_X_[E_LIM], e_X_ll;
38 float_t e_Y_[E_LIM], e_Y_ll;
44 float_t theta_XY_, theta_XY_ll;
45 float_t gamma_XY_, gamma_XY_ll;
46 float_t gamma_YX_, gamma_YX_ll;
47 float_t delta_XY_, delta_XY_ll;
48 float_t Delta_XY_, Delta_XY_ll;
49 float_t null_ll_, max_ll_;
55 Relatedness(
const std::string &,
const std::string &);
58 std::string
header(
void)
const;
60 size_t size(
void)
const;
77 const std::string get_file_name(
void)
const;
78 const std::string get_table_name(
void)
const;
80 static const bool binary;
82 const bool get_binary()
const;
A class which registers a child of Data in Data::new_data_.
Definition: data.h:222
A class which can be written as flat text file or into an SQL database.
Definition: data.h:34