#ifndef ROO_TABLE
#define ROO_TABLE
#include "Riosfwd.h"
#include <assert.h>
#include "TNamed.h"
#include "RooAbsCategory.h"
#include "RooPrintable.h"
class RooTable : public TNamed, public RooPrintable {
public:
RooTable() {} ;
virtual ~RooTable() ;
RooTable(const char *name, const char *title);
RooTable(const RooTable& other) ;
virtual void fill(RooAbsCategory& cat, Double_t weight=1.0) = 0 ;
virtual Bool_t isIdentical(const RooTable& other) = 0 ;
protected:
ClassDef(RooTable,1)
};
#endif
Last change: Wed Jun 25 08:34:21 2008
Last generated: 2008-06-25 08:34
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.