/*****************************************************************************
 * Project: RooFit                                                           *
 * Package: RooFitCore                                                       *
 * @(#)root/roofitcore:$Id: RooUniformBinning.cxx 24285 2008-06-16 15:05:15Z wouter $
 * 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
// RooUniformBinning is an implementation of RooAbsBinning that provides
// a uniform binning in 'n' bins between the range end points. A RooUniformBinning
// is 'elastic': if the range changes the binning will change accordingly, unlike
// e.g. the binning of class RooBinning.
// END_HTML
//

#include "RooFit.h"

#include "RooUniformBinning.h"
#include "RooUniformBinning.h"
#include "RooMsgService.h"

#include "Riostream.h"


ClassImp(RooUniformBinning)
;



//_____________________________________________________________________________
RooUniformBinning::RooUniformBinning(const char* name) : 
  RooAbsBinning(name)
{  
  // Default Constructor
  _array = 0 ;
}


//_____________________________________________________________________________
RooUniformBinning::RooUniformBinning(Double_t xlo, Double_t xhi, Int_t nBins, const char* name) :
  RooAbsBinning(name),
  _array(0), 
  _nbins(nBins)
{
  // Construct range [xlo,xhi] with 'nBins' bins
  setRange(xlo,xhi) ;
}



//_____________________________________________________________________________
RooUniformBinning::~RooUniformBinning() 
{
  // Destructor
  if (_array) delete[] _array ;
}



//_____________________________________________________________________________
RooUniformBinning::RooUniformBinning(const RooUniformBinning& other, const char* name) :
  RooAbsBinning(name)
{
  // Copy constructor
  _array = 0 ;
  _xlo   = other._xlo ;
  _xhi   = other._xhi ;
  _nbins = other._nbins ;
  _binw  = other._binw ;  
}



//_____________________________________________________________________________
void RooUniformBinning::setRange(Double_t xlo, Double_t xhi) 
{
  // Change range to [xlo,xhi]. A changes in range automatically
  // adjusts the binning as well to nBins bins in the new range

  if (xlo>xhi) {
    coutE(InputArguments) << "RooUniformBinning::setRange: ERROR low bound > high bound" << endl ;
    return ;
  }
  
  _xlo = xlo ;
  _xhi = xhi ;
  _binw = (xhi-xlo)/_nbins ;

  // Delete any out-of-date boundary arrays at this point
  if (_array) {
    delete[] _array ;
    _array = 0 ;
  }
}



//_____________________________________________________________________________
Int_t RooUniformBinning::binNumber(Double_t x) const  
{
  // Return the index of the bin that encloses 'x'

  if (x >= _xhi) return _nbins-1 ;
  if (x < _xlo) return 0 ;

  return Int_t((x - _xlo)/_binw) ;
}



//_____________________________________________________________________________
Double_t RooUniformBinning::binCenter(Int_t i) const 
{
  // Return the central value of the 'i'-th fit bin
  if (i<0 || i>=_nbins) {
    coutE(InputArguments) << "RooUniformBinning::binCenter ERROR: bin index " << i 
			  << " is out of range (0," << _nbins-1 << ")" << endl ;
    return 0 ;
  }

  return _xlo + (i + 0.5)*averageBinWidth() ;  
}




//_____________________________________________________________________________
Double_t RooUniformBinning::binWidth(Int_t /*bin*/) const 
{
  // Return the bin width (same for all bins)
  return _binw ;
}



//_____________________________________________________________________________
Double_t RooUniformBinning::binLow(Int_t i) const 
{
  // Return the low edge of the 'i'-th fit bin

  if (i<0 || i>=_nbins) {
    coutE(InputArguments) << "RooUniformBinning::binLow ERROR: bin index " << i 
			  << " is out of range (0," << _nbins-1 << ")" << endl ;
    return 0 ;
  }

  return _xlo + i*_binw ;
}



//_____________________________________________________________________________
Double_t RooUniformBinning::binHigh(Int_t i) const 
{
  // Return the high edge of the 'i'-th fit bin

  if (i<0 || i>=_nbins) {
    coutE(InputArguments) << "RooUniformBinning::fitBinHigh ERROR: bin index " << i 
			  << " is out of range (0," << _nbins-1 << ")" << endl ;
    return 0 ;
  }

  return _xlo + (i + 1)*_binw ;
}



//_____________________________________________________________________________
Double_t* RooUniformBinning::array() const 
{
  // Return an array of doubles with the bin boundaries
  if (_array) delete[] _array ;
  _array = new Double_t[_nbins+1] ;

  Int_t i ;
  for (i=0 ; i<=_nbins ; i++) {
    _array[i] = _xlo + i*_binw ;
  }
  return _array ;
}



Last change: Wed Jun 25 08:34:30 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.