Isis 3 Programmer Reference
Minnaert.h
Go to the documentation of this file.
1 #ifndef Minnaert_h
2 #define Minnaert_h
3 
26 #include "PhotoModel.h"
27 
28 namespace Isis {
29  class Pvl;
30 
58  class Minnaert : public PhotoModel {
59  public:
60  Minnaert(Pvl &pvl);
61  virtual ~Minnaert() {};
62 
63  void SetPhotoK(const double k);
65 // inline double PhotoK() const {
66 // return p_photoK;
67 // };
68 
69  protected:
70  virtual double PhotoModelAlgorithm(double phase, double incidence,
71  double emission);
72 
73  private:
74 // double p_photoK;
75 
76  };
77 };
78 
79 #endif
void SetPhotoK(const double k)
Set the Minnaert function exponent.
Definition: Minnaert.cpp:23
virtual double PhotoModelAlgorithm(double phase, double incidence, double emission)
Return photometric K value.
Definition: Minnaert.cpp:27
Container for cube-like labels.
Definition: Pvl.h:135
Minnaert photometric model Derive model albedo using Minnaert equation.
Definition: Minnaert.h:58
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31