/***************************************************************************** * Project: RooFit * * Package: RooFitCore * * File: $Id$ * Authors: * * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu * * DK, David Kirkby, UC Irvine, dkirkby@uci.edu * * * * Copyright (c) 2000-2005, Regents of the University of California * * and Stanford University. All rights reserved. * * * * Redistribution and use in source and binary forms, * * with or without modification, are permitted according to the terms * * listed in LICENSE (http://roofit.sourceforge.net/license.txt) * *****************************************************************************/ #ifndef ROO_SIM_SPLIT_GEN_CONTEXT #define ROO_SIM_SPLIT_GEN_CONTEXT #include "RooAbsGenContext.h" #include "RooArgSet.h" #include class RooSimultaneous; class RooDataSet; class RooAbsCategoryLValue ; class RooSimSplitGenContext : public RooAbsGenContext { public: RooSimSplitGenContext(const RooSimultaneous &model, const RooArgSet &vars, bool _verbose= false, bool autoBinned=true, const char* binnedTag=""); ~RooSimSplitGenContext() override; void setProtoDataOrder(Int_t* lut) override ; void attach(const RooArgSet& params) override ; void printMultiline(std::ostream &os, Int_t content, bool verbose=false, TString indent="") const override ; RooDataSet *generate(double nEvents= 0, bool skipInit=false, bool extendedMode=false) override; void setExpectedData(bool) override ; protected: void initGenerator(const RooArgSet &theEvent) override; void generateEvent(RooArgSet &theEvent, Int_t remaining) override; RooDataSet* createDataSet(const char* name, const char* title, const RooArgSet& obs) override ; RooSimSplitGenContext(const RooSimSplitGenContext& other) ; RooAbsCategoryLValue* _idxCat ; ///< Clone of index category RooArgSet _idxCatSet ; ///< Owner of index category components const RooSimultaneous *_pdf ; ///< Original PDF std::vector _gcList ; ///< List of component generator contexts std::vector _gcIndex ; ///< Index value corresponding to component TString _idxCatName ; ///< Name of index category Int_t _numPdf ; ///< Number of generated PDFs double* _fracThresh ; ///< fraction thresholds RooArgSet _allVarsPdf ; ///< All pdf variables ClassDefOverride(RooSimSplitGenContext,0) // Context for efficiently generating a dataset from a RooSimultaneous PDF }; #endif