/*****************************************************************************
 * Project: RooFit                                                           *
 * Package: RooFitCore                                                       *
 * @(#)root/roofitcore:$Id$
 * Authors:                                                                  *
 *   WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu       *
 *   DK, David Kirkby,    UC Irvine,         dkirkby@uci.edu                 *
 *                                                                           *
 * Copyright (c) 2000-2005, Regents of the University of California          *
 *                          and Stanford University. All rights reserved.    *
 *                                                                           *
 * Redistribution and use in source and binary forms,                        *
 * with or without modification, are permitted according to the terms        *
 * listed in LICENSE (http://roofit.sourceforge.net/license.txt)             *
 *****************************************************************************/

//////////////////////////////////////////////////////////////////////////////
//
// BEGIN_HTML
// RooTable is the abstract interface for table objects.
// Table objects are the category equivalent of RooPlot objects
// (which are used for real-valued objects)
// END_HTML
//

#include "RooFit.h"
#include "Riostream.h"

#include "RooTable.h"



using namespace std;

ClassImp(RooTable)



//_____________________________________________________________________________
RooTable::RooTable(const char *name, const char *title) : TNamed(name,title)
{
  // Constructor
}



//_____________________________________________________________________________
RooTable::RooTable(const RooTable& other) : TNamed(other), RooPrintable(other)
{
  // Copy constructor
}



//_____________________________________________________________________________
RooTable::~RooTable()
{
  // Destructor
}

 RooTable.cxx:1
 RooTable.cxx:2
 RooTable.cxx:3
 RooTable.cxx:4
 RooTable.cxx:5
 RooTable.cxx:6
 RooTable.cxx:7
 RooTable.cxx:8
 RooTable.cxx:9
 RooTable.cxx:10
 RooTable.cxx:11
 RooTable.cxx:12
 RooTable.cxx:13
 RooTable.cxx:14
 RooTable.cxx:15
 RooTable.cxx:16
 RooTable.cxx:17
 RooTable.cxx:18
 RooTable.cxx:19
 RooTable.cxx:20
 RooTable.cxx:21
 RooTable.cxx:22
 RooTable.cxx:23
 RooTable.cxx:24
 RooTable.cxx:25
 RooTable.cxx:26
 RooTable.cxx:27
 RooTable.cxx:28
 RooTable.cxx:29
 RooTable.cxx:30
 RooTable.cxx:31
 RooTable.cxx:32
 RooTable.cxx:33
 RooTable.cxx:34
 RooTable.cxx:35
 RooTable.cxx:36
 RooTable.cxx:37
 RooTable.cxx:38
 RooTable.cxx:39
 RooTable.cxx:40
 RooTable.cxx:41
 RooTable.cxx:42
 RooTable.cxx:43
 RooTable.cxx:44
 RooTable.cxx:45
 RooTable.cxx:46
 RooTable.cxx:47
 RooTable.cxx:48
 RooTable.cxx:49
 RooTable.cxx:50
 RooTable.cxx:51
 RooTable.cxx:52
 RooTable.cxx:53
 RooTable.cxx:54
 RooTable.cxx:55
 RooTable.cxx:56
 RooTable.cxx:57
 RooTable.cxx:58
 RooTable.cxx:59
 RooTable.cxx:60