openModeller  Version 1.4.0
Raster.cpp
Go to the documentation of this file.
00001 
00030 #include <openmodeller/env_io/Map.hh>
00031 #include <openmodeller/env_io/Raster.hh>
00032 
00033 #include <openmodeller/Log.hh>
00034 
00035 #include <openmodeller/MapFormat.hh>
00036 
00037 #include <openmodeller/Exceptions.hh>
00038 
00039 #include <utility>
00040 using std::pair;
00041 
00042 using std::string;
00043 
00044 /****************************************************************/
00045 /**************************** Raster ****************************/
00046 
00047 /******************/
00048 /*** construtor ***/
00049 
00050 
00051 
00052 /*****************/
00053 /*** destrutor ***/
00054 
00055 Raster::~Raster()
00056 {}
00057 
00058 /*******************/
00059 /*** set Min Max ***/
00060 void
00061 Raster::setMinMax( Scalar min, Scalar max )
00062 {
00063   f_hdr.minmax = 1;
00064   f_hdr.vmin = min;
00065   f_hdr.vmax = max;
00066 }
00067