/usr/include/Gyoto/GyotoUniformSpectrometer.h is in libgyoto1-dev 0.1.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | /**
* \file GyotoUniformSpectrometer.h
* \brief Uniformly spaced spectrometers
*
* Spectral channels are contiguous and uniformly spaced in either
* wavelength, frequency or log10 of
* either. Gyoto::Spectrometer::Uniform is registered four times in
* the factory: as kind="wave", "wavelog", "freq" and
* "freqlog". Example XML entity:
* \code
* <Spectrometer kind="wave" unit="µm" nsamples=10>
* 2.0 2.4
* </Spectrometer>
* \endcode
*
* The content of the entity yields the band pass expressed in "unit"
* or in log10(unit).
*
*/
/*
Copyright 2011-2013 Thibaut Paumard
This file is part of Gyoto.
Gyoto is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Gyoto is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Gyoto. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __GyotoUniformSpectrometer_H_
#define __GyotoUniformSpectrometer_H_
#include <GyotoSpectrometer.h>
namespace Gyoto{
namespace Spectrometer {
class Uniform;
}
}
/**
* \class Gyoto::Spectrometer::Uniform
* \brief Uniformly spaced spectrometers
*
* Spectral channels are contiguous and uniformly spaced in either
* wavelength, frequency or log10 of
* either. Gyoto::Spectrometer::Uniform is registered four times in
* the factory: as kind="wave", "wavelog", "freq" and
* "freqlog". Example XML entity:
* \code
* <Spectrometer kind="wave" unit="µm" nsamples=10>
* 2.0 2.4
* </Spectrometer>
* \endcode
*
* The content of the entity yields the band pass expressed in "unit"
* or in log10(unit).
*/
class Gyoto::Spectrometer::Uniform : public Gyoto::Spectrometer::Generic {
friend class Gyoto::SmartPointer<Gyoto::Spectrometer::Uniform>;
protected:
/**
* \brief boundaries of the spectro.
*
* Depending on the kind, band_ is stored in Hz, log10(Hz), m or log10(m).
*/
double band_[2];
void reset_(); ///< Computes boundaries_, midpoints_ and widths_
public:
Uniform() ; ///< Default constructor
Uniform(size_t nsamples, double band_min, double band_max,
kind_t kind); ///< Constructor setting everything
Uniform(const Uniform& ) ; ///< Copy constructor
Generic * clone() const; ///< Cloner
virtual ~Uniform() ; ///< Destructor
void setKind(kind_t);
/**
* \brief Set Generic::kind_ from a std::string
*
* Generic::kind_ will actually be set to one of Uniform::WaveKind,
* Uniform::WaveLogKind, Uniform::FreqKind or Uniform::FreqLogKind.
*
* \param name std::string, one of "wave", "wavelog", "freq" or
* "freqlog"
*/
void setKind(std::string name);
/**
* \brief Set Generic::nsamples_
*/
void setNSamples(size_t n);
/**
* \brief Set Uniform::band_
*
* \param nu 2-element vector, in Hz, m, log10(Hz) or log10(m)
* depending on Generic::kind_
*/
void setBand(double nu[2]);
/**
* \brief Set the spectral band boundaries in specified unit
*
* If kind is not specified, member kind_ is used. Else kind_ is updated.
*
* unit is actually the unit for 10^nu for freqlog and wavelog. Defaults:
* - kind==freq: nu in Hz
* - kind==freqlog: 10^nu in Hz
* - kind==wave: nu in meters
* - kind==wavelog: 10^nu in meters
*
*/
void setBand(double nu[2], std::string unit, std::string kind="");
double const * getBand() const ; ///< Get Uniform::band_
#ifdef GYOTO_USE_XERCES
public:
void fillElement(FactoryMessenger *fmp) const ;
/**
* \brief Main loop in the (templated) subcontractor
*
* In the case of Spectrometer::Complex, the setParameter() API is
* not sufficient: setParameters() needs acces to the
* FactoryMessenger to instanciate childs for the SubSpectrometers.
*/
virtual void setParameters(FactoryMessenger *fmp);
#endif
virtual int setParameter(std::string name,
std::string content,
std::string unit);
/**
* \brief "wave"
*
* Use this static member attribute to check whether a Spectrometer
* object spectro is of this kind:
* \code
* if (spectro->getKind() == Uniform::WaveKind) ... ;
* \endcode
*
*/
static kind_t const WaveKind; ///< "wave"
/**
* \brief "wavelog"
*
* Use this static member attribute to check whether a Spectrometer
* object spectro is of this kind:
* \code
* if (spectro->getKind() == Uniform::WaveLogKind) ... ;
* \endcode
*
*/
static kind_t const WaveLogKind;
/**
* \brief "freq"
*
* Use this static member attribute to check whether a Spectrometer
* object spectro is of this kind:
* \code
* if (spectro->getKind() == Uniform::FreqKind) ... ;
* \endcode
*
*/
static kind_t const FreqKind;
/**
* \brief "freqlog"
*
* Use this static member attribute to check whether a Spectrometer
* object spectro is of this kind:
* \code
* if (spectro->getKind() == Uniform::FreqLogKind) ... ;
* \endcode
*
*/
static kind_t const FreqLogKind;
};
#endif
|