Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooFoamGenerator.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $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#ifndef ROO_FOAM_GENERATOR
17#define ROO_FOAM_GENERATOR
18
19#include "RooAbsNumGenerator.h"
20#include "RooPrintable.h"
21#include "RooArgSet.h"
22
23class RooAbsReal;
24class RooRealVar;
25class RooDataSet;
26
27class TFoam ;
28class RooTFoamBinding ;
29class RooNumGenFactory ;
30
32public:
33 RooFoamGenerator() : _binding(nullptr), _tfoam(nullptr), _xmin(nullptr), _range(nullptr), _vec(nullptr) {}
34 RooFoamGenerator(const RooAbsReal &func, const RooArgSet &genVars, const RooNumGenConfig& config, bool verbose=false, const RooAbsReal* maxFuncVal=nullptr);
35 RooAbsNumGenerator* clone(const RooAbsReal& func, const RooArgSet& genVars, const RooArgSet& /*condVars*/,
36 const RooNumGenConfig& config, bool verbose=false, const RooAbsReal* maxFuncVal=nullptr) const override {
37 return new RooFoamGenerator(func,genVars,config,verbose,maxFuncVal) ;
38 }
39 ~RooFoamGenerator() override;
40
41 const RooArgSet *generateEvent(UInt_t remaining, double& resampleRatio) override;
42
43 TFoam& engine() { return *_tfoam; }
44
45 bool canSampleConditional() const override { return false ; }
46 bool canSampleCategories() const override { return false ; }
47
48 std::string const& generatorName() const override;
49
50protected:
51
52 friend class RooNumGenFactory ;
53 static void registerSampler(RooNumGenFactory& fact) ;
54
55 RooTFoamBinding* _binding ; ///< Binding of RooAbsReal to TFoam function interface
56 TFoam* _tfoam ; ///< Instance of TFOAM generator
57 double* _xmin ; ///< Lower bound of observables to be generated ;
58 double* _range ; ///< Range of observables to be generated ;
59 double* _vec ; ///< Transfer array for FOAM output
60};
61
62#endif
Class RooAbsNumGenerator is the abstract base class for MC event generator implementations like RooAc...
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:62
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
RooDataSet is a container class to hold unbinned data.
Definition RooDataSet.h:57
Class RooFoamGenerator is a generic toy monte carlo generator that implement the TFOAM sampling techn...
bool canSampleConditional() const override
const RooArgSet * generateEvent(UInt_t remaining, double &resampleRatio) override
are we actually generating anything? (the cache always contains at least our function value)
RooAbsNumGenerator * clone(const RooAbsReal &func, const RooArgSet &genVars, const RooArgSet &, const RooNumGenConfig &config, bool verbose=false, const RooAbsReal *maxFuncVal=nullptr) const override
double * _range
Range of observables to be generated ;.
~RooFoamGenerator() override
Destructor.
bool canSampleCategories() const override
RooTFoamBinding * _binding
Binding of RooAbsReal to TFoam function interface.
double * _xmin
Lower bound of observables to be generated ;.
std::string const & generatorName() const override
Return unique name of generator implementation.
TFoam * _tfoam
Instance of TFOAM generator.
static void registerSampler(RooNumGenFactory &fact)
Register RooIntegrator1D, is parameters and capabilities with RooNumIntFactory.
double * _vec
Transfer array for FOAM output.
RooNumGenConfig holds the configuration parameters of the various numeric integrators used by RooReal...
RooNumGenFactory is a factory to instantiate numeric integrators from a given function binding and a ...
RooRealVar represents a variable that can be changed from the outside.
Definition RooRealVar.h:40
Lightweight interface adaptor that binds a RooAbsPdf to TFOAM.
TFoam is the main class of the multi-dimensional general purpose Monte Carlo event generator (integra...
Definition TFoam.h:21