Isis 3 Programmer Reference
NoOperator.h
1 #ifndef NoOperator_h
2 #define NoOperator_h
3 
8 /* SPDX-License-Identifier: CC0-1.0 */
9 
10 #include "InterestOperator.h"
11 
12 namespace Isis {
13  class Pvl;
14  class Chip;
15 
30  class NoOperator : public InterestOperator {
31  public:
32  NoOperator(Pvl &pvl) : InterestOperator(pvl) {
33  p_worstInterest = 0.0;
34  };
35  virtual ~NoOperator() {};
36 
37  protected:
38  virtual double Interest(Chip &chip);
39  };
40 };
41 
42 #endif
Isis::InterestOperator::InterestOperator
InterestOperator(Pvl &pPvl)
Create InterestOperator object.
Definition: InterestOperator.cpp:36
Isis::NoOperator
no interest operator
Definition: NoOperator.h:30
Isis::Pvl
Container for cube-like labels.
Definition: Pvl.h:119
Isis::Chip
A small chip of data used for pattern matching.
Definition: Chip.h:86
Isis::NoOperator::Interest
virtual double Interest(Chip &chip)
This method returns a constant so all points have equal interest.
Definition: NoOperator.cpp:19
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16
Isis::InterestOperator
Interest Operator class.
Definition: InterestOperator.h:109