source: tags/cvs_2_svn/STAT/st_quality.hxx

Last change on this file was 5011, checked in by baderk, 16 years ago

Reformat only (tabs,indention,…) - no code change

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 573 bytes
Line 
1
2class st_cq_stat {
3    double *likelihoods;
4    double *square_liks;
5    int *n_elems;
6public:
7    int size;
8    st_cq_stat(int size);
9    ~st_cq_stat();
10    void add(int pos, double likelihood);
11    char *generate_string();
12    int is_bad(); // 0 == ok, 1 strange, 2 bad, 3 very bad
13};
14
15class st_cq_info {
16public:
17    st_cq_stat ss2; // begin end statistic
18    st_cq_stat ss5; // 5 pieces
19    st_cq_stat ssu; // user defined bucket size
20    st_cq_stat sscon; // conserved / variable positions
21
22public:
23    st_cq_info(int seq_len, int bucket_size);
24
25    ~st_cq_info();
26};
Note: See TracBrowser for help on using the repository browser.