Logo ROOT  
Reference Guide
RooSegmentedIntegrator2D.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 RooSegmentedIntegrator2D.cxx
19\class RooSegmentedIntegrator2D
20\ingroup Roofitcore
21
22RooSegmentedIntegrator2D implements an adaptive one-dimensional
23numerical integration algorithm.
24**/
25
26
27#include "RooFit.h"
28#include "Riostream.h"
29
30#include "TClass.h"
32#include "RooArgSet.h"
34#include "RooRealVar.h"
35#include "RooNumber.h"
36#include "RooNumIntFactory.h"
37#include "RooMsgService.h"
38
39#include <assert.h>
40
41
42
43using namespace std;
44
46;
47
48
49////////////////////////////////////////////////////////////////////////////////
50/// Register RooSegmentedIntegrator2D, its parameters, dependencies and capabilities with RooNumIntFactory
51
53{
55}
56
57
58
59////////////////////////////////////////////////////////////////////////////////
60/// Default constructor
61
63 _xIntegrator(0), _xint(0)
64{
65}
66
67
68////////////////////////////////////////////////////////////////////////////////
69/// Constructor of integral on given function binding and with given configuration. The
70/// integration limits are taken from the definition in the function binding
71
73 RooSegmentedIntegrator1D(*(_xint=new RooIntegratorBinding(*(_xIntegrator=new RooSegmentedIntegrator1D(function,config)))),config)
74{
75}
76
77
78////////////////////////////////////////////////////////////////////////////////
79/// Constructor integral on given function binding, with given configuration and
80/// explicit definition of integration range
81
84 const RooNumIntConfig& config) :
86{
87}
88
89
90////////////////////////////////////////////////////////////////////////////////
91/// Virtual constructor with given function and configuration. Needed by RooNumIntFactory
92
94{
95 return new RooSegmentedIntegrator2D(function,config) ;
96}
97
98
99
100////////////////////////////////////////////////////////////////////////////////
101/// Destructor
102
104{
105 delete _xint ;
106 delete _xIntegrator ;
107}
108
109
110
111////////////////////////////////////////////////////////////////////////////////
112/// Check that our integration range is finite and otherwise return kFALSE.
113/// Update the limits from the integrand if requested.
114
116{
118 assert(0 != integrand() && integrand()->isValid());
121 }
122 _range= _xmax - _xmin;
123 if(_range <= 0) {
124 oocoutE((TObject*)0,InputArguments) << "RooIntegrator1D::checkLimits: bad range with min >= max" << endl;
125 return kFALSE;
126 }
128
129 // Adjust component integrators, if already created
130 if (_array && ret) {
131 Double_t segSize = (_xmax - _xmin) / _nseg ;
132 Int_t i ;
133 for (i=0 ; i<_nseg ; i++) {
134 _array[i]->setLimits(_xmin+i*segSize,_xmin+(i+1)*segSize) ;
135 }
136 }
137
138 return ret ;
139}
140
141
142
void Class()
Definition: Class.C:29
#define oocoutE(o, a)
Definition: RooMsgService.h:49
int Int_t
Definition: RtypesCore.h:41
const Bool_t kFALSE
Definition: RtypesCore.h:88
bool Bool_t
Definition: RtypesCore.h:59
double Double_t
Definition: RtypesCore.h:55
const Bool_t kTRUE
Definition: RtypesCore.h:87
#define ClassImp(name)
Definition: Rtypes.h:365
float xmin
Definition: THbookFile.cxx:93
float ymin
Definition: THbookFile.cxx:93
float xmax
Definition: THbookFile.cxx:93
float ymax
Definition: THbookFile.cxx:93
Abstract interface for evaluating a real-valued function of one real variable and performing numerica...
Definition: RooAbsFunc.h:23
virtual Double_t getMinLimit(UInt_t dimension) const =0
virtual Double_t getMaxLimit(UInt_t dimension) const =0
RooAbsIntegrator is the abstract interface for integrators of real-valued functions that implement th...
const RooAbsFunc * integrand() const
Bool_t isValid() const
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition: RooArgSet.h:28
Bool_t setLimits(Double_t *xmin, Double_t *xmax)
Change our integration limits.
Function binding representing the output of a RooAbsIntegrator.
RooNumIntConfig holds the configuration parameters of the various numeric integrators used by RooReal...
RooNumIntFactory is a factory to instantiate numeric integrators from a given function binding and a ...
Bool_t storeProtoIntegrator(RooAbsIntegrator *proto, const RooArgSet &defConfig, const char *depName="")
Method accepting registration of a prototype numeric integrator along with a RooArgSet of its default...
static Int_t isInfinite(Double_t x)
Return true if x is infinite by RooNumBer internal specification.
Definition: RooNumber.cxx:58
RooSegmentedIntegrator1D implements an adaptive one-dimensional numerical integration algorithm.
RooSegmentedIntegrator2D implements an adaptive one-dimensional numerical integration algorithm.
RooSegmentedIntegrator2D()
Default constructor.
virtual RooAbsIntegrator * clone(const RooAbsFunc &function, const RooNumIntConfig &config) const
Virtual constructor with given function and configuration. Needed by RooNumIntFactory.
static void registerIntegrator(RooNumIntFactory &fact)
Register RooSegmentedIntegrator2D, its parameters, dependencies and capabilities with RooNumIntFactor...
RooSegmentedIntegrator1D * _xIntegrator
virtual Bool_t checkLimits() const
Check that our integration range is finite and otherwise return kFALSE.
virtual ~RooSegmentedIntegrator2D()
Destructor.
Mother of all ROOT objects.
Definition: TObject.h:37
virtual const char * GetName() const
Returns name of object.
Definition: TObject.cxx:357
void function(const Char_t *name_, T fun, const Char_t *docstring=0)
Definition: RExports.h:151
@ InputArguments
Definition: RooGlobalFunc.h:68