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