
#ifndef _WaterfallLookup_
#define _WaterfallLookup_

#include <stdio.h>
#include <iostream>

using namespace std;

class WaterfallLookup{

 public:
  WaterfallLookup();
  void printTestValues();
  void init();
  
  float* getValue(float inval);
  // returns an rgb triple for the input value

 private:
  
  float value[3];
  float white[3], deepskyblue[3], aqua[3], mediumblue[3];

};

#endif 

