Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooGenContext.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id: RooGenContext.h,v 1.19 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_GEN_CONTEXT
17 #define ROO_GEN_CONTEXT
18 
19 #include "RooAbsGenContext.h"
20 #include "RooArgSet.h"
21 
22 class RooAbsPdf;
23 class RooDataSet;
24 class RooRealIntegral;
25 class RooAcceptReject;
26 class TRandom;
27 class RooRealVar ;
28 class RooAbsNumGenerator ;
29 
30 class RooGenContext : public RooAbsGenContext {
31 public:
32  RooGenContext(const RooAbsPdf &model, const RooArgSet &vars, const RooDataSet *prototype= 0,
33  const RooArgSet* auxProto=0, Bool_t verbose=kFALSE, const RooArgSet* forceDirect=0);
34  virtual ~RooGenContext();
35 
36  virtual void printMultiline(std::ostream &os, Int_t content, Bool_t verbose=kFALSE, TString indent="") const ;
37 
38  virtual void attach(const RooArgSet& params) ;
39 
40 protected:
41 
42  virtual void initGenerator(const RooArgSet &theEvent);
43  virtual void generateEvent(RooArgSet &theEvent, Int_t remaining);
44 
45  RooArgSet *_cloneSet; // Clone of all nodes of input p.d.f
46  RooAbsPdf *_pdfClone; // Clone of input p.d.f
47  RooArgSet _directVars,_uniformVars,_otherVars; // List of observables generated internally, randomly, and by accept/reject sampling
48  Int_t _code; // Internal generation code
49  Double_t _maxProb{0.}, _area{0.}, _norm{0.}; // Maximum probability, p.d.f area and normalization
50  RooRealIntegral *_acceptRejectFunc; // Projection function to be passed to accept/reject sampler
51  RooAbsNumGenerator *_generator; // MC sampling generation engine
52  RooRealVar *_maxVar ; // Variable holding maximum value of p.d.f
53  TIterator *_uniIter ; // Iterator over uniform observables
54  Int_t _updateFMaxPerEvent ; // If true, maximum p.d.f value needs to be recalculated for each event
55 
56  ClassDef(RooGenContext,0) // Universal context for generating toy MC data from any p.d.f
57 };
58 
59 #endif