Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooAbsRootFinder.cxx
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * @(#)root/roofitcore:$Id$
5 * Authors: *
6 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8 * *
9 * Copyright (c) 2000-2005, Regents of the University of California *
10 * and Stanford University. All rights reserved. *
11 * *
12 * Redistribution and use in source and binary forms, *
13 * with or without modification, are permitted according to the terms *
14 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15 *****************************************************************************/
16
17/**
18\file RooAbsRootFinder.cxx
19\class RooAbsRootFinder
20\ingroup Roofitcore
21
22RooAbsRootFinder is the abstract interface for finding roots of real-valued
231-dimensional function that implements the RooAbsFunc interface.
24**/
25
26#include "RooFit.h"
27
28#include "RooAbsRootFinder.h"
29#include "RooAbsFunc.h"
30#include "RooMsgService.h"
31#include "Riostream.h"
32
33using namespace std;
34
36;
37
38
39////////////////////////////////////////////////////////////////////////////////
40/// Constructor take function binding as argument
41
43 _function(&function), _valid(function.isValid())
44{
45 if(_function->getDimension() != 1) {
46 oocoutE((TObject*)0,Eval) << "RooAbsRootFinder:: cannot find roots for function of dimension "
47 << _function->getDimension() << endl;
49 }
50}
#define oocoutE(o, a)
const Bool_t kFALSE
Definition RtypesCore.h:92
#define ClassImp(name)
Definition Rtypes.h:364
Abstract interface for evaluating a real-valued function of one real variable and performing numerica...
Definition RooAbsFunc.h:27
UInt_t getDimension() const
Definition RooAbsFunc.h:33
RooAbsRootFinder is the abstract interface for finding roots of real-valued 1-dimensional function th...
RooAbsRootFinder(const RooAbsFunc &function)
Constructor take function binding as argument.
const RooAbsFunc * _function
Mother of all ROOT objects.
Definition TObject.h:37