1 #ifndef SPECTRUM_EFFECT_IMP_BASE_H 2 #define SPECTRUM_EFFECT_IMP_BASE_H 27 virtual void print(std::ostream& Os,
bool Short_form =
false)
const { Os <<
desc(); }
33 virtual std::string
desc()
const {
return "SpectrumEffectImpBase"; }
47 const blitz::Array<bool, 1>& Used_flag)
virtual std::string desc() const
Description of object, to be printed to stream.
virtual boost::shared_ptr< SpectrumEffect > clone() const =0
Clone a SpectrumEffect object.
virtual void print(std::ostream &Os, bool Short_form=false) const
Print to stream.
As a design principle, we have each base class with the absolutely minimum interface needed for use f...
virtual ~SpectrumEffectImpBase()
This class models models any effects that need to be applied to high resolution spectra after the rad...
SpectrumEffectImpBase()
Default constructor, derived class should call init if they use this constructor. ...
It is common to have a class that is an Observable with a set of coefficients, a subset of which are ...
Contains classes to abstract away details in various Spurr Radiative Transfer software.
SpectrumEffectImpBase(const blitz::Array< double, 1 > &Coeff, const blitz::Array< bool, 1 > &Used_flag)
Constructor that sets the coefficient() and used_flag() values.