From 5a4dfd8ac3d47ceec08be073b7eaa318ea42e41d Mon Sep 17 00:00:00 2001 From: astrojhgu Date: Sun, 29 Nov 2009 16:31:48 +0000 Subject: git-svn-id: file:///home/svn/opt_utilities@100 ed2142bd-67ad-457f-ba7c-d818d4011675 --- vmodel/bl.hpp | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++ vmodel/bpl.hpp | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++ vmodel/bremss.hpp | 50 +++++++++++++++++++++++++++++++++++++++ vmodel/gauss1d.hpp | 53 ++++++++++++++++++++++++++++++++++++++++++ vmodel/powerlaw.hpp | 50 +++++++++++++++++++++++++++++++++++++++ 5 files changed, 287 insertions(+) create mode 100644 vmodel/bl.hpp create mode 100644 vmodel/bpl.hpp create mode 100644 vmodel/bremss.hpp create mode 100644 vmodel/gauss1d.hpp create mode 100644 vmodel/powerlaw.hpp diff --git a/vmodel/bl.hpp b/vmodel/bl.hpp new file mode 100644 index 0000000..84d6ca5 --- /dev/null +++ b/vmodel/bl.hpp @@ -0,0 +1,67 @@ +#ifndef BROKEN_LINE_MODEL_H_ +#define BROKEN_LINE_MODEL_H_ +#define OPT_HEADER +#include +#include +#include +namespace opt_utilities +{ + template + class bl + :public model,optvec,optvec,std::string> + { + private: + model,optvec,optvec,std::string >* do_clone()const + { + return new bl(*this); + } + + const char* do_get_type_name()const + { + return "broken linear model"; + } + public: + bl() + { + this->push_param_info(param_info >("break point y value",1)); + this->push_param_info(param_info >("break point x value",1)); + this->push_param_info(param_info >("slop 1",1)); + this->push_param_info(param_info >("slop 2",1)); + } + + public: + optvec do_eval(const optvec& x,const optvec& param) + { + T x_b=get_element(param,0); + T f_b=get_element(param,1); + T k1=get_element(param,2); + T k2=get_element(param,3); + optvec result(x.size()); + for(int i=0;i +#include +#include + +namespace opt_utilities +{ + template + class bpl1d + :public model,optvec,optvec,std::string> + { + private: + bpl1d* do_clone()const + { + return new bpl1d(*this); + } + + const char* do_get_type_name()const + { + return "broken power law"; + } + public: + bpl1d() + { + this->push_param_info(param_info >("bpx",1)); + this->push_param_info(param_info >("bpy",1)); + this->push_param_info(param_info >("gamma1",1)); + this->push_param_info(param_info >("gamma2",1)); + } + + optvec do_eval(const optvec& x,const optvec& param) + { + T x_b=get_element(param,0); + T f_b=get_element(param,1); + T gamma1=get_element(param,2); + T gamma2=get_element(param,3); + + optvec result(x.size()); + for(int i=0;i +#include +#include + +namespace opt_utilities +{ + template + class bremss + :public model,optvec,optvec,std::string> + { + private: + bremss* do_clone()const + { + return new bremss(*this); + } + + const char* do_get_type_name()const + { + return "Bremsstrahlung emission"; + } + public: + bremss() + { + this->push_param_info(param_info >("norm",1)); + this->push_param_info(param_info >("kT",1)); + } + + optvec do_eval(const optvec& x,const optvec& param) + { + T norm=get_element(param,0); + T kT=get_element(param,1); + + return norm*sqrt(kT)*exp(-x/kT); + } + + private: + std::string do_get_information()const + { + return ""; + } + }; +} + + + +#endif +//EOF diff --git a/vmodel/gauss1d.hpp b/vmodel/gauss1d.hpp new file mode 100644 index 0000000..5576c89 --- /dev/null +++ b/vmodel/gauss1d.hpp @@ -0,0 +1,53 @@ +#ifndef GAUSS_MODEL_H_ +#define GAUSS_MODEL_H_ +#define OPT_HEADER +#include +#include +#include + +namespace opt_utilities +{ + template + class gauss1d + :public model,optvec,optvec,std::string> + { + private: + gauss1d* do_clone()const + { + return new gauss1d(*this); + } + + const char* do_get_type_name()const + { + return "1d gaussian"; + } + public: + gauss1d() + { + this->push_param_info(param_info >("N",1)); + this->push_param_info(param_info >("x0",0)); + this->push_param_info(param_info >("sigma",1)); + } + + public: + optvec do_eval(const optvec& x,const optvec& param) + { + T N=get_element(param,0); + T x0=get_element(param,1); + T sigma=get_element(param,2); + optvec y=(x-x0)/2./sigma; + return N*exp(-y*y); + } + + private: + std::string do_get_information()const + { + return ""; + } + }; +} + + + +#endif +//EOF diff --git a/vmodel/powerlaw.hpp b/vmodel/powerlaw.hpp new file mode 100644 index 0000000..1f05301 --- /dev/null +++ b/vmodel/powerlaw.hpp @@ -0,0 +1,50 @@ +#ifndef POWER_LAW_MODEL_H_ +#define POWER_LAW_MODEL_H_ +#define OPT_HEADER +#include +#include +#include + +namespace opt_utilities +{ + template + class powerlaw + :public model,optvec,optvec,std::string> + { + private: + powerlaw* do_clone()const + { + return new powerlaw(*this); + } + + const char* do_get_type_name()const + { + return "1d power law"; + } + public: + powerlaw() + { + this->push_param_info(param_info >("Ampl",1)); + this->push_param_info(param_info >("gamma",1)); + } + + optvec do_eval(const optvec& x,const optvec& param) + { + T A=get_element(param,0); + T gamma=get_element(param,1); + return A*pow(x,gamma); + } + + private: + std::string do_get_information()const + { + return "Simple power law model\n" + "y=A*x^gamma\n"; + } + }; +} + + + +#endif +//EOF -- cgit v1.2.2