/***************************************************************************** * Project: RooFit * * Package: RooFitCore * * File: $Id: RooGenericPdf.h,v 1.20 2007/05/11 09:11:30 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_GENERIC_PDF #define ROO_GENERIC_PDF #include "RooAbsPdf.h" #include "RooListProxy.h" class RooArgList ; class RooFormula ; class RooGenericPdf : public RooAbsPdf { public: // Constructors, assignment etc RooGenericPdf(); ~RooGenericPdf() override; RooGenericPdf(const char *name, const char *title, const char* formula, const RooArgList& dependents); RooGenericPdf(const char *name, const char *title, const RooArgList& dependents); RooGenericPdf(const RooGenericPdf& other, const char* name=nullptr); TObject* clone(const char* newname) const override { return new RooGenericPdf(*this,newname); } // I/O streaming interface (machine readable) bool readFromStream(std::istream& is, bool compact, bool verbose=false) override ; void writeToStream(std::ostream& os, bool compact) const override ; /// Return pointer to parameter with given name. inline RooAbsArg* getParameter(const char* name) const { return _actualVars.find(name) ; } /// Return pointer to parameter at given index. inline RooAbsArg* getParameter(Int_t index) const { return _actualVars.at(index) ; } /// Return the number of parameters. inline size_t nParameters() const { return _actualVars.size(); } // Printing interface (human readable) void printMultiline(std::ostream& os, Int_t content, bool verbose=false, TString indent="") const override ; void printMetaArgs(std::ostream& os) const override ; // Debugging void dumpFormula(); const char* expression() const { return _formExpr.Data(); } const RooArgList& dependents() const { return _actualVars; } protected: RooFormula& formula() const ; // Function evaluation RooListProxy _actualVars ; double evaluate() const override ; void computeBatch(double* output, size_t nEvents, RooFit::Detail::DataMap const&) const override; // Post-processing of server redirection bool redirectServersHook(const RooAbsCollection& newServerList, bool mustReplaceAll, bool nameChange, bool isRecursive) override ; bool isValidReal(double /*value*/, bool /*printError*/) const override { return true; } mutable RooFormula * _formula = nullptr; ///