1 /* boost random/uniform_on_sphere.hpp header file
3 * Copyright Jens Maurer 2000-2001
4 * Distributed under the Boost Software License, Version 1.0. (See
5 * accompanying file LICENSE_1_0.txt or copy at
6 * http://www.boost.org/LICENSE_1_0.txt)
8 * See http://www.boost.org for most recent version including documentation.
10 * $Id: uniform_on_sphere.hpp,v 1.11 2004/07/27 03:43:32 dgregor Exp $
13 * 2001-02-18 moved to individual header files
16 #ifndef BOOST_RANDOM_UNIFORM_ON_SPHERE_HPP
17 #define BOOST_RANDOM_UNIFORM_ON_SPHERE_HPP
20 #include <algorithm> // std::transform
21 #include <functional> // std::bind2nd, std::divides
22 #include <boost/random/normal_distribution.hpp>
26 template<class RealType = double, class Cont = std::vector<RealType> >
27 class uniform_on_sphere
30 typedef RealType input_type;
31 typedef Cont result_type;
33 explicit uniform_on_sphere(int dim = 2) : _container(dim), _dim(dim) { }
35 // compiler-generated copy ctor and assignment operator are fine
37 void reset() { _normal.reset(); }
39 template<class Engine>
40 const result_type & operator()(Engine& eng)
43 for(typename Cont::iterator it = _container.begin();
44 it != _container.end();
46 RealType val = _normal(eng);
50 #ifndef BOOST_NO_STDC_NAMESPACE
53 // for all i: result[i] /= sqrt(sqsum)
54 std::transform(_container.begin(), _container.end(), _container.begin(),
55 std::bind2nd(std::divides<RealType>(), sqrt(sqsum)));
59 #if !defined(BOOST_NO_OPERATORS_IN_NAMESPACE) && !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS)
60 template<class CharT, class Traits>
61 friend std::basic_ostream<CharT,Traits>&
62 operator<<(std::basic_ostream<CharT,Traits>& os, const uniform_on_sphere& sd)
68 template<class CharT, class Traits>
69 friend std::basic_istream<CharT,Traits>&
70 operator>>(std::basic_istream<CharT,Traits>& is, uniform_on_sphere& sd)
72 is >> std::ws >> sd._dim;
73 sd._container.resize(sd._dim);
79 normal_distribution<RealType> _normal;
80 result_type _container;
86 #endif // BOOST_RANDOM_UNIFORM_ON_SPHERE_HPP