/*****************************************************************************
 * Project: RooFit                                                           *
 * Package: RooFitCore                                                       *
 *    File: $Id: RooPlotable.h,v 1.14 2007/05/11 09:11:30 verkerke Exp $
 * 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)             *
 *****************************************************************************/
#ifndef ROO_PLOTABLE
#define ROO_PLOTABLE

#include "Rtypes.h"
#include "TString.h"
#include "RooPrintable.h"

class TObject;
class RooArgSet;

class RooPlotable : public RooPrintable {
public:
  inline RooPlotable() : _ymin(0), _ymax(0), _normValue(0) { }
  inline virtual ~RooPlotable() { }

  inline const char* getYAxisLabel() const { return _yAxisLabel.Data(); }
  inline void setYAxisLabel(const char *label) { _yAxisLabel= label; }
  inline void updateYAxisLimits(Double_t y) {
    if(y > _ymax) _ymax= y;
    if(y < _ymin) _ymin= y;
  }
  inline void setYAxisLimits(Double_t ymin, Double_t ymax) { 
    _ymin = ymin ;
    _ymax = ymax ;
  }
  inline Double_t getYAxisMin() const { return _ymin; }
  inline Double_t getYAxisMax() const { return _ymax; }

  // the normalization value refers to the full "fit range" instead of
  // the "plot range"
  virtual Double_t getFitRangeNEvt() const = 0;
  virtual Double_t getFitRangeNEvt(Double_t xlo, Double_t xhi) const = 0;
  virtual Double_t getFitRangeBinW() const = 0;

  virtual void printMultiline(std::ostream& os, Int_t contents, Bool_t verbose=kFALSE, TString indent= "") const;

  TObject *crossCast();
protected:
  TString _yAxisLabel;
  Double_t _ymin, _ymax, _normValue;
  ClassDef(RooPlotable,1) // Abstract interface for plotable objects in a RooPlot
};

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