00001 #include<config.h> 00002 CPS_START_NAMESPACE 00003 //------------------------------------------------------------------ 00009 //------------------------------------------------------------------ 00010 00011 00012 #ifndef INCLUDED_ALG_PLAQ_H 00013 #define INCLUDED_ALG_PLAQ_H 00014 00015 CPS_END_NAMESPACE 00016 #include <util/lattice.h> 00017 #include <util/smalloc.h> 00018 #include <util/pmalloc.h> 00019 #include <alg/alg_base.h> 00020 #include <alg/common_arg.h> 00021 #include <alg/no_arg.h> 00022 CPS_START_NAMESPACE 00023 00024 00025 //------------------------------------------------------------------ 00027 00035 //------------------------------------------------------------------ 00036 class AlgPlaq : public Alg 00037 { 00038 private: 00039 char *cname; 00040 00041 NoArg *alg_plaq_arg; 00042 // The argument structure for the plaquette 00043 00044 Float norm_fac; 00045 // normalization factor 00046 00047 public: 00048 AlgPlaq(Lattice & latt, CommonArg *c_arg, NoArg *arg); 00049 00050 virtual ~AlgPlaq(); 00051 00052 void run(void); 00053 }; 00054 00055 00056 00057 #endif 00058 00059 00060 00061 00062 00063 CPS_END_NAMESPACE
1.3.9.1