#include "TGFrame.h"
#include "TTreeInput.h"
#include "TGButton.h"
#include "TGComboBox.h"
#include "TGLabel.h"
#include "TGTextEntry.h"
#include "TGNumberEntry.h"
#include "TGTab.h"
#include "TGColorSelect.h"
#include "TBackCompFitter.h"
#include "TF1.h"
enum EAdvanceGraphicsDialog {
kAGD_TMETHOD, kAGD_CONTOURMETHOD, kAGD_SCANMETHOD,
kAGD_CONTPAR1, kAGD_CONTPAR2, kAGD_CONTERR,
kAGD_CONTOVER, kAGD_CONTCOLOR,
kAGD_BDRAW, kAGD_BCLOSE,
kAGD_SCANPAR, kAGD_SCANMIN, kAGD_SCANMAX,
kAGD_PARCOUNTER = 1000
};
#ifndef __TAdvancedGraphicsDialog__
#define __TAdvancedGraphicsDialog__
class TAdvancedGraphicsDialog : public TGTransientFrame {
private:
TGVerticalFrame *fMainFrame;
TGTab *fTab;
TGVerticalFrame *fContourFrame;
TGNumberEntry *fContourPoints;
TGComboBox *fContourPar1;
TGComboBox *fContourPar2;
TGNumberEntry *fContourError;
TGCheckButton *fContourOver;
TGColorSelect *fContourColor;
TGVerticalFrame *fScanFrame;
TGNumberEntry *fScanPoints;
TGComboBox *fScanPar;
TGNumberEntry *fScanMin;
TGNumberEntry *fScanMax;
TGTextButton *fDraw;
TGTextButton *fClose;
TBackCompFitter *fFitter;
void CreateContourFrame();
void CreateScanFrame();
void AddParameters(TGComboBox*);
void DrawContour();
void DrawScan();
void ConnectSlots();
TAdvancedGraphicsDialog(const TAdvancedGraphicsDialog&);
TAdvancedGraphicsDialog &operator= (const TAdvancedGraphicsDialog&);
public:
TAdvancedGraphicsDialog(const TGWindow *p, const TGWindow *main);
~TAdvancedGraphicsDialog();
void DoDraw();
void DoChangedScanPar(Int_t selected);
ClassDef(TAdvancedGraphicsDialog, 0)
};
#endif
Last change: Tue Dec 16 12:24:08 2008
Last generated: 2008-12-16 12:24
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.