Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooAcceptReject.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id: RooAcceptReject.h,v 1.16 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_ACCEPT_REJECT
17 #define ROO_ACCEPT_REJECT
18 
19 #include "RooAbsNumGenerator.h"
20 #include "RooPrintable.h"
21 #include "RooArgSet.h"
22 
23 class RooAbsReal;
24 class RooRealVar;
25 class RooDataSet;
26 class RooRealBinding;
27 class RooNumGenFactory ;
28 
29 class RooAcceptReject : public RooAbsNumGenerator {
30 public:
31  RooAcceptReject() : _nextCatVar(0), _nextRealVar(0) {
32  // coverity[UNINIT_CTOR]
33  } ;
34  RooAcceptReject(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 RooAcceptReject(func,genVars,config,verbose,maxFuncVal) ;
38  }
39  virtual ~RooAcceptReject();
40 
41  const RooArgSet *generateEvent(UInt_t remaining, Double_t& resampleRatio);
42  Double_t getFuncMax() ;
43 
44 
45  // Advertisement of capabilities
46  virtual Bool_t canSampleConditional() const { return kTRUE ; }
47  virtual Bool_t canSampleCategories() const { return kTRUE ; }
48 
49 
50 protected:
51 
52  friend class RooNumGenFactory ;
53  static void registerSampler(RooNumGenFactory& fact) ;
54 
55  void addEventToCache();
56  const RooArgSet *nextAcceptedEvent();
57 
58  Double_t _maxFuncVal, _funcSum; // Maximum function value found, and sum of all samples made
59  UInt_t _realSampleDim,_catSampleMult;// Number of real and discrete dimensions to be samplesd
60  UInt_t _minTrials; // Minimum number of max.finding trials, total number of samples
61  UInt_t _totalEvents; // Total number of function samples
62  UInt_t _eventsUsed; // Accepted number of function samples
63  TIterator *_nextCatVar; // Iterator of categories to be generated
64  TIterator *_nextRealVar; // Iterator over variables to be generated
65 
66  UInt_t _minTrialsArray[4]; // Minimum number of trials samples for 1,2,3 dimensional problems
67 
68  ClassDef(RooAcceptReject,0) // Context for generating a dataset from a PDF
69 };
70 
71 #endif