/*****************************************************************************
* Project: RooFit *
* Package: RooFitCore *
* File: $Id: RooAcceptReject.rdl,v 1.15 2005/06/20 15:44:47 wverkerke Exp $
* Authors: *
* WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
* DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
* *
* Copyright (c) 2000-2005, Regents of the University of California *
* and Stanford University. All rights reserved. *
* *
* Redistribution and use in source and binary forms, *
* with or without modification, are permitted according to the terms *
* listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
*****************************************************************************/
#ifndef ROO_ACCEPT_REJECT
#define ROO_ACCEPT_REJECT
#include "TNamed.h"
#include "RooPrintable.h"
#include "RooArgSet.h"
class RooAbsReal;
class RooRealVar;
class RooDataSet;
class RooAcceptReject : public TNamed, public RooPrintable {
public:
RooAcceptReject(const RooAbsReal &func, const RooArgSet &genVars, const RooAbsReal* maxFuncVal=0, Bool_t verbose= kFALSE);
Bool_t isValid() const { return _isValid; }
virtual ~RooAcceptReject();
inline void setVerbose(Bool_t verbose= kTRUE) { _verbose= verbose; }
inline Bool_t isVerbose() const { return _verbose; }
const RooArgSet *generateEvent(UInt_t remaining);
// ascii printing interface
virtual void printToStream(ostream &os, PrintOption opt= Standard, TString indent= "") const ;
inline virtual void Print(Option_t *options= 0) const {
printToStream(defaultStream(),parseOptions(options));
}
Double_t getFuncMax() ;
void attachParameters(const RooArgSet& vars) ;
protected:
void addEventToCache();
const RooArgSet *nextAcceptedEvent();
RooArgSet *_cloneSet;
RooAbsReal *_funcClone;
const RooAbsReal *_funcMaxVal ;
RooArgSet _catVars,_realVars ;
Bool_t _verbose, _isValid;
Double_t _maxFuncVal, _funcSum;
UInt_t _realSampleDim,_catSampleMult,_minTrials,_totalEvents,_eventsUsed;
RooRealVar *_funcValStore,*_funcValPtr;
RooDataSet *_cache;
TIterator *_nextCatVar;
TIterator *_nextRealVar;
static const UInt_t _maxSampleDim;
static const UInt_t _minTrialsArray[];
ClassDef(RooAcceptReject,0) // Context for generating a dataset from a PDF
};
#endif
syntax highlighted by Code2HTML, v. 0.9.1