#ifndef ROOT_Minuit2_MnPlot
#define ROOT_Minuit2_MnPlot
#include "Minuit2/MnConfig.h"
#include <vector>
#include <utility>
namespace ROOT {
namespace Minuit2 {
class MnPlot {
public:
MnPlot() : fPageWidth(80), fPageLength(30) {}
MnPlot(unsigned int width, unsigned int length) : fPageWidth(width), fPageLength(length) {
if(fPageWidth > 120) fPageWidth = 120;
if(fPageLength > 56) fPageLength = 56;
}
~MnPlot() {}
void operator()(const std::vector<std::pair<double,double> >&) const;
void operator()(double, double, const std::vector<std::pair<double,double> >&) const;
unsigned int Width() const {return fPageWidth;}
unsigned int Length() const {return fPageLength;}
private:
unsigned int fPageWidth;
unsigned int fPageLength;
};
}
}
#endif // ROOT_Minuit2_MnPlot
Last change: Wed Jun 25 08:30:40 2008
Last generated: 2008-06-25 08:30
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.