// marUtils.h: interface for the marUtils class. // ////////////////////////////////////////////////////////////////////// #ifndef __MAR__KERNEL__UTILS__HXX__ #define __MAR__KERNEL__UTILS__HXX__ #include #include class marUtils { public: marUtils(); ~marUtils(); double obtainAverage(std::vector list); double obtainStandardDeviation(std::vector list, double average); }; #endif