Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooLinearVar.cxx
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * @(#)root/roofitcore:$Id$
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
17//////////////////////////////////////////////////////////////////////////////
18/// \class RooLinearVar
19/// RooLinearVar is the most general form of a derived real-valued object that can
20/// be used by RooRealIntegral to integrate over. The requirements for this are
21/// * Can be modified directly (i.e. invertible formula)
22/// * Jacobian term in integral is constant (but not necessarily 1)
23///
24/// This class implements the most general form that satisfies these requirements
25/// \f[
26/// RLV = \mathrm{slope} \cdot x + \mathrm{offset}
27/// \f]
28/// \f$ x \f$ is required to be a RooRealVar to meet the invertibility criterium,
29/// `slope` and `offset` are RooAbsReals, but cannot overlap with \f$ x \f$,
30/// *i.e.*, \f$ x \f$ may not be a server of `slope` and `offset`.
31///
32/// In the context of a dataset, `slope` may not contain any real-valued dependents
33/// (to satisfyt the constant Jacobian requirement). This check cannot be enforced at
34/// construction time, but can be performed at run time through the isJacobianOK(depList)
35/// member function.
36///
37///
38
39#include "RooFit.h"
40
41#include <cmath>
42
43#include "TClass.h"
44#include "RooLinearVar.h"
45#include "RooStreamParser.h"
46#include "RooArgSet.h"
47#include "RooRealVar.h"
48#include "RooNumber.h"
49#include "RooBinning.h"
50#include "RooMsgService.h"
51
52
53
54using namespace std;
55
57
58
59////////////////////////////////////////////////////////////////////////////////
60/// Constructor with RooAbsRealLValue variable and RooAbsReal slope and offset
61
62RooLinearVar::RooLinearVar(const char *name, const char *title, RooAbsRealLValue& variable,
63 const RooAbsReal& slope, const RooAbsReal& offs, const char *unit) :
64 RooAbsRealLValue(name, title, unit),
65 _binning(variable.getBinning(),slope.getVal(),offs.getVal()),
66 _var("var","variable",this,variable,kTRUE,kTRUE),
67 _slope("slope","slope",this,(RooAbsReal&)slope),
68 _offset("offset","offset",this,(RooAbsReal&)offs)
69{
70 // Slope and offset may not depend on variable
71 if (slope.dependsOnValue(variable) || offs.dependsOnValue(variable)) {
72 coutE(InputArguments) << "RooLinearVar::RooLinearVar(" << GetName()
73 << "): ERROR, slope(" << slope.GetName() << ") and offset("
74 << offs.GetName() << ") may not depend on variable("
75 << variable.GetName() << ")" << endl ;
76 assert(0) ;
77 }
78
79 // Initial plot range and number of bins from dependent variable
80// setPlotRange(variable.getPlotMin()*_slope + _offset,
81// variable.getPlotMax()*_slope + _offset) ;
82// setPlotBins(variable.getPlotBins()) ;
83
84}
85
86
87
88////////////////////////////////////////////////////////////////////////////////
89/// Copy constructor
90
91RooLinearVar::RooLinearVar(const RooLinearVar& other, const char* name) :
92 RooAbsRealLValue(other,name),
93 _binning(other._binning),
94 _var("var",this,other._var),
95 _slope("slope",this,other._slope),
96 _offset("offset",this,other._offset)
97{
98}
99
100
101
102////////////////////////////////////////////////////////////////////////////////
103/// Destructor
104
106{
108}
109
110
111
112////////////////////////////////////////////////////////////////////////////////
113/// Calculate current value of this object
114
116{
117 return _offset + _var * _slope ;
118}
119
120
121
122////////////////////////////////////////////////////////////////////////////////
123/// Assign given value to linear transformation: sets input variable to (value-offset)/slope
124/// If slope is zerom an error message is printed and no assignment is made
125
127{
128 //cout << "RooLinearVar::setVal(" << GetName() << "): new value = " << value << endl ;
129
130 // Prevent DIV0 problems
131 if (_slope == 0.) {
132 coutE(Eval) << "RooLinearVar::setVal(" << GetName() << "): ERROR: slope is zero, cannot invert relation" << endl ;
133 return ;
134 }
135
136 // Invert formula 'value = offset + slope*var'
137 ((RooRealVar&)_var.arg()).setVal((value - _offset) / _slope) ;
138
139}
140
141
142
143////////////////////////////////////////////////////////////////////////////////
144/// Returns true if Jacobian term associated with current
145/// expression tree is indeed constant.
146
148{
149 if (!((RooAbsRealLValue&)_var.arg()).isJacobianOK(depList)) {
150 return kFALSE ;
151 }
152
153 // Check if jacobian has no real-valued dependents
154 RooAbsArg* arg ;
155 TIter dIter = depList.createIterator() ;
156 while ((arg=(RooAbsArg*)dIter.Next())) {
157 if (arg->IsA()->InheritsFrom(RooAbsReal::Class())) {
158 if (_slope.arg().dependsOnValue(*arg)) {
159// cout << "RooLinearVar::isJacobianOK(" << GetName() << ") return kFALSE because slope depends on value of " << arg->GetName() << endl ;
160 return kFALSE ;
161 }
162 }
163 }
164 // cout << "RooLinearVar::isJacobianOK(" << GetName() << ") return kTRUE" << endl ;
165 return kTRUE ;
166}
167
168
169
170////////////////////////////////////////////////////////////////////////////////
171/// Return value of Jacobian associated with the transformation
172
174{
175 return _slope*((RooAbsRealLValue&)_var.arg()).jacobian() ;
176}
177
178
179
180////////////////////////////////////////////////////////////////////////////////
181/// Read object contents from stream
182
183Bool_t RooLinearVar::readFromStream(istream& /*is*/, Bool_t /*compact*/, Bool_t /*verbose*/)
184{
185 return kTRUE ;
186}
187
188
189
190////////////////////////////////////////////////////////////////////////////////
191/// Write object contents to stream
192
193void RooLinearVar::writeToStream(ostream& os, Bool_t compact) const
194{
195 if (compact) {
196 os << getVal() ;
197 } else {
198 os << _slope.arg().GetName() << " * " << _var.arg().GetName() << " + " << _offset.arg().GetName() ;
199 }
200}
201
202
203
204////////////////////////////////////////////////////////////////////////////////
205/// Retrieve binning of this linear transformation. A RooLinearVar does not have its own
206/// binnings but uses linearly transformed binnings of the input variable. If a given
207/// binning exists on the input variable, it will also exist on this linear transformation,
208/// and a binning adaptor object is created on the fly.
209
210 RooAbsBinning& RooLinearVar::getBinning(const char* name, Bool_t verbose, Bool_t createOnTheFly)
211{
212 // Normalization binning
213 if (name==0) {
215 return _binning ;
216 }
217
218 // Alternative named range binnings, look for existing translator binning first
220 if (altBinning) {
221 altBinning->updateInput(((RooAbsRealLValue&)_var.arg()).getBinning(name,verbose),_slope,_offset) ;
222 return *altBinning ;
223 }
224
225 // If binning is not found return default binning, if creation is not requested
226 if (!_var.arg().hasRange(name) && !createOnTheFly) {
227 return _binning ;
228 }
229
230 // Create translator binning on the fly
231 RooAbsBinning& sourceBinning = ((RooAbsRealLValue&)_var.arg()).getBinning(name,verbose) ;
232 RooLinTransBinning* transBinning = new RooLinTransBinning(sourceBinning,_slope,_offset) ;
233 _altBinning.Add(transBinning) ;
234
235 return *transBinning ;
236}
237
238
239////////////////////////////////////////////////////////////////////////////////
240/// Const version of getBinning()
241
242const RooAbsBinning& RooLinearVar::getBinning(const char* name, Bool_t verbose, Bool_t createOnTheFly) const
243{
244 return const_cast<RooLinearVar*>(this)->getBinning(name,verbose,createOnTheFly) ;
245}
246
247////////////////////////////////////////////////////////////////////////////////
248/// Get a list of all binning names. An empty name implies the default binning.
249/// A 0 pointer should be passed to getBinning in this case.
250
251std::list<std::string> RooLinearVar::getBinningNames() const
252{
253 std::list<std::string> binningNames(1, "");
254
256 const RooAbsArg* binning = 0;
257 while((binning = iter.next())) {
258 const char* name = binning->GetName();
259 binningNames.push_back(name);
260 }
261
262 return binningNames;
263}
264
265////////////////////////////////////////////////////////////////////////////////
266/// Returns true if binning with given name exists.If a given binning
267/// exists on the input variable, it will also exists on this linear
268/// transformation.
269
271{
272 return ((RooAbsRealLValue&)_var.arg()).hasBinning(name) ;
273}
#define coutE(a)
const Bool_t kFALSE
Definition RtypesCore.h:101
const Bool_t kTRUE
Definition RtypesCore.h:100
#define ClassImp(name)
Definition Rtypes.h:364
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:69
Bool_t dependsOnValue(const RooAbsCollection &serverList, const RooAbsArg *ignoreArg=0) const
Check whether this object depends on values from an element in the serverList.
Definition RooAbsArg.h:99
virtual Bool_t hasRange(const char *) const
Definition RooAbsArg.h:397
RooAbsBinning is the abstract base class for RooRealVar binning definitions.
TIterator * createIterator(Bool_t dir=kIterForward) const
TIterator-style iteration over contained elements.
RooAbsRealLValue is the common abstract base class for objects that represent a real value that may a...
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:64
Double_t getVal(const RooArgSet *normalisationSet=nullptr) const
Evaluate object.
Definition RooAbsReal.h:94
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:35
A one-time forward iterator working on RooLinkedList or RooAbsCollection.
RooAbsArg * next()
Return next element or nullptr if at end.
RooLinTransBinning is a special binning implementation for RooLinearVar that transforms the binning o...
void updateInput(const RooAbsBinning &input, Double_t slope=1.0, Double_t offset=0.0)
Update the slope and offset parameters and the pointer to the input binning.
RooLinearVar is the most general form of a derived real-valued object that can be used by RooRealInte...
virtual const RooAbsBinning & getBinning(const char *name=0, Bool_t verbose=kTRUE, Bool_t createOnTheFly=kFALSE) const
Const version of getBinning()
RooRealProxy _slope
virtual void setVal(Double_t value)
Assign given value to linear transformation: sets input variable to (value-offset)/slope If slope is ...
RooLinkedList _altBinning
virtual Double_t jacobian() const
Return value of Jacobian associated with the transformation.
RooRealProxy _var
virtual Bool_t hasBinning(const char *name) const
Returns true if binning with given name exists.If a given binning exists on the input variable,...
RooLinTransBinning _binning
virtual Bool_t readFromStream(std::istream &is, Bool_t compact, Bool_t verbose=kFALSE)
Read object contents from stream.
virtual Bool_t isJacobianOK(const RooArgSet &depList) const
Returns true if Jacobian term associated with current expression tree is indeed constant.
virtual Double_t evaluate() const
Calculate current value of this object
RooRealProxy _offset
virtual std::list< std::string > getBinningNames() const
Get a list of all binning names.
virtual void writeToStream(std::ostream &os, Bool_t compact) const
Write object contents to stream.
virtual ~RooLinearVar()
Destructor.
TObject * FindObject(const char *name) const
Return pointer to obejct with given name.
RooFIter fwdIterator() const
Create a one-time-use forward iterator for this list.
void Delete(Option_t *o=0)
Remove all elements in collection and delete all elements NB: Collection does not own elements,...
virtual void Add(TObject *arg)
RooRealVar represents a variable that can be changed from the outside.
Definition RooRealVar.h:39
const T & arg() const
Return reference to object held in proxy.
TObject * Next()
virtual const char * GetName() const
Returns name of object.
Definition TNamed.h:47
virtual Bool_t InheritsFrom(const char *classname) const
Returns kTRUE if object inherits from class "classname".
Definition TObject.cxx:515