Clustering de Proteine
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros
ensemble_cluster.h
Go to the documentation of this file.
1 #ifndef ENSEMBLE_CLUSTER_H
2 #define ENSEMBLE_CLUSTER_H
3 #include "cluster.h"
5 {
6  std::vector<Cluster * > m_cluster;
7  Clustering *parent;
8  double averageSpread;
9 public:
10  Ensemble_Cluster(Clustering *parent = NULL);
11  void addCluster(Cluster * var);
13  void setparent(Clustering *parent);
14  void calc_AverageSpread();
15  int getNbCluster();
16  double getAverageSpread();
18 };
19 
20 #endif // ENSEMBLE_CLUSTER_H