8#ifndef mx_astro_astroSpectrum_hpp
9#define mx_astro_astroSpectrum_hpp
13#include "../sys/environment.hpp"
14#include "../ioutils/readColumns.hpp"
15#include "../math/gslInterpolation.hpp"
16#include "constants.hpp"
28template <
typename realT>
64 template <
typename compSpectrumT>
70 for(
int i = 0; i <
_spectrum.size(); ++i )
86 for(
int i = 0; i <
_spectrum.size(); ++i )
103 template <
typename compSpectrumT>
104 realT
mean(
const compSpectrumT &T )
106 realT sum1 = 0, sum2 = 0;
108 for(
int i = 0; i <
_spectrum.size(); ++i )
136 std::vector<realT> &lambda
139 size_t N = lambda.size();
140 realT dl = lambda[1] - lambda[0];
141 realT half =
static_cast<realT
>( 0.5 );
144 for(
int i = 0; i < N; ++i )
151 for(
int i = 1; i < N - 1; ++i )
156 lambda0 = half * lambda[0] *
_spectrum[0];
157 for(
int i = 1; i < N - 1; ++i )
159 lambda0 += half * lambda[N - 1] *
_spectrum[N - 1];
160 lambda0 *= dl / max / weff;
165 while( i < lambda.size() )
200 template <
class filterT>
204 const realT &lambda_0,
205 const std::vector<realT> &lambda,
210 charFlux( flambda0, fnu0, fphot0, lambda_0, lambda, trans._spectrum );
228 const realT &lambda_0,
229 const std::vector<realT> &lambda,
230 const std::vector<realT> &trans
234 constexpr realT h = constants::h<units::si<realT>>();
235 constexpr realT c = constants::c<units::si<realT>>();
237 size_t N = lambda.size();
238 realT dl = lambda[1] - lambda[0];
239 realT half =
static_cast<realT
>( 0.5 );
243 realT denom = half * trans[0] * lambda[0];
244 for(
int i = 1; i < N - 1; ++i )
245 denom += trans[i] * lambda[i];
246 denom += half * trans[N - 1] * lambda[N - 1];
249 realT num = half *
_spectrum[0] * trans[0] * lambda[0];
250 for(
int i = 1; i < N - 1; ++i )
251 num +=
_spectrum[i] * trans[i] * lambda[i];
252 num += half *
_spectrum[N - 1] * trans[N - 1] * lambda[N - 1];
255 flambda0 = num / denom;
259 denom = half * trans[0] / lambda[0];
260 for(
int i = 1; i < N - 1; ++i )
261 denom += trans[i] / lambda[i];
262 denom += half * trans[N - 1] / lambda[N - 1];
269 fphot0 = flambda0 * lambda_0 / ( h * c );
288template <
typename _spectrumT,
bool freq = false>
291 typedef _spectrumT spectrumT;
292 typedef typename spectrumT::units units;
293 typedef typename units::realT realT;
294 typedef typename spectrumT::paramsT paramsT;
314 const std::string &dataDir
325 if( spectrumT::dataDirEnvVar )
339 const std::string &dataDir
349 template <
typename gr
idT>
352 std::vector<realT> rawLambda;
353 std::vector<realT> rawSpectrum;
355 std::string fileName = spectrumT::fileName(
_params );
359 if( fileName.size() < 1 )
361 mxError(
"astroSpectrum", MXE_PARAMNOTSET,
"fileName is empty" );
365 if(
_dataDir ==
"" && fileName[0] ==
'/' )
377 if( spectrumT::readSpectrum( rawLambda, rawSpectrum, path,
_params ) < 0 )
383 for(
int i = 0; i < rawLambda.size(); ++i )
385 rawLambda[i] /= spectrumT::wavelengthUnits / ( units::length );
386 rawSpectrum[i] /= spectrumT::fluxUnits /
387 ( units::energy / ( units::time * units::length * units::length * units::length ) );
392 for(
int i = 0; i < lambda.size(); ++i )
394 if( !std::isnormal( this->
_spectrum[i] ) )
int gsl_interpolate(const gsl_interp_type *interpT, realT *xin, realT *yin, size_t Nin, realT *xout, realT *yout, size_t Nout)
Interpolate a 1-D data X vs Y discrete function onto a new X axis.
std::string getEnv(const std::string &estr)
Return the value of an environment variable.
Class to manage an astronomical spectrum.
astroSpectrum()
Default c'tor.
int setSpectrum(gridT &lambda)
Load the spectrum and interpolate it onto a wavelength scale.
int setParameters(const paramsT ¶ms)
Set the parameters of the spectrum, using the underlying spectrums parameter type.
int setParameters(const paramsT ¶ms, const std::string &dataDir)
Set the parameters of the spectrum, using the underlying spectrum's parameter type.
astroSpectrum(const paramsT ¶ms, const std::string &dataDir)
Constructor specifying name and data directory.
std::string _dataDir
The directory containing the spectrum.
astroSpectrum(const paramsT ¶ms)
Constructor specifying name, the enivronment will be queried for data directory.
Base spectrum class which provides manipulation and characterization functionality.
size_t size()
Get the current size of the spectrum.
const realT operator[](size_t i) const
Access a single point in the spectrum, specified by its vector index.
void charTrans(realT &lambda0, realT &weff, realT &max, realT &fwhm, std::vector< realT > &lambda)
Characterize the spectrum as a filter transmission curve.
realT & operator[](size_t i)
Access a single point in the spectrum, specified by its vector index.
realT mean()
Calculate the mean value of the spectrum.
void charFlux(realT &flambda0, realT &fnu0, realT &fphot0, const realT &lambda_0, const std::vector< realT > &lambda, const std::vector< realT > &trans)
Characterize the flux densities of the spectrum w.r.t. a filter transmission curve.
void charFlux(realT &flambda0, realT &fnu0, realT &fphot0, const realT &lambda_0, const std::vector< realT > &lambda, const filterT &trans)
Characterize the flux densities of the spectrum w.r.t. a filter transmission curve.
std::vector< realT > _spectrum
Contains the spectrum after it is set.
baseSpectrum< realT > operator*(const compSpectrumT &spec)
Multiply two spectra together.
realT mean(const compSpectrumT &T)
Calculate the mean value of the spectrum when mutiplied by another.
Unit specifications and conversions.