Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
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 
23 class RooAbsReal;
24 class RooRealVar;
25 class RooDataSet;
26 
27 class TFoam ;
28 class RooTFoamBinding ;
29 class RooNumGenFactory ;
30 
31 class RooFoamGenerator : public RooAbsNumGenerator {
32 public:
33  RooFoamGenerator() : _binding(0), _tfoam(0), _xmin(0), _range(0), _vec(0), _rvIter(0) {} ;
34  RooFoamGenerator(const RooAbsReal &func, const RooArgSet &genVars, const RooNumGenConfig& config, Bool_t verbose=kFALSE, const RooAbsReal* maxFuncVal=0);
35  RooAbsNumGenerator* clone(const RooAbsReal& func, const RooArgSet& genVars, const RooArgSet& /*condVars*/,
36  const RooNumGenConfig& config, Bool_t verbose=kFALSE, const RooAbsReal* maxFuncVal=0) const {
37  return new RooFoamGenerator(func,genVars,config,verbose,maxFuncVal) ;
38  }
39  virtual ~RooFoamGenerator();
40 
41  const RooArgSet *generateEvent(UInt_t remaining, Double_t& resampleRatio);
42 
43  TFoam& engine() { return *_tfoam; }
44 
45  virtual Bool_t canSampleConditional() const { return kFALSE ; }
46  virtual Bool_t canSampleCategories() const { return kFALSE ; }
47 
48 protected:
49 
50  friend class RooNumGenFactory ;
51  static void registerSampler(RooNumGenFactory& fact) ;
52 
53  RooTFoamBinding* _binding ; // Binding of RooAbsReal to TFoam function interface
54  TFoam* _tfoam ; // Instance of TFOAM generator
55  Double_t* _xmin ; // Lower bound of observables to be generated ;
56  Double_t* _range ; // Range of observables to be generated ;
57  Double_t* _vec ; // Transfer array for FOAM output
58  TIterator* _rvIter ; // Iteratator over _realVars ;
59 
60 
61  ClassDef(RooFoamGenerator,0) // Context for generating a dataset from a PDF using the TFoam class
62 };
63 
64 #endif