/usr/include/root/RooSimPdfBuilder.h is in libroot-roofit-dev 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | /*****************************************************************************
* Project: RooFit *
* Package: RooFitCore *
* File: $Id: RooSimPdfBuilder.h,v 1.13 2007/05/11 10:14:56 verkerke Exp $
* 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_PDF_BUILDER
#define ROO_SIM_PDF_BUILDER
#include "Rtypes.h"
#include "TObject.h"
#include "RooArgSet.h"
#include "RooArgList.h"
#include "RooAbsData.h"
#include <list>
class RooSimultaneous ;
class RooAbsPdf ;
class RooCategory ;
class RooSuperCategory ;
class RooSimPdfBuilder : public TObject {
public:
RooSimPdfBuilder(const RooArgSet& pdfProtoList) ;
~RooSimPdfBuilder() ;
RooArgSet* createProtoBuildConfig() ;
RooSimultaneous* buildPdf(const RooArgSet& buildConfig, const RooArgSet& dependents,
const RooArgSet* auxSplitCats=0, Bool_t verbose=kFALSE) ;
RooSimultaneous* buildPdf(const RooArgSet& buildConfig, const RooAbsData* dataSet,
const RooArgSet& auxSplitCats, Bool_t verbose=kFALSE) {
return buildPdf(buildConfig,*dataSet->get(),&auxSplitCats,verbose) ;
}
RooSimultaneous* buildPdf(const RooArgSet& buildConfig, const RooArgSet& dependents,
const RooArgSet& auxSplitCats, Bool_t verbose=kFALSE) {
return buildPdf(buildConfig,dependents,&auxSplitCats,verbose) ;
}
RooSimultaneous* buildPdf(const RooArgSet& buildConfig, const RooAbsData* dataSet,
const RooArgSet* auxSplitCats=0, Bool_t verbose=kFALSE) {
return buildPdf(buildConfig,*dataSet->get(),auxSplitCats,verbose) ;
}
const RooArgSet& splitLeafList() { return _splitNodeList; }
void addSpecializations(const RooArgSet& specSet) ;
protected:
RooArgSet _protoPdfSet ; // Set of prototype PDFS
RooArgSet _compSplitCatSet ; // List of owned composite splitting categories
RooArgSet _splitNodeListOwned ; // List of all split nodes
RooArgSet _splitNodeList ; // List of owned split nodes
TList _retiredCustomizerList ; // Retired customizer from previous builds (own their PDF branch nodes)
std::list<RooSimultaneous*> _simPdfList ; // The simpdfs that we built
std::list<RooSuperCategory*> _fitCatList ; // The supercategories that we built
private:
RooSimPdfBuilder(const RooSimPdfBuilder&) ; // No copying allowed
protected:
ClassDef(RooSimPdfBuilder,0) // RooSimultaneous PDF Builder (obsolete)
};
#endif
|