00001
00002
00003 #ifndef __ASGELECTRONISEMSELECTRONCONFIGHELPER__
00004 #define __ASGELECTRONISEMSELECTRONCONFIGHELPER__
00005
00011 #include <string>
00012 #include <vector>
00013 #include <map>
00014 class TEnv;
00015
00016 namespace AsgConfigHelper{
00017 std::string findConfigFile (std::string input, const std::map<std::string,std::string>& configmap);
00018 unsigned int findMask (std::string input, const std::map<std::string,unsigned int>& maskmap);
00019 std::vector<double> HelperDouble(const std::string& input, TEnv& env);
00020 std::vector<float> HelperFloat(const std::string& input, TEnv& env);
00021 std::vector<int> HelperInt(const std::string& input, TEnv& env);
00022 }
00023
00024
00025 #endif