// RooGenericPdf is a concrete implementation of a probability density function,
// which takes a RooArgList of servers and a C++ expression string defining how
// its value should be calculated from the given list of servers.
// A fully numerical integration is automatically performed to normalize the given
// expression. RooGenericPdf uses a RooFormula object to perform the expression evaluation
//
// The string expression can be any valid TFormula expression referring to the
// listed servers either by name or by their ordinal list position:
//
// RooGenericPdf("gen","x*y",RooArgList(x,y)) or
// RooGenericPdf("gen","@0*@1",RooArgList(x,y))
//
// The latter form, while slightly less readable, is more versatile because it
// doesn't hardcode any of the variable names it expects
// END_HTML
#include "RooFit.h"
#include "Riostream.h"
#include "RooGenericPdf.h"
#include "RooGenericPdf.h"
#include "RooStreamParser.h"
#include "RooMsgService.h"
#include "RooArgList.h"
ClassImp(RooGenericPdf)
RooGenericPdf::RooGenericPdf(const char *name, const char *title, const RooArgList& dependents) :
RooAbsPdf(name,title),
_actualVars("actualVars","Variables used by PDF expression",this),
_formula(name,title,dependents)
{
_actualVars.add(dependents) ;
if (_actualVars.getSize()==0) _value = traceEval(0) ;
}
RooGenericPdf::RooGenericPdf(const char *name, const char *title,
const char* formula, const RooArgList& dependents) :
RooAbsPdf(name,title),
_actualVars("actualVars","Variables used by PDF expression",this),
_formula(name,formula,dependents)
{
_actualVars.add(dependents) ;
if (_actualVars.getSize()==0) _value = traceEval(0) ;
}
RooGenericPdf::RooGenericPdf(const RooGenericPdf& other, const char* name) :
RooAbsPdf(other, name),
_actualVars("actualVars",this,other._actualVars),
_formula(other._formula)
{
}
RooGenericPdf::~RooGenericPdf()
{
}
Double_t RooGenericPdf::evaluate() const
{
return _formula.eval(_normSet) ;
}
Bool_t RooGenericPdf::setFormula(const char* formula)
{
if (_formula.reCompile(formula)) return kTRUE ;
SetTitle(formula) ;
setValueDirty() ;
return kFALSE ;
}
Bool_t RooGenericPdf::isValidReal(Double_t , Bool_t ) const
{
return kTRUE ;
}
Bool_t RooGenericPdf::redirectServersHook(const RooAbsCollection& newServerList, Bool_t mustReplaceAll, Bool_t nameChange, Bool_t )
{
return _formula.changeDependents(newServerList,mustReplaceAll,nameChange) ;
}
void RooGenericPdf::printMultiline(ostream& os, Int_t content, Bool_t verbose, TString indent) const
{
RooAbsPdf::printMultiline(os,content,verbose,indent);
if (verbose) {
os << " --- RooGenericPdf --- " << endl ;
indent.Append(" ");
os << indent ;
_formula.printMultiline(os,content,verbose,indent);
}
}
Bool_t RooGenericPdf::readFromStream(istream& is, Bool_t compact, Bool_t )
{
if (compact) {
coutE(InputArguments) << "RooGenericPdf::readFromStream(" << GetName() << "): can't read in compact mode" << endl ;
return kTRUE ;
} else {
RooStreamParser parser(is) ;
return setFormula(parser.readLine()) ;
}
}
void RooGenericPdf::writeToStream(ostream& os, Bool_t compact) const
{
if (compact) {
os << getVal() << endl ;
} else {
os << GetTitle() ;
}
}
Last change: Wed Jun 25 08:33:04 2008
Last generated: 2008-06-25 08:33
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.