#ifndef HEP_HepNtuplePlotCmd
#define HEP_HepNtuplePlotCmd
#ifndef ROOT_TObject
#include <TObject.h>
#endif
#ifndef ROOT_TString
#include <TString.h>
#endif
class HepNtuplePlotCmd : public TObject {
private:
TString fTreeName;
TString fVarExp;
TString fSelection;
TString fPlotName;
TString fPlotTitle;
Int_t fNbins;
Double_t fXlow;
Double_t fXup;
TString fXTitle;
TString fYTitle;
public:
HepNtuplePlotCmd(const char* TreeName, const char* VarExp,
const char* Selction, const char* PlotName,
const char* PlotTitle, Int_t Nbins,
Double_t Xlow, Double_t Xup, const char* XTitle,
const char* YTitle);
virtual ~HepNtuplePlotCmd();
const char* GetTreeName()const { return fTreeName; }
const char* GetVarExp() const { return fVarExp; }
const char* GetSelection() const { return fSelection; }
const char* GetPlotName() const { return fPlotName; }
const char* GetPlotTitle() const { return fPlotTitle; }
Int_t GetNbins() const { return fNbins; }
Double_t GetXlow() const { return fXlow; }
Double_t GetXup() const { return fXup; }
const char* GetXTitle() const { return fXTitle; }
const char* GetYTitle() const { return fYTitle; }
ClassDef(HepNtuplePlotCmd,0)
};
#endif