diff options
author | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2009-11-29 16:31:48 +0000 |
---|---|---|
committer | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2009-11-29 16:31:48 +0000 |
commit | 5a4dfd8ac3d47ceec08be073b7eaa318ea42e41d (patch) | |
tree | b2903188dbf5cdbe39e5d8e2ffc287800c83c9da /vmodel/bremss.hpp | |
parent | 67688e30f4a5b3abfe34b3f96fd53168e3081242 (diff) | |
download | opt-utilities-5a4dfd8ac3d47ceec08be073b7eaa318ea42e41d.tar.bz2 |
git-svn-id: file:///home/svn/opt_utilities@100 ed2142bd-67ad-457f-ba7c-d818d4011675
Diffstat (limited to 'vmodel/bremss.hpp')
-rw-r--r-- | vmodel/bremss.hpp | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/vmodel/bremss.hpp b/vmodel/bremss.hpp new file mode 100644 index 0000000..12e1f71 --- /dev/null +++ b/vmodel/bremss.hpp @@ -0,0 +1,50 @@ +#ifndef BREMSS_MODEL_H_ +#define BREMSS_MODEL_H_ +#define OPT_HEADER +#include <core/fitter.hpp> +#include <cmath> +#include <misc/optvec.hpp> + +namespace opt_utilities +{ + template <typename T> + class bremss + :public model<optvec<T>,optvec<T>,optvec<T>,std::string> + { + private: + bremss* do_clone()const + { + return new bremss<T>(*this); + } + + const char* do_get_type_name()const + { + return "Bremsstrahlung emission"; + } + public: + bremss() + { + this->push_param_info(param_info<optvec<T> >("norm",1)); + this->push_param_info(param_info<optvec<T> >("kT",1)); + } + + optvec<T> do_eval(const optvec<T>& x,const optvec<T>& 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 |