Go to the documentation of this file.00001 #ifndef PhysicsTools_Utilities_ParameterMap_h
00002 #define PhysicsTools_Utilities_ParameterMap_h
00003 #include <map>
00004 #include <string>
00005 #include <vector>
00006
00007 namespace fit {
00008 struct parameter_t {
00009 double val, min, max, err;
00010 bool fixed;
00011 };
00012
00013 typedef std::map<std::string, parameter_t> parameterMap_t;
00014 typedef std::vector<std::pair<std::string, parameter_t> > parameterVector_t;
00015 }
00016
00017 #endif