My Project
LCOMM.h
00001 #ifndef LCOMM_H
00002 #define LCOMM_H
00003 
00004 #include "cluster.h"
00005 
00012 template <typename R>
00013 class LCOMM: public ClusterAlg<R>{
00014 public:
00019   LCOMM(string a){
00020     this->args = a;
00021     this->dens = new complex_density<bidirected_t>(0);
00022   };
00023   
00028   ~LCOMM(){};
00029   
00033   void calculate();
00034   
00035 private:
00036 };
00037 
00038 #endif
 All Classes Files Functions Variables Typedefs