From db1d374b7a24b8f3f74e17d706704d93f1e66d90 Mon Sep 17 00:00:00 2001 From: astrojhgu Date: Mon, 8 Feb 2010 09:23:14 +0000 Subject: git-svn-id: file:///home/svn/opt_utilities@110 ed2142bd-67ad-457f-ba7c-d818d4011675 --- vmodels/beta1d.hpp | 64 ++++++++++++++++++++++++++++++++++++++++++ vmodels/constant.hpp | 54 ++++++++++++++++++++++++++++++++++++ vmodels/poly1d.hpp | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 196 insertions(+) create mode 100644 vmodels/beta1d.hpp create mode 100644 vmodels/constant.hpp create mode 100644 vmodels/poly1d.hpp (limited to 'vmodels') diff --git a/vmodels/beta1d.hpp b/vmodels/beta1d.hpp new file mode 100644 index 0000000..42be3fd --- /dev/null +++ b/vmodels/beta1d.hpp @@ -0,0 +1,64 @@ +#ifndef VBETA_MODEL_H_ +#define VBETA_MODEL_H_ +#define OPT_HEADER +#include +#include +#include + +namespace opt_utilities +{ + template + class beta1d + :public model,optvec,optvec,std::string> + { + typedef optvec Tv; + private: + beta1d* do_clone()const + { + return new beta1d(*this); + } + + const char* do_get_type_name()const + { + return "1d surface brightness beta model"; + } + public: + beta1d() + { + this->push_param_info(param_info("S0",1)); + this->push_param_info(param_info("rc",10)); + this->push_param_info(param_info("beta",2./3.)); + this->push_param_info(param_info("bkg",0)); + } + + public: + Tv do_eval(const Tv& x,const Tv& param) + { + Tv result(x.size()); + T S0=get_element(param,0); + T r_c=get_element(param,1); + T beta=get_element(param,2); + T bkg=get_element(param,3); + + //return x*get_element(param,0)+get_element(param,1); + for(size_t i=0;i!=x.size();++i) + { + + result[i]=bkg+S0*pow(1+(x[i]*x[i])/(r_c*r_c),-3*beta+static_cast(.5)); + + } + return result; + } + + private: + std::string do_get_information()const + { + return ""; + } + }; +} + + + +#endif +//EOF diff --git a/vmodels/constant.hpp b/vmodels/constant.hpp new file mode 100644 index 0000000..c4044b0 --- /dev/null +++ b/vmodels/constant.hpp @@ -0,0 +1,54 @@ +#ifndef VCONSTANT_MODEL_H_ +#define VCONSTANT_MODEL_H_ +#define OPT_HEADER +#include +#include +#include + +namespace opt_utilities +{ + template + class constant + :public model,optvec,optvec,std::string> + { + typedef optvec Tv; + private: + constant* do_clone()const + { + return new constant(*this); + } + const char* do_get_type_name()const + { + return "constant"; + } + public: + constant() + { + this->push_param_info(param_info("c",1)); + } + + public: + Tv do_eval(const Tv& x,const Tv& param) + { + //return x*param[0]+param[1]; + Tv result(x.size()); + for(int i=0;i +#include +#include +#include + +namespace opt_utilities +{ + template + class poly1d + :public model,optvec,optvec,std::string> + { + typedef optvec Tv; + private: + poly1d* do_clone()const + { + return new poly1d(*this); + } + + const char* do_get_type_name()const + { + return "polynomial"; + } + public: + poly1d() + { + assert(n>=0); + for(int i=0;i<=n;++i) + { + std::ostringstream ostr; + ostr<<"a"<push_param_info(param_info(ostr.str().c_str(),1)); + } + + } + + public: + Tv do_eval(const Tv& x,const Tv& param) + { + // return x*get_element(param,0)+get_element(param,1); + Tv result(x.size()); + for(int m=0;m