Logo ROOT  
Reference Guide
RooAbsNumGenerator.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_ABS_NUM_GENERATOR
17#define ROO_ABS_NUM_GENERATOR
18
19#include "TNamed.h"
20#include "RooPrintable.h"
21#include "RooArgSet.h"
22#include "RooArgList.h"
23
24class RooAbsReal;
25class RooRealVar;
26class RooDataSet;
27class RooRealBinding;
28class RooNumGenConfig ;
29
30class RooAbsNumGenerator : public TNamed, public RooPrintable {
31public:
33 RooAbsNumGenerator(const RooAbsReal &func, const RooArgSet &genVars, Bool_t verbose=kFALSE, const RooAbsReal* maxFuncVal=0);
34 virtual RooAbsNumGenerator* clone(const RooAbsReal&, const RooArgSet& genVars, const RooArgSet& condVars,
35 const RooNumGenConfig& config, Bool_t verbose=kFALSE, const RooAbsReal* maxFuncVal=0) const = 0 ;
36
37 Bool_t isValid() const {
38 // If true, generator is in a valid state
39 return _isValid;
40 }
41 virtual ~RooAbsNumGenerator();
42
44 // If flag is true, verbose messaging will be active during generation
46 }
47 inline Bool_t isVerbose() const {
48 // Return status of verbose messaging flag
49 return _verbose;
50 }
51
52 virtual const RooArgSet *generateEvent(UInt_t remaining, Double_t& resampleRatio) = 0;
53 virtual Double_t getFuncMax() { return 0 ; }
54
55 inline virtual void Print(Option_t *options= 0) const {
56 // ascii printing interface
58 }
59
60 virtual void printName(std::ostream& os) const ;
61 virtual void printTitle(std::ostream& os) const ;
62 virtual void printClassName(std::ostream& os) const ;
63 virtual void printArgs(std::ostream& os) const ;
64
65 void attachParameters(const RooArgSet& vars) ;
66
67 // Advertisement of capabilities
68 virtual Bool_t canSampleCategories() const { return kFALSE ; }
69 virtual Bool_t canSampleConditional() const { return kFALSE ; } // Must implement getFuncMax()
70
71protected:
72
73 RooArgSet *_cloneSet; // Set owning clone of input function
74 RooAbsReal *_funcClone; // Pointer to top level node of cloned function
75 const RooAbsReal *_funcMaxVal ; // Container for maximum function value
76 RooArgSet _catVars,_realVars ; // Sets of discrete and real valued observabeles
77 Bool_t _verbose, _isValid; // Verbose and valid flag
78 RooRealVar *_funcValStore,*_funcValPtr; // RRVs storing function value in context and in output dataset
79
80 RooDataSet *_cache; // Dataset holding generared values of observables
81
82 ClassDef(RooAbsNumGenerator,0) // Abstract base class for numeric event generator algorithms
83};
84
85#endif
unsigned int UInt_t
Definition: RtypesCore.h:42
const Bool_t kFALSE
Definition: RtypesCore.h:88
bool Bool_t
Definition: RtypesCore.h:59
double Double_t
Definition: RtypesCore.h:55
const Bool_t kTRUE
Definition: RtypesCore.h:87
const char Option_t
Definition: RtypesCore.h:62
#define ClassDef(name, id)
Definition: Rtypes.h:326
Class RooAbsNumGenerator is the abstract base class for MC event generator implementations like RooAc...
virtual void printName(std::ostream &os) const
Print name of the generator.
virtual void printClassName(std::ostream &os) const
Print the class name of the generator.
const RooAbsReal * _funcMaxVal
RooRealVar * _funcValPtr
virtual Double_t getFuncMax()
virtual Bool_t canSampleConditional() const
Bool_t isValid() const
virtual Bool_t canSampleCategories() const
virtual void Print(Option_t *options=0) const
Print TNamed name and title.
virtual ~RooAbsNumGenerator()
Destructor.
void attachParameters(const RooArgSet &vars)
Reattach original parameters to function clone.
virtual void printArgs(std::ostream &os) const
Print the arguments of the generator.
virtual void printTitle(std::ostream &os) const
Print the title of the generator.
virtual RooAbsNumGenerator * clone(const RooAbsReal &, const RooArgSet &genVars, const RooArgSet &condVars, const RooNumGenConfig &config, Bool_t verbose=kFALSE, const RooAbsReal *maxFuncVal=0) const =0
virtual const RooArgSet * generateEvent(UInt_t remaining, Double_t &resampleRatio)=0
Bool_t isVerbose() const
void setVerbose(Bool_t verbose=kTRUE)
RooRealVar * _funcValStore
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition: RooAbsReal.h:59
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition: RooArgSet.h:28
RooDataSet is a container class to hold unbinned data.
Definition: RooDataSet.h:31
RooNumGenConfig holds the configuration parameters of the various numeric integrators used by RooReal...
RooPlotable is a 'mix-in' base class that define the standard RooFit plotting and printing methods.
Definition: RooPrintable.h:25
virtual StyleOption defaultPrintStyle(Option_t *opt) const
virtual Int_t defaultPrintContents(Option_t *opt) const
Default choice of contents to be printed (name and value)
static std::ostream & defaultPrintStream(std::ostream *os=0)
Return a reference to the current default stream to use in Print().
virtual void printStream(std::ostream &os, Int_t contents, StyleOption style, TString indent="") const
Print description of object on ostream, printing contents set by contents integer,...
Lightweight interface adaptor that binds a RooAbsReal object to a subset of its servers and present i...
RooRealVar represents a variable that can be changed from the outside.
Definition: RooRealVar.h:35
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:29