Isis Developer Reference
LunarLambertEmpirical.h
Go to the documentation of this file.
1 #ifndef LunarLambertEmpirical_h
2 #define LunarLambertEmpirical_h
3 
8 /* SPDX-License-Identifier: CC0-1.0 */
9 
10 #include "NumericalApproximation.h"
11 #include "PhotoModel.h"
12 
13 namespace Isis {
14  class Pvl;
15 
48  public:
50  virtual ~LunarLambertEmpirical();
51 
52  void SetPhotoPhaseList(QString phasestrlist);
53  void SetPhotoPhaseList(PvlKeyword phaselist);
54  void SetPhotoLList(QString kstrlist);
55  void SetPhotoLList(PvlKeyword lstrList);
56  void SetPhotoPhaseCurveList(QString phasecurvestrlist);
57  void SetPhotoPhaseCurveList(PvlKeyword phasecurvestrlist);
58 
60 // inline std::vector<double> PhotoPhaseList() const {
61 // return p_photoPhaseList;
62 // };
64 // inline std::vector<double> PhotoLList() const {
65 // return p_photoLList;
66 // };
68 // inline std::vector<double> PhotoPhaseCurveList() const {
69 // return p_photoPhaseCurveList;
70 // };
71 
72  virtual double PhotoModelAlgorithm(double phase, double incidence,
73  double emission);
74 
75  private:
76 // int p_photoPhaseAngleCount;
77 // std::vector<double> p_photoPhaseList;
78 // std::vector<double> p_photoLList;
79 // std::vector<double> p_photoPhaseCurveList;
80 // NumericalApproximation p_photoLSpline;
81 // NumericalApproximation p_photoBSpline;
82  };
83 };
84 
85 #endif
LunarLambertEmpirical.h
Isis::PhotoModel::p_photoLList
std::vector< double > p_photoLList
Definition: PhotoModel.h:223
Isis::NumericalApproximation::SetInterpType
void SetInterpType(NumericalApproximation::InterpType itype)
Sets interpolation type.
Definition: NumericalApproximation.cpp:2319
Isis::NumericalApproximation::Extrapolate
@ Extrapolate
Evaluate() attempts to extrapolate if a is outside of the domain. This is only valid for NumericalApp...
Definition: NumericalApproximation.h:814
Isis::LunarLambertEmpirical::SetPhotoLList
void SetPhotoLList(QString kstrlist)
Set the empirical Lunar Lambert function L exponent list.
Definition: LunarLambertEmpirical.cpp:140
Isis::PhotoModel
Definition: PhotoModel.h:41
Isis::PI
const double PI
The mathematical constant PI.
Definition: Constants.h:40
Isis::PvlKeyword
A single keyword-value pair.
Definition: PvlKeyword.h:82
Isis::PhotoModel::p_photoBSpline
NumericalApproximation p_photoBSpline
Definition: PhotoModel.h:228
Isis::PhotoModel::p_photoLSpline
NumericalApproximation p_photoLSpline
Definition: PhotoModel.h:227
PhotoModel.h
Isis::PhotoModel::p_photoPhaseList
std::vector< double > p_photoPhaseList
Definition: PhotoModel.h:221
Isis::LunarLambertEmpirical::SetPhotoPhaseCurveList
void SetPhotoPhaseCurveList(QString phasecurvestrlist)
Set the empirical Lunar Lambert function phase curve list.
Definition: LunarLambertEmpirical.cpp:184
Isis::PvlContainer::hasKeyword
bool hasKeyword(const QString &name) const
Check to see if a keyword exists.
Definition: PvlContainer.cpp:159
Isis::Pvl
Container for cube-like labels.
Definition: Pvl.h:119
NumericalApproximation.h
LunarLambertEmpiricalPlugin
Isis::PhotoModel * LunarLambertEmpiricalPlugin(Isis::Pvl &pvl)
Definition: LunarLambertEmpirical.cpp:269
Isis::toString
QString toString(bool boolToConvert)
Global function to convert a boolean to a string.
Definition: IString.cpp:211
Isis::PvlObject::Traverse
@ Traverse
Search child objects.
Definition: PvlObject.h:158
Isis::PvlGroup
Contains multiple PvlContainers.
Definition: PvlGroup.h:41
_FILEINFO_
#define _FILEINFO_
Macro for the filename and line number.
Definition: IException.h:24
Isis::NumericalApproximation::CubicClamped
@ CubicClamped
Cubic Spline interpolation with clamped boundary conditions.
Definition: NumericalApproximation.h:735
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::LunarLambertEmpirical::LunarLambertEmpirical
LunarLambertEmpirical(Pvl &pvl)
Definition: LunarLambertEmpirical.cpp:12
Isis::IException
Isis exception class.
Definition: IException.h:91
IException.h
Isis::toDouble
double toDouble(const QString &string)
Global function to convert from a string to a double.
Definition: IString.cpp:149
Isis::NumericalApproximation::SetCubicClampedEndptDeriv
void SetCubicClampedEndptDeriv(const double yp1, const double ypn)
Sets the values for the first derivatives of the endpoints of the data set.
Definition: NumericalApproximation.cpp:565
Isis::LunarLambertEmpirical::~LunarLambertEmpirical
virtual ~LunarLambertEmpirical()
Definition: LunarLambertEmpirical.cpp:62
Isis::PhotoModel::p_photoPhaseAngleCount
int p_photoPhaseAngleCount
Definition: PhotoModel.h:225
Isis::NumericalApproximation::AddData
void AddData(const double x, const double y)
Add a datapoint to the set.
Definition: NumericalApproximation.cpp:440
Isis::NumericalApproximation::Evaluate
double Evaluate(const double a, const ExtrapType &etype=ThrowError)
Calculates interpolated or extrapolated value of tabulated data set for given domain value.
Definition: NumericalApproximation.cpp:836
Isis::IString::Token
IString Token(const IString &separator)
Returns the first token in the IString.
Definition: IString.cpp:897
Isis::PvlKeyword::size
int size() const
Returns the number of values stored in this keyword.
Definition: PvlKeyword.h:125
Isis::LunarLambertEmpirical::PhotoModelAlgorithm
virtual double PhotoModelAlgorithm(double phase, double incidence, double emission)
Return photometric phase angle list.
Definition: LunarLambertEmpirical.cpp:219
Isis::IString
Adds specific functionality to C++ strings.
Definition: IString.h:165
Isis::PhotoModel::p_photoPhaseCurveList
std::vector< double > p_photoPhaseCurveList
Definition: PhotoModel.h:224
Isis::LunarLambertEmpirical::SetPhotoPhaseList
void SetPhotoPhaseList(QString phasestrlist)
Set the empirical Lunar Lambert function phase angle list.
Definition: LunarLambertEmpirical.cpp:80
Isis::NumericalApproximation::Reset
void Reset()
Resets the state of the object.
Definition: NumericalApproximation.cpp:2251
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16
Isis::LunarLambertEmpirical
Empirical Lunar Lambert photometric model Derive model albedo using phase dependent Minnaert equation...
Definition: LunarLambertEmpirical.h:47
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