10 #ifndef ROOT_Minuit2_MnPlot
11 #define ROOT_Minuit2_MnPlot
30 MnPlot() : fPageWidth(80), fPageLength(30) {}
32 MnPlot(
unsigned int width,
unsigned int length) : fPageWidth(width), fPageLength(length) {
33 if(fPageWidth > 120) fPageWidth = 120;
34 if(fPageLength > 56) fPageLength = 56;
39 void operator()(
const std::vector<std::pair<double,double> >&)
const;
40 void operator()(
double,
double,
const std::vector<std::pair<double,double> >&)
const;
42 unsigned int Width()
const {
return fPageWidth;}
43 unsigned int Length()
const {
return fPageLength;}
47 unsigned int fPageWidth;
48 unsigned int fPageLength;
55 #endif // ROOT_Minuit2_MnPlot