Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooSimSplitGenContext.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_SIM_SPLIT_GEN_CONTEXT
17 #define ROO_SIM_SPLIT_GEN_CONTEXT
18 
19 #include "TList.h"
20 #include "RooAbsGenContext.h"
21 #include "RooArgSet.h"
22 #include <vector>
23 
24 class RooSimultaneous;
25 class RooDataSet;
26 class RooAbsCategoryLValue ;
27 
28 class RooSimSplitGenContext : public RooAbsGenContext {
29 public:
30  RooSimSplitGenContext(const RooSimultaneous &model, const RooArgSet &vars, Bool_t _verbose= kFALSE, Bool_t autoBinned=kTRUE, const char* binnedTag="");
31  virtual ~RooSimSplitGenContext();
32  virtual void setProtoDataOrder(Int_t* lut) ;
33 
34  virtual void attach(const RooArgSet& params) ;
35 
36  virtual void printMultiline(std::ostream &os, Int_t content, Bool_t verbose=kFALSE, TString indent="") const ;
37 
38  virtual RooDataSet *generate(Double_t nEvents= 0, Bool_t skipInit=kFALSE, Bool_t extendedMode=kFALSE);
39 
40  virtual void setExpectedData(Bool_t) ;
41 
42 protected:
43 
44  virtual void initGenerator(const RooArgSet &theEvent);
45  virtual void generateEvent(RooArgSet &theEvent, Int_t remaining);
46 
47  RooDataSet* createDataSet(const char* name, const char* title, const RooArgSet& obs) ;
48 
49  RooSimSplitGenContext(const RooSimSplitGenContext& other) ;
50 
51  RooAbsCategoryLValue* _idxCat ; // Clone of index category
52  RooArgSet* _idxCatSet ; // Owner of index category components
53  const RooSimultaneous *_pdf ; // Original PDF
54  std::vector<RooAbsGenContext*> _gcList ; // List of component generator contexts
55  std::vector<int> _gcIndex ; // Index value corresponding to component
56  TString _idxCatName ; // Name of index category
57  Int_t _numPdf ; // Number of generated PDFs
58  Double_t* _fracThresh ; // fraction thresholds
59 
60  RooArgSet _allVarsPdf ; // All pdf variables
61  TIterator* _proxyIter ; // Iterator over pdf proxies
62 
63  ClassDef(RooSimSplitGenContext,0) // Context for efficiently generating a dataset from a RooSimultaneous PDF
64 };
65 
66 #endif