26#ifndef radprofIntegral_hpp
27#define radprofIntegral_hpp
33#include "../mxException.hpp"
35#include "constants.hpp"
61template <
typename vectorScT,
typename vectorT>
66 typedef typename vectorT::value_type floatT;
68 static_assert( std::is_floating_point<typename std::remove_cv<floatT>::type>::value,
69 "radprofIntegral: function must be floating point" );
71 if( r.size() != p.size() )
84 s = p[0] *
pow( r[0], 2 );
87 s += 0.5 * p[n] * (
pow( r[n + 1], 2 ) -
pow( r[n], 2 ) );
89 for( n = 1; n < r.size() - 1; ++n )
91 s += p[n] * (
pow( r[n], 2 ) -
pow( r[n - 1], 2 ) );
94 s += 0.5 * p[n] * (
pow( r[n], 2 ) -
pow( r[n - 1], 2 ) );
mxException for a size error
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
vectorT::value_type radprofIntegral(vectorScT r, vectorT p, bool inczero=false)
Calculate the 2D integral given a radial profile.