Isis Developer Reference
Albedo.h
Go to the documentation of this file.
1 #ifndef Albedo_h
2 #define Albedo_h
3 
8 /* SPDX-License-Identifier: CC0-1.0 */
9 
10 #include "NormModel.h"
11 
12 namespace Isis {
13  class Pvl;
14 
43  class Albedo : public NormModel {
44  public:
45  Albedo(Pvl &pvl, PhotoModel &pmodel);
46  virtual ~Albedo() {};
47 
48  protected:
60  virtual void NormModelAlgorithm(double pha, double inc, double ema,
61  double dn, double &albedo, double &mult, double &base) {};
62  virtual void NormModelAlgorithm(double pha, double inc, double ema,
63  double deminc, double demema, double dn, double &albedo,
64  double &mult, double &base);
65 
66  private:
68  void SetNormPharef(const double pharef);
69  void SetNormIncref(const double incref);
70  void SetNormEmaref(const double emaref);
71  void SetNormIncmat(const double incmat);
72  void SetNormThresh(const double thresh);
73  void SetNormAlbedo(const double albedo);
74 
75  double p_normPsurfref;
76  double p_normPharef;
77  double p_normIncref;
78  double p_normEmaref;
79  double p_normThresh;
80  double p_normIncmat;
81  double p_normAlbedo;
82  };
83 };
84 
85 #endif
Isis::Albedo
Albedo normalization.
Definition: Albedo.h:43
Isis::PhotoModel
Definition: PhotoModel.h:41
SpecialPixel.h
Isis::IException::Unknown
@ Unknown
A type of error that cannot be classified as any of the other error types.
Definition: IException.h:118
AlbedoPlugin
Isis::NormModel * AlbedoPlugin(Isis::Pvl &pvl, Isis::PhotoModel &pmodel)
Definition: Albedo.cpp:209
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
Albedo.h
Isis::toString
QString toString(bool boolToConvert)
Global function to convert a boolean to a string.
Definition: IString.cpp:211
Isis::Albedo::Albedo
Albedo(Pvl &pvl, PhotoModel &pmodel)
Constructs an Albedo object.
Definition: Albedo.cpp:21
IString.h
Isis::PvlObject::Traverse
@ Traverse
Search child objects.
Definition: PvlObject.h:158
Isis::Albedo::NormModelAlgorithm
virtual void NormModelAlgorithm(double pha, double inc, double ema, double dn, double &albedo, double &mult, double &base)
Performs the normalization.
Definition: Albedo.h:60
Isis::Albedo::~Albedo
virtual ~Albedo()
Definition: Albedo.h:46
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::NULL8
const double NULL8
Definition: SpecialPixel.h:94
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
IException.h
Isis::NormModel::GetPhotoModel
PhotoModel * GetPhotoModel()
Definition: NormModel.h:66
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