Isis Developer Reference
ShadeAtm.h
Go to the documentation of this file.
1 #ifndef ShadeAtm_h
2 #define ShadeAtm_h
3 
8 /* SPDX-License-Identifier: CC0-1.0 */
9 
10 #include "NormModel.h"
11 
12 namespace Isis {
13  class Pvl;
14 
35  class ShadeAtm : public NormModel {
36  public:
37  ShadeAtm(Pvl &pvl, PhotoModel &pmodel, AtmosModel &amodel);
38  virtual ~ShadeAtm() {};
39 
40  protected:
41  virtual void NormModelAlgorithm(double pha, double inc, double ema,
42  double dn, double &albedo, double &mult, double &base) {};
43  virtual void NormModelAlgorithm(double pha, double inc, double ema,
44  double deminc, double demema, double dn, double &albedo,
45  double &mult, double &base);
46 
47  private:
48  void SetNormPharef(const double pharef);
49  void SetNormIncref(const double incref);
50  void SetNormEmaref(const double emaref);
51  void SetNormAlbedo(const double albedo);
52 
53  double p_normPharef;
54  double p_normIncref;
55  double p_normEmaref;
56  double p_normAlbedo;
57 
58  };
59 };
60 
61 #endif
Isis::NumericalApproximation::Extrapolate
@ Extrapolate
Evaluate() attempts to extrapolate if a is outside of the domain. This is only valid for NumericalApp...
Definition: NumericalApproximation.h:814
Isis::PhotoModel
Definition: PhotoModel.h:41
Isis::PI
const double PI
The mathematical constant PI.
Definition: Constants.h:40
AtmosModel.h
Isis::ShadeAtm::NormModelAlgorithm
virtual void NormModelAlgorithm(double pha, double inc, double ema, double dn, double &albedo, double &mult, double &base)
Definition: ShadeAtm.h:41
Isis::IException::Unknown
@ Unknown
A type of error that cannot be classified as any of the other error types.
Definition: IException.h:118
Isis::AtmosModel
Isotropic atmos scattering model.
Definition: AtmosModel.h:60
Isis::PvlContainer::hasKeyword
bool hasKeyword(const QString &name) const
Check to see if a keyword exists.
Definition: PvlContainer.cpp:159
Isis::PhotoModel::CalcSurfAlbedo
double CalcSurfAlbedo(double pha, double inc, double ema)
Calculate the surface brightness using photometric angle information.
Definition: PhotoModel.cpp:177
Isis::Pvl
Container for cube-like labels.
Definition: Pvl.h:119
Isis::ShadeAtm::ShadeAtm
ShadeAtm(Pvl &pvl, PhotoModel &pmodel, AtmosModel &amodel)
Definition: ShadeAtm.cpp:14
NumericalApproximation.h
ShadeAtm.h
Isis::PvlObject::Traverse
@ Traverse
Search child objects.
Definition: PvlObject.h:158
Isis::NormModel
Definition: NormModel.h:36
Isis::PvlGroup
Contains multiple PvlContainers.
Definition: PvlGroup.h:41
_FILEINFO_
#define _FILEINFO_
Macro for the filename and line number.
Definition: IException.h:24
Isis::AtmosModel::GenerateAhTable
void GenerateAhTable()
This method computes the values of the atmospheric Ah table and sets the properties of the atmospheri...
Definition: AtmosModel.cpp:537
Isis::AtmosModel::AtmosAhSpline
NumericalApproximation AtmosAhSpline()
If GenerateAhTable() has been called this returns a clamped cubic spline of the data set (p_atmosIncT...
Definition: AtmosModel.h:183
Isis::PvlObject::findObject
PvlObjectIterator findObject(const QString &name, PvlObjectIterator beg, PvlObjectIterator end)
Find the index of object with a specified name, between two indexes.
Definition: PvlObject.h:274
NormModel.h
Isis::IException
Isis exception class.
Definition: IException.h:91
Isis::PhotoModel::SetStandardConditions
virtual void SetStandardConditions(bool standard)
Sets whether standard conditions will be used.
Definition: PhotoModel.cpp:50
Isis::AtmosModel::AtmosAb
double AtmosAb() const
Return atmospheric Ab value.
Definition: AtmosModel.h:139
IException.h
Isis::NormModel::GetAtmosModel
AtmosModel * GetAtmosModel()
Definition: NormModel.h:69
Isis::ShadeAtm::~ShadeAtm
virtual ~ShadeAtm()
Definition: ShadeAtm.h:38
ShadeAtmPlugin
Isis::NormModel * ShadeAtmPlugin(Isis::Pvl &pvl, Isis::PhotoModel &pmodel, Isis::AtmosModel &amodel)
Definition: ShadeAtm.cpp:183
Isis::NormModel::GetPhotoModel
PhotoModel * GetPhotoModel()
Definition: NormModel.h:66
Isis::ShadeAtm
Definition: ShadeAtm.h:35
Isis::IString
Adds specific functionality to C++ strings.
Definition: IString.h:165
Isis::AtmosModel::CalcAtmEffect
void CalcAtmEffect(double pha, double inc, double ema, double *pstd, double *trans, double *trans0, double *sbar, double *transs)
Calculate the atmospheric scattering effect using photometric angle information.
Definition: AtmosModel.cpp:475
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16
Isis::IException::User
@ User
A type of error that could only have occurred due to a mistake on the user's part (e....
Definition: IException.h:126