Isis Developer Reference
Mixed.h
Go to the documentation of this file.
1 #ifndef Mixed_h
2 #define Mixed_h
3 
8 /* SPDX-License-Identifier: CC0-1.0 */
9 
10 #include "NormModel.h"
11 
12 namespace Isis {
13  class Pvl;
14 
47  class Mixed : public NormModel {
48  public:
49  Mixed(Pvl &pvl, PhotoModel &pmodel);
50  virtual ~Mixed() {};
51 
52  protected:
53  virtual void NormModelAlgorithm(double pha, double inc, double ema,
54  double dn, double &albedo, double &mult, double &base) {};
55  virtual void NormModelAlgorithm(double pha, double inc, double ema,
56  double deminc, double demema, double dn, double &albedo,
57  double &mult, double &base);
58 
59  private:
61  void SetNormPharef(const double pharef);
62  void SetNormIncref(const double incref);
63  void SetNormEmaref(const double emaref);
64  void SetNormPhamat(const double phamat);
65  void SetNormIncmat(const double incmat);
66  void SetNormEmamat(const double emamat);
67  void SetNormThresh(const double thresh);
68  void SetNormAlbedo(const double albedo);
69 
70  double p_psurfmatch;
71  double p_pprimematch;
72  double p_anum;
73  double p_rhobar;
74  double p_psurfref;
75  double p_normPharef;
76  double p_normIncref;
77  double p_normEmaref;
78  double p_normThresh;
79  double p_normPhamat;
80  double p_normIncmat;
81  double p_normEmamat;
82  double p_normAlbedo;
83  };
84 };
85 
86 #endif
Isis::PhotoModel
Definition: PhotoModel.h:41
Isis::Mixed::Mixed
Mixed(Pvl &pvl, PhotoModel &pmodel)
Definition: Mixed.cpp:13
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::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
Isis::PvlObject::Traverse
@ Traverse
Search child objects.
Definition: PvlObject.h:158
Isis::NormModel
Definition: NormModel.h:36
Mixed.h
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::Mixed::~Mixed
virtual ~Mixed()
Definition: Mixed.h:50
MixedPlugin
Isis::NormModel * MixedPlugin(Isis::Pvl &pvl, Isis::PhotoModel &pmodel)
Definition: Mixed.cpp:279
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::Mixed::NormModelAlgorithm
virtual void NormModelAlgorithm(double pha, double inc, double ema, double dn, double &albedo, double &mult, double &base)
Definition: Mixed.h:53
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
Isis::Mixed
Mixed albedo/topo normalization without atmosphere.
Definition: Mixed.h:47