Logo ROOT   6.08/07
Reference Guide
RooLinearVar.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id: RooLinearVar.h,v 1.19 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_LINEAR_VAR
17 #define ROO_LINEAR_VAR
18 
19 #include "Riosfwd.h"
20 #include <math.h>
21 #include <float.h>
22 #include "TString.h"
23 #include "RooAbsRealLValue.h"
24 #include "RooRealProxy.h"
25 #include "RooFormula.h"
26 #include "RooLinTransBinning.h"
27 
28 class RooArgSet ;
29 
31 public:
32  // Constructors, assignment etc.
33  RooLinearVar() {} ;
34  RooLinearVar(const char *name, const char *title, RooAbsRealLValue& variable, const RooAbsReal& slope, const RooAbsReal& offset, const char *unit= "") ;
35  RooLinearVar(const RooLinearVar& other, const char* name=0);
36  virtual TObject* clone(const char* newname) const { return new RooLinearVar(*this,newname); }
37  virtual ~RooLinearVar() ;
38 
39  // Parameter value and error accessors
40  virtual void setVal(Double_t value) ;
41 
42  // Jacobian and limits
43  virtual Bool_t hasBinning(const char* name) const ;
44  virtual const RooAbsBinning& getBinning(const char* name=0, Bool_t verbose=kTRUE, Bool_t createOnTheFly=kFALSE) const ;
45  virtual RooAbsBinning& getBinning(const char* name=0, Bool_t verbose=kTRUE, Bool_t createOnTheFly=kFALSE) ;
46  virtual std::list<std::string> getBinningNames() const;
47 
48  virtual Double_t jacobian() const ;
49  virtual Bool_t isJacobianOK(const RooArgSet& depList) const ;
50 
51  // I/O streaming interface (machine readable)
52  virtual Bool_t readFromStream(std::istream& is, Bool_t compact, Bool_t verbose=kFALSE) ;
53  virtual void writeToStream(std::ostream& os, Bool_t compact) const ;
54 
55  // Printing interface (human readable)
56 
57  using RooAbsRealLValue::operator= ;
59 
60 protected:
61 
62  virtual Double_t evaluate() const ;
63 
66  RooRealProxy _var ; // Input observable
67  RooRealProxy _slope ; // Slope of transformation
68  RooRealProxy _offset ; // Offset of transformation
69 
70  ClassDef(RooLinearVar,1) // Lvalue linear transformation function
71 };
72 
73 #endif
virtual ~RooLinearVar()
Destructor.
RooRealProxy _slope
Definition: RooLinearVar.h:67
virtual Double_t evaluate() const
Calculate current value of this object.
virtual Bool_t readFromStream(std::istream &is, Bool_t compact, Bool_t verbose=kFALSE)
Read object contents from stream.
bool Bool_t
Definition: RtypesCore.h:59
const Bool_t kFALSE
Definition: Rtypes.h:92
virtual Bool_t isJacobianOK(const RooArgSet &depList) const
Returns true if Jacobian term associated with current expression tree is indeed constant.
#define ClassDef(name, id)
Definition: Rtypes.h:254
virtual void writeToStream(std::ostream &os, Bool_t compact) const
Write object contents to stream.
virtual Double_t offset() const
Definition: RooAbsReal.h:309
RooLinkedList _altBinning
Definition: RooLinearVar.h:65
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...
bool verbose
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.
RooRealProxy _offset
Definition: RooLinearVar.h:68
virtual void setVal(Double_t value)=0
virtual TObject * clone(const char *newname) const
Definition: RooLinearVar.h:36
RooLinkedList is an collection class for internal use, storing a collection of RooAbsArg pointers in ...
Definition: RooLinkedList.h:35
RooAbsBinning is the abstract base class for RooRealVar binning definitions This class defines the in...
Definition: RooAbsBinning.h:26
RooLinTransBinning _binning
Definition: RooLinearVar.h:64
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
virtual std::list< std::string > getBinningNames() const
Get a list of all binning names.
Mother of all ROOT objects.
Definition: TObject.h:37
RooRealProxy _var
Definition: RooLinearVar.h:66
RooAbsRealLValue is the common abstract base class for objects that represent a real value that may a...
RooRealProxy is the concrete proxy for RooAbsReal objects A RooRealProxy is the general mechanism to ...
Definition: RooRealProxy.h:23
const Bool_t kTRUE
Definition: Rtypes.h:91
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...
char name[80]
Definition: TGX11.cxx:109