Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooGenericPdf.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooGenericPdf.h,v 1.20 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_GENERIC_PDF
17#define ROO_GENERIC_PDF
18
19#include "RooAbsPdf.h"
20#include "RooFormula.h"
21#include "RooListProxy.h"
22
23class RooArgList ;
24
25class RooGenericPdf : public RooAbsPdf {
26public:
27 // Constructors, assignment etc
28 inline RooGenericPdf(){}
29 RooGenericPdf(const char *name, const char *title, const char* formula, const RooArgList& dependents);
30 RooGenericPdf(const char *name, const char *title, const RooArgList& dependents);
31 RooGenericPdf(const RooGenericPdf& other, const char* name=nullptr);
32 TObject* clone(const char* newname) const override { return new RooGenericPdf(*this,newname); }
33
34 // I/O streaming interface (machine readable)
35 bool readFromStream(std::istream& is, bool compact, bool verbose=false) override ;
36 void writeToStream(std::ostream& os, bool compact) const override ;
37
38 /// Return pointer to parameter with given name.
39 inline RooAbsArg* getParameter(const char* name) const {
40 return _actualVars.find(name) ;
41 }
42 /// Return pointer to parameter at given index.
44 return _actualVars.at(index) ;
45 }
46 /// Return the number of parameters.
47 inline size_t nParameters() const {
48 return _actualVars.size();
49 }
50
51 // Printing interface (human readable)
52 void printMultiline(std::ostream& os, Int_t content, bool verbose=false, TString indent="") const override ;
53 void printMetaArgs(std::ostream& os) const override ;
54
55 // Debugging
56 void dumpFormula() { formula().dump() ; }
57
58 const char* expression() const { return _formExpr.Data(); }
59 const RooArgList& dependents() const { return _actualVars; }
60
61protected:
62
63 RooFormula& formula() const ;
64
65 // Function evaluation
67 double evaluate() const override ;
68 RooSpan<double> evaluateSpan(RooBatchCompute::RunContext& inputData, const RooArgSet* normSet) const override;
69 void computeBatch(cudaStream_t*, double* output, size_t nEvents, RooFit::Detail::DataMap const&) const override;
70
71 bool setFormula(const char* formula) ;
72
73 // Post-processing of server redirection
74 bool redirectServersHook(const RooAbsCollection& newServerList, bool mustReplaceAll, bool nameChange, bool isRecursive) override ;
75
76 bool isValidReal(double value, bool printError) const override ;
77
78 std::unique_ptr<RooFormula> _formula{nullptr}; ///<! Formula engine
79 TString _formExpr ; ///< Formula expression string
80
81 ClassDefOverride(RooGenericPdf,1) // Generic PDF defined by string expression and list of variables
82};
83
84#endif
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
static void indent(ostringstream &buf, int indent_level)
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t index
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
char name[80]
Definition TGX11.cxx:110
RooAbsArg is the common abstract base class for objects that represent a value and a "shape" in RooFi...
Definition RooAbsArg.h:74
RooAbsCollection is an abstract container object that can hold multiple RooAbsArg objects.
Storage_t::size_type size() const
RooAbsArg * find(const char *name) const
Find object with given name in list.
RooArgList is a container object that can hold multiple RooAbsArg objects.
Definition RooArgList.h:22
RooAbsArg * at(Int_t idx) const
Return object at given index, or nullptr if index is out of range.
Definition RooArgList.h:110
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
RooFormula internally uses ROOT's TFormula to compute user-defined expressions of RooAbsArgs.
Definition RooFormula.h:33
void dump() const
DEBUG: Dump state information.
RooGenericPdf is a concrete implementation of a probability density function, which takes a RooArgLis...
double evaluate() const override
Calculate current value of this object.
RooSpan< double > evaluateSpan(RooBatchCompute::RunContext &inputData, const RooArgSet *normSet) const override
Evaluate this formula for values found in inputData.
const char * expression() const
bool setFormula(const char *formula)
Change formula expression to given expression.
RooAbsArg * getParameter(Int_t index) const
Return pointer to parameter at given index.
bool readFromStream(std::istream &is, bool compact, bool verbose=false) override
Read object contents from given stream.
const RooArgList & dependents() const
bool isValidReal(double value, bool printError) const override
Check if given value is valid.
void printMetaArgs(std::ostream &os) const override
Add formula expression as meta argument in printing interface.
RooListProxy _actualVars
void writeToStream(std::ostream &os, bool compact) const override
Write object contents to given stream.
void computeBatch(cudaStream_t *, double *output, size_t nEvents, RooFit::Detail::DataMap const &) const override
Base function for computing multiple values of a RooAbsReal.
std::unique_ptr< RooFormula > _formula
! Formula engine
RooAbsArg * getParameter(const char *name) const
Return pointer to parameter with given name.
size_t nParameters() const
Return the number of parameters.
RooFormula & formula() const
TString _formExpr
Formula expression string.
void printMultiline(std::ostream &os, Int_t content, bool verbose=false, TString indent="") const override
Print info about this object to the specified stream.
bool redirectServersHook(const RooAbsCollection &newServerList, bool mustReplaceAll, bool nameChange, bool isRecursive) override
Propagate server changes to embedded formula object.
TObject * clone(const char *newname) const override
A simple container to hold a batch of data values.
Definition RooSpan.h:34
Mother of all ROOT objects.
Definition TObject.h:41
Basic string class.
Definition TString.h:139
const char * Data() const
Definition TString.h:380
This struct enables passing computation data around between elements of a computation graph.
Definition RunContext.h:32
static void output()