#ifndef ROO_TABLE
#define ROO_TABLE
#include "Riostream.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 void printToStream(ostream& stream, PrintOption opt=Standard, TString indent="") const ;
  inline virtual void Print(Option_t *options= 0) const {
    printToStream(defaultStream(),parseOptions(options));
  }
protected:
  ClassDef(RooTable,1) 
};
#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.