#ifndef HGUPSTOREOPTMED_H #define HGUPSTOREOPTMED_H #include "hadesstd.h" #include "hstring.h" #include #include "hgupstore.h" #include "hfloatvec.h" typedef HFloatVec FVec; class HGupStoreOptMed : public HGupStore { public: HGupStoreOptMed() {} ~HGupStoreOptMed() {} long storeObj(); void printInput(); void writeInput(ofstream & fout); HString mediumName; FVec ppckov; FVec absco; FVec effic; FVec rindex; private: int nOptParam; }; #endif