#ifndef ROOT_TCutG
#define ROOT_TCutG
#ifndef ROOT_TGraph
#include "TGraph.h"
#endif
class TH2;
class TCutG : public TGraph {
protected:
   TString      fVarX;         
   TString      fVarY;         
   TObject     *fObjectX;      
   TObject     *fObjectY;      
public:
   TCutG();
   TCutG(const TCutG &cutg);
   TCutG(const char *name, Int_t n);
   TCutG(const char *name, Int_t n, const Float_t *x, const Float_t *y);
   TCutG(const char *name, Int_t n, const Double_t *x, const Double_t *y);
   virtual ~TCutG();
   TObject       *GetObjectX() const {return fObjectX;}
   TObject       *GetObjectY() const {return fObjectY;}
   const char    *GetVarX() const {return fVarX.Data();}
   const char    *GetVarY() const {return fVarY.Data();}
   Double_t       Integral(TH2 *h, Option_t *option="") const;
   virtual Int_t  IsInside(Double_t x, Double_t y) const;
   virtual void   SavePrimitive(ostream &out, Option_t *option = "");
   virtual void   SetObjectX(TObject *obj) {fObjectX = obj;}
   virtual void   SetObjectY(TObject *obj) {fObjectY = obj;}
   virtual void   SetVarX(const char *varx); 
   virtual void   SetVarY(const char *vary); 
   ClassDef(TCutG,2)  
};
#endif
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.