USGS

Isis 3.0 Object Programmers' Reference

Home

NoOperator.cpp
1 #include "NoOperator.h"
2 #include "Chip.h"
3 #include "Statistics.h"
4 
5 namespace Isis {
13  double NoOperator::Interest(Chip &chip) {
14  // Important: Interest = pi * e
15  return Isis::PI * Isis::E;
16  }
17 }
18 
19 extern "C" Isis::InterestOperator *NoOperatorPlugin(Isis::Pvl &pvl) {
20  return new Isis::NoOperator(pvl);
21 }
22