// RooAbsRootFinder is the abstract interface for finding roots of real-valued
// 1-dimensional function that implements the RooAbsFunc interface.
// END_HTML
#include "RooFit.h"
#include "RooAbsRootFinder.h"
#include "RooAbsRootFinder.h"
#include "RooAbsFunc.h"
#include "RooMsgService.h"
#include "Riostream.h"
ClassImp(RooAbsRootFinder)
;
RooAbsRootFinder::RooAbsRootFinder(const RooAbsFunc& function) :
_function(&function), _valid(function.isValid())
{
if(_function->getDimension() != 1) {
oocoutE((TObject*)0,Eval) << "RooAbsRootFinder:: cannot find roots for function of dimension "
<< _function->getDimension() << endl;
_valid= kFALSE;
}
}
Last change: Wed Jun 25 08:31:43 2008
Last generated: 2008-06-25 08:31
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.