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