00001
00002
00003
00004
00005
00006
00007 #ifndef AIDA_IPLOTTERLAYOUT_H
00008 #define AIDA_IPLOTTERLAYOUT_H 1
00009
00010
00011
00012
00013
00014
00015 #include <string>
00016 #include <vector>
00017
00018 namespace AIDA {
00019
00028 class IPlotterLayout {
00029
00030 public:
00032 virtual ~IPlotterLayout() { ; }
00033
00038 virtual void reset() = 0;
00039
00046 virtual bool setParameter(const std::string & paramName, double paramValue) = 0;
00047
00051 virtual double parameterValue(const std::string & paramName) = 0;
00052
00056 virtual std::vector<std::string> availableParameters() const = 0;
00057 };
00058 };
00059 #endif