Isis Developer Reference
Topo.h
Go to the documentation of this file.
1 #ifndef Topo_h
2 #define Topo_h
3 
8 /* SPDX-License-Identifier: CC0-1.0 */
9 
10 #include "NormModel.h"
11 
12 namespace Isis {
13  class Pvl;
14 
31  class Topo : public NormModel {
32  public:
33  Topo(Pvl &pvl, PhotoModel &pmodel);
34  virtual ~Topo() {};
35 
36  protected:
37  virtual void NormModelAlgorithm(double pha, double inc, double ema,
38  double dn, double &albedo, double &mult, double &base) {};
39  virtual void NormModelAlgorithm(double pha, double inc, double ema,
40  double deminc, double demema, double dn, double &albedo,
41  double &mult, double &base);
42 
43  private:
44 
45  void SetNormPharef(const double pharef);
46  void SetNormIncref(const double incref);
47  void SetNormEmaref(const double emaref);
48  void SetNormThresh(const double thresh);
49  void SetNormAlbedo(const double albedo);
50 
51  double p_normPharef;
52  double p_normIncref;
53  double p_normEmaref;
54  double p_normThresh;
55  double p_normAlbedo;
56 
57  };
58 };
59 
60 #endif
Isis::Topo::Topo
Topo(Pvl &pvl, PhotoModel &pmodel)
Definition: Topo.cpp:15
Topo.h
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
Isis::Topo::~Topo
virtual ~Topo()
Definition: Topo.h:34
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::PhotoModel::PhtTopder
double PhtTopder(double phase, double incidence, double emission)
Obtain topographic derivative of an arbitrary photometric function.
Definition: PhotoModel.cpp:64
TopoPlugin
Isis::NormModel * TopoPlugin(Isis::Pvl &pvl, Isis::PhotoModel &pmodel)
Definition: Topo.cpp:186
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::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
Isis::Topo::NormModelAlgorithm
virtual void NormModelAlgorithm(double pha, double inc, double ema, double dn, double &albedo, double &mult, double &base)
Definition: Topo.h:37
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::IString
Adds specific functionality to C++ strings.
Definition: IString.h:165
Isis::Topo
Topographic derivative of an arbitrary photometric function.
Definition: Topo.h:31
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