Isis 3 Programmer Reference
HapkeAtm1.h
1 #if !defined(HapkeAtm1_h)
2 #define HapkeAtm1_h
3 
8 /* SPDX-License-Identifier: CC0-1.0 */
9 
10 #include "AtmosModel.h"
11 
12 namespace Isis {
13  class Pvl;
14 
40  class HapkeAtm1 : public AtmosModel {
41  public:
42  HapkeAtm1(Pvl &pvl, PhotoModel &pmodel);
43  virtual ~HapkeAtm1() {};
44 
45  protected:
46  virtual void AtmosModelAlgorithm(double phase, double incidence, double emission);
47 
48  private:
49  double p_e2, p_e3, p_e4, p_e5;
50 
51  double p_x0, p_y0;
52  double p_wha2;
53  double p_alpha0, p_alpha1, p_alpha2;
54  double p_beta0, p_beta1, p_beta2;
55  double p_delta;
56  double p_fixcon;
57  double p_gammax, p_gammay;
58  };
59 };
60 
61 #endif
Isis::PhotoModel
Definition: PhotoModel.h:41
Isis::HapkeAtm1
Implements the Hapke Atmospheric Model.
Definition: HapkeAtm1.h:40
Isis::AtmosModel
Isotropic atmos scattering model.
Definition: AtmosModel.h:60
Isis::Pvl
Container for cube-like labels.
Definition: Pvl.h:119
Isis::HapkeAtm1::AtmosModelAlgorithm
virtual void AtmosModelAlgorithm(double phase, double incidence, double emission)
Henyey-Greenstein atmos scattering in the 1st approximation.
Definition: HapkeAtm1.cpp:63
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16