ARB
PH_filter.hxx
Go to the documentation of this file.
1 // =========================================================== //
2 // //
3 // File : PH_filter.hxx //
4 // Purpose : //
5 // //
6 // Institute of Microbiology (Technical University Munich) //
7 // http://www.arb-home.de/ //
8 // //
9 // =========================================================== //
10 
11 #ifndef PH_FILTER_HXX
12 #define PH_FILTER_HXX
13 
14 #ifndef ARBTOOLS_H
15 #include <arbtools.h>
16 #endif
17 
18 class PH_filter : virtual Noncopyable {
19  char *filter; // 0 1
20  long filter_len;
21  long real_len; // how many 1
22  long update;
23 
24 public:
25 
26 
27  PH_filter();
28  ~PH_filter();
29 
30  char *init(long size);
31 
33 };
34 
35 #else
36 #error PH_filter.hxx included twice
37 #endif
38 
char * init(long size)
Definition: PH_filt.cxx:31
~PH_filter()
Definition: PH_filt.cxx:42
float * calculate_column_homology()
Definition: PH_filt.cxx:52
PH_filter()
Definition: PH_filt.cxx:27