#ifndef PEDESTALS_H #define PEDESTALS_H #include #include class Pedestals{ public: Pedestals(std::string pedFileName); static void getPedestals(std::map& m,std::map& s); static void getPedestal(int,double&,double&); private: static Pedestals *theInstance; static void readPedestals(std::string pedFileName); static std::map _mean; static std::map _sigma; }; #endif