Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooBinnedGenContext.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_BINNED_GEN_CONTEXT
17 #define ROO_BINNED_GEN_CONTEXT
18 
19 #include "RooAbsGenContext.h"
20 #include "RooArgSet.h"
21 #include <vector>
22 
23 class RooDataSet;
24 class RooRealIntegral;
25 class RooAcceptReject;
26 class RooDataHist ;
27 class TRandom;
28 class TIterator;
29 
30 class RooBinnedGenContext : public RooAbsGenContext {
31 public:
32  RooBinnedGenContext(const RooAbsPdf &model, const RooArgSet &vars, const RooDataSet *prototype= 0,
33  const RooArgSet* auxProto=0, Bool_t _verbose= kFALSE);
34  virtual ~RooBinnedGenContext();
35 
36  RooDataSet* generate(Double_t nEvents=0, Bool_t skipInit=kFALSE, Bool_t extendedMode=kFALSE) ;
37 
38  virtual void setProtoDataOrder(Int_t*) {}
39 
40  virtual void attach(const RooArgSet& params) ;
41 
42  virtual void printMultiline(std::ostream &os, Int_t content, Bool_t verbose=kFALSE, TString indent="") const ;
43 
44  virtual void setExpectedData(Bool_t) ;
45 
46 protected:
47 
48  virtual void initGenerator(const RooArgSet &theEvent);
49  virtual void generateEvent(RooArgSet &theEvent, Int_t remaining);
50 
51  RooBinnedGenContext(const RooBinnedGenContext& other) ;
52 
53  const RooArgSet* _vars ;
54  RooArgSet* _pdfSet ; // Set owned all nodes of internal clone of p.d.f
55  RooAbsPdf *_pdf ; // Pointer to cloned p.d.f
56  RooDataHist* _hist ; // Histogram
57  Bool_t _expectedData ; // Asimov?
58 
59  ClassDef(RooBinnedGenContext,0) // Specialized context for generating a dataset from a binned pdf
60 };
61 
62 #endif