//C++ #ifndef INTEGRATE_H #define INTEGRATE_H #include #include namespace Numerics { // Integrates a flux array between limits and returns // photon flux and erg flux. std::pair integrationKernel (const RealArray& energy, const RealArray& fluxArray, const Real& eMin, const Real& eMax); } #endif