Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooAddGenContext.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id: RooAddGenContext.h,v 1.12 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_ADD_GEN_CONTEXT
17 #define ROO_ADD_GEN_CONTEXT
18 
19 #include "RooAbsGenContext.h"
20 #include "RooArgSet.h"
21 #include <vector>
22 #include "RooAddPdf.h"
23 #include "RooAddModel.h"
24 
25 class RooAddPdf;
26 class RooAddModel;
27 class RooDataSet;
28 class RooRealIntegral;
29 class RooAcceptReject;
30 class TRandom;
31 
32 class RooAddGenContext : public RooAbsGenContext {
33 public:
34  RooAddGenContext(const RooAddPdf &model, const RooArgSet &vars, const RooDataSet *prototype= 0,
35  const RooArgSet* auxProto=0, Bool_t _verbose= kFALSE);
36  RooAddGenContext(const RooAddModel &model, const RooArgSet &vars, const RooDataSet *prototype= 0,
37  const RooArgSet* auxProto=0, Bool_t _verbose= kFALSE);
38  virtual ~RooAddGenContext();
39 
40  virtual void setProtoDataOrder(Int_t* lut) ;
41 
42  virtual void attach(const RooArgSet& params) ;
43 
44  virtual void printMultiline(std::ostream &os, Int_t content, Bool_t verbose=kFALSE, TString indent="") const ;
45 
46 protected:
47 
48  virtual void initGenerator(const RooArgSet &theEvent);
49  virtual void generateEvent(RooArgSet &theEvent, Int_t remaining);
50  void updateThresholds() ;
51 
52  RooAddGenContext(const RooAddGenContext& other) ;
53 
54  const RooArgSet* _vars ;
55  RooArgSet* _pdfSet ; // Set owned all nodes of internal clone of p.d.f
56  RooAbsPdf *_pdf ; // Pointer to cloned p.d.f
57  std::vector<RooAbsGenContext*> _gcList ; // List of component generator contexts
58  Int_t _nComp ; // Number of PDF components
59  Double_t* _coefThresh ; //[_nComp] Array of coefficient thresholds
60  Bool_t _isModel ; // Are we generating from a RooAddPdf or a RooAddModel
61  RooAddModel::CacheElem* _mcache ; //! RooAddModel cache element
62  RooAddPdf::CacheElem* _pcache ; //! RooAddPdf cache element
63 
64  ClassDef(RooAddGenContext,0) // Specialized context for generating a dataset from a RooAddPdf
65 };
66 
67 #endif