Logo ROOT   6.18/05
Reference Guide
RooNumIntFactory.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooNumIntFactory.h,v 1.6 2007/05/11 09:11:30 verkerke Exp $
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#ifndef ROO_NUM_INT_FACTORY
17#define ROO_NUM_INT_FACTORY
18
19#include <map>
20#include <string>
21#include "TObject.h"
22#include "RooLinkedList.h"
23#include "RooAbsIntegrator.h"
24class RooNumIntConfig ;
25class RooAbsFunc ;
26
27class RooNumIntFactory ;
29
30class RooNumIntFactory : public TObject {
31public:
32
33 static RooNumIntFactory& instance() ;
34 virtual ~RooNumIntFactory();
35
36 Bool_t storeProtoIntegrator(RooAbsIntegrator* proto, const RooArgSet& defConfig, const char* depName="") ;
37 const RooAbsIntegrator* getProtoIntegrator(const char* name) ;
38 const char* getDepIntegratorName(const char* name) ;
39
40 RooAbsIntegrator* createIntegrator(RooAbsFunc& func, const RooNumIntConfig& config, Int_t ndim=0, Bool_t isBinned=kFALSE) ;
41
42 static void cleanup() ;
43
44
45protected:
46
47 friend class RooNumIntConfig ;
48
49 std::map<std::string,std::pair<RooAbsIntegrator*,std::string> > _map ;
50
53
55
56
57 ClassDef(RooNumIntFactory,1) // Numeric Integrator factory
58};
59
60#endif
61
62
void(* RooNumIntInitializerFunc)(RooNumIntFactory &)
int Int_t
Definition: RtypesCore.h:41
const Bool_t kFALSE
Definition: RtypesCore.h:88
bool Bool_t
Definition: RtypesCore.h:59
#define ClassDef(name, id)
Definition: Rtypes.h:326
char name[80]
Definition: TGX11.cxx:109
typedef void((*Func_t)())
const char * proto
Definition: civetweb.c:16604
Abstract interface for evaluating a real-valued function of one real variable and performing numerica...
Definition: RooAbsFunc.h:23
RooAbsIntegrator is the abstract interface for integrators of real-valued functions that implement th...
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition: RooArgSet.h:28
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 ...
RooNumIntFactory()
Constructor.
std::map< std::string, std::pair< RooAbsIntegrator *, std::string > > _map
const char * getDepIntegratorName(const char *name)
Get list of class names of integrators needed by integrator named 'name'.
RooAbsIntegrator * createIntegrator(RooAbsFunc &func, const RooNumIntConfig &config, Int_t ndim=0, Bool_t isBinned=kFALSE)
Construct a numeric integrator instance that operates on function 'func' and is configured with 'conf...
static RooNumIntFactory * _instance
const RooAbsIntegrator * getProtoIntegrator(const char *name)
Return prototype integrator with given (class) name.
virtual ~RooNumIntFactory()
Destructor.
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 void cleanup()
Cleanup routine called by atexit() handler installed by RooSentinel.
static RooNumIntFactory & instance()
Static method returning reference to singleton instance of factory.
Mother of all ROOT objects.
Definition: TObject.h:37