Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooFormula.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id: RooFormula.h,v 1.34 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_FORMULA
17 #define ROO_FORMULA
18 
19 #include "RooPrintable.h"
20 #include "RooArgList.h"
21 #include "RooArgSet.h"
22 #include "TFormula.h"
23 
24 #include <memory>
25 #include <vector>
26 #include <string>
27 
28 class RooFormula : public TNamed, public RooPrintable {
29 public:
30  // Constructors etc.
31  RooFormula() ;
32  RooFormula(const char* name, const char* formula, const RooArgList& varList, bool checkVariables = true);
33  RooFormula(const RooFormula& other, const char* name=0);
34  virtual TObject* Clone(const char* newName = nullptr) const {return new RooFormula(*this, newName);}
35 
36  ////////////////////////////////////////////////////////////////////////////////
37  /// Return list of arguments which are used in the formula.
38  RooArgSet actualDependents() const {return usedVariables();}
39  Bool_t changeDependents(const RooAbsCollection& newDeps, Bool_t mustReplaceAll, Bool_t nameChange) ;
40 
41  /// Return pointer to the parameter with given name.
42  /// \return Parameter if in use, nullptr if not in use.
43  RooAbsArg* getParameter(const char* name) const {
44  return usedVariables().find(name);
45  }
46 
47  /// Return pointer to parameter at given index. This returns
48  /// irrespective of whether the parameter is in use.
49  RooAbsArg* getParameter(Int_t index) const {
50  return _origList.at(index);
51  }
52 
53  Bool_t ok() { return _tFormula != nullptr; }
54  /// Evalute all parameters/observables, and then evaluate formula.
55  Double_t eval(const RooArgSet* nset=0) const;
56 
57  /// DEBUG: Dump state information
58  void dump() const;
59  Bool_t reCompile(const char* newFormula) ;
60 
61 
62  virtual void printValue(std::ostream& os) const ;
63  virtual void printName(std::ostream& os) const ;
64  virtual void printTitle(std::ostream& os) const ;
65  virtual void printClassName(std::ostream& os) const ;
66  virtual void printArgs(std::ostream& os) const ;
67  void printMultiline(std::ostream& os, Int_t contents, Bool_t verbose=kFALSE, TString indent="") const ;
68 
69  virtual void Print(Option_t *options= 0) const {
70  // Printing interface (human readable)
71  printStream(defaultPrintStream(),defaultPrintContents(options),defaultPrintStyle(options));
72  }
73 
74  std::string formulaString() const {
75  return _tFormula ? _tFormula->GetTitle() : "";
76  }
77 
78 private:
79  RooFormula& operator=(const RooFormula& other);
80  std::string processFormula(std::string origFormula) const;
81  RooArgList usedVariables() const;
82  std::string reconstructFormula(std::string internalRepr) const;
83  std::vector<bool> findCategoryServers(const RooAbsCollection& collection) const;
84 
85  RooArgList _origList; //! Original list of dependents
86  std::vector<bool> _isCategory; //! Whether an element of the _origList is a category.
87  std::unique_ptr<TFormula> _tFormula; //! The formula used to compute values
88 
89  ClassDef(RooFormula,0)
90 };
91 
92 #endif