/*****************************************************************************
 * 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
// Class RooPotable is a base class for objects that can be inserted into RooPlots and take
// advantage of its internal normalization and axis range adjustment features. The
// most useful implementation of RooPlotable are RooHist and RooCurve.
// END_HTML
//

#include "RooFit.h"

#include "RooPlotable.h"
#include "RooPlotable.h"
#include "TObject.h"
#include "Riostream.h"

using namespace std;

ClassImp(RooPlotable)
;


//_____________________________________________________________________________
void RooPlotable::printMultiline(ostream& os, Int_t /*content*/, Bool_t /*verbose*/, TString indent) const {
  // Print detailed information
  os << indent << "--- RooPlotable ---" << endl;
  os << indent << "  y-axis min = " << getYAxisMin() << endl
     << indent << "  y-axis max = " << getYAxisMax() << endl
     << indent << "  y-axis label \"" << getYAxisLabel() << "\"" << endl;
}


//_____________________________________________________________________________
TObject *RooPlotable::crossCast() {
  // Return cast of RooPlotable as TObject. Note that is this a cross
  // cast that will change the pointer value in most cases
  return dynamic_cast<TObject*>(this);
}
 RooPlotable.cxx:1
 RooPlotable.cxx:2
 RooPlotable.cxx:3
 RooPlotable.cxx:4
 RooPlotable.cxx:5
 RooPlotable.cxx:6
 RooPlotable.cxx:7
 RooPlotable.cxx:8
 RooPlotable.cxx:9
 RooPlotable.cxx:10
 RooPlotable.cxx:11
 RooPlotable.cxx:12
 RooPlotable.cxx:13
 RooPlotable.cxx:14
 RooPlotable.cxx:15
 RooPlotable.cxx:16
 RooPlotable.cxx:17
 RooPlotable.cxx:18
 RooPlotable.cxx:19
 RooPlotable.cxx:20
 RooPlotable.cxx:21
 RooPlotable.cxx:22
 RooPlotable.cxx:23
 RooPlotable.cxx:24
 RooPlotable.cxx:25
 RooPlotable.cxx:26
 RooPlotable.cxx:27
 RooPlotable.cxx:28
 RooPlotable.cxx:29
 RooPlotable.cxx:30
 RooPlotable.cxx:31
 RooPlotable.cxx:32
 RooPlotable.cxx:33
 RooPlotable.cxx:34
 RooPlotable.cxx:35
 RooPlotable.cxx:36
 RooPlotable.cxx:37
 RooPlotable.cxx:38
 RooPlotable.cxx:39
 RooPlotable.cxx:40
 RooPlotable.cxx:41
 RooPlotable.cxx:42
 RooPlotable.cxx:43
 RooPlotable.cxx:44
 RooPlotable.cxx:45
 RooPlotable.cxx:46
 RooPlotable.cxx:47
 RooPlotable.cxx:48
 RooPlotable.cxx:49
 RooPlotable.cxx:50
 RooPlotable.cxx:51
 RooPlotable.cxx:52
 RooPlotable.cxx:53
 RooPlotable.cxx:54