Multidimensional Fits in ROOT.
A common problem encountered in different fields of applied science is to find an expression for one physical quantity in terms of several others, which are directly measurable.
An example in high energy physics is the evaluation of the momentum of a charged particle from the observation of its trajectory in a magnetic field. The problem is to relate the momentum of the particle to the observations, which may consists of positional measurements at intervals along the particle trajectory.
The exact functional relationship between the measured quantities (e.g., the space-points) and the dependent quantity (e.g., the momentum) is in general not known, but one possible way of solving the problem, is to find an expression which reliably approximates the dependence of the momentum on the observations.
This explicit function of the observations can be obtained by a least squares fitting procedure applied to a representative sample of the data, for which the dependent quantity (e.g., momentum) and the independent observations are known. The function can then be used to compute the quantity of interest for new observations of the independent variables.
This class TMultiDimFit implements such a procedure in ROOT. It is largely based on the CERNLIB MUDIFI package 2. Though the basic concepts are still sound, and therefore kept, a few implementation details have changed, and this class can take advantage of MINUIT 4 to improve the errors of the fitting, thanks to the class TMinuit.
In 5 and 6 H. Wind demonstrates the utility of this procedure in the context of tracking, magnetic field parameterisation, and so on. The outline of the method used in this class is based on Winds discussion, and I refer these two excellents text for more information.
And example of usage is given in multidimfit.C.
Let \( D \) by the dependent quantity of interest, which depends smoothly on the observable quantities \( x_1, \ldots, x_N \) which we'll denote by \(\mathbf{x}\). Given a training sample of \( M\) tuples of the form, (TMultiDimFit::AddRow)
\[ \left(\mathbf{x}_j, D_j, E_j\right)\quad, \]
where \(\mathbf{x}_j = (x_{1,j},\ldots,x_{N,j})\) are \( N\) independent variables, \( D_j\) is the known, quantity dependent at \(\mathbf{x}_j\) and \( E_j\) is the square error in \( D_j\), the class will try to find the parameterization
\[ D_p(\mathbf{x}) = \sum_{l=1}^{L} c_l \prod_{i=1}^{N} p_{li}\left(x_i\right) = \sum_{l=1}^{L} c_l F_l(\mathbf{x}) \]
such that
\[ S \equiv \sum_{j=1}^{M} \left(D_j - D_p\left(\mathbf{x}_j\right)\right)^2 \]
is minimal. Here \(p_{li}(x_i)\) are monomials, or Chebyshev or Legendre polynomials, labelled \(l = 1, \ldots, L\), in each variable \( x_i\), \( i=1, \ldots, N\).
So what TMultiDimFit does, is to determine the number of terms \( L\), and then \( L\) terms (or functions) \( F_l\), and the \( L\) coefficients \( c_l\), so that \( S\) is minimal (TMultiDimFit::FindParameterization).
Of course it's more than a little unlikely that \( S\) will ever become exact zero as a result of the procedure outlined below. Therefore, the user is asked to provide a minimum relative error \( \epsilon\) (TMultiDimFit::SetMinRelativeError), and \( S\) will be considered minimized when
\[ R = \frac{S}{\sum_{j=1}^M D_j^2} < \epsilon \]
Optionally, the user may impose a functional expression by specifying the powers of each variable in \( L\) specified functions \( F_1, \ldots,F_L\) (TMultiDimFit::SetPowers). In that case, only the coefficients \( c_l\) is calculated by the class.
As always when dealing with fits, there's a real chance of over fitting. As is well-known, it's always possible to fit an \( N-1\) polynomial in \( x\) to \( N\) points \( (x,y)\) with \(\chi^2 = 0\), but the polynomial is not likely to fit new data at all 1. Therefore, the user is asked to provide an upper limit, \( L_{max}\) to the number of terms in \( D_p\) (TMultiDimFit::SetMaxTerms).
However, since there's an infinite number of \( F_l\) to choose from, the user is asked to give the maximum power. \( P_{max,i}\), of each variable \( x_i\) to be considered in the minimization of \( S\) (TMultiDimFit::SetMaxPowers).
One way of obtaining values for the maximum power in variable \( i\), is to perform a regular fit to the dependent quantity \( D\), using a polynomial only in \( x_i\). The maximum power is \( P_{max,i}\) is then the power that does not significantly improve the one-dimensional least-square fit over \( x_i\) to \( D\) 5.
There are still a huge amount of possible choices for \( F_l\); in fact there are \(\prod_{i=1}^{N} (P_{max,i} + 1)\) possible choices. Obviously we need to limit this. To this end, the user is asked to set a power control limit, \( Q\) (TMultiDimFit::SetPowerLimit), and a function \( F_l\) is only accepted if
\[ Q_l = \sum_{i=1}^{N} \frac{P_{li}}{P_{max,i}} < Q \]
where \( P_{li}\) is the leading power of variable \( x_i\) in function \( F_l\) (TMultiDimFit::MakeCandidates). So the number of functions increase with \( Q\) (1, 2 is fine, 5 is way out).
To further reduce the number of functions in the final expression, only those functions that significantly reduce \( S\) is chosen. What ‘significant’ means, is chosen by the user, and will be discussed below (see 2.3).
The functions \( F_l\) are generally not orthogonal, which means one will have to evaluate all possible \( F_l\)'s over all data-points before finding the most significant 1. We can, however, do better then that. By applying the modified Gram-Schmidt orthogonalisation algorithm [5] [3] to the functions \( F_l\), we can evaluate the contribution to the reduction of \( S\) from each function in turn, and we may delay the actual inversion of the curvature-matrix (TMultiDimFit::MakeGramSchmidt).
So we are let to consider an \( M\times L\) matrix \(\mathsf{F}\), an element of which is given by
\[ f_{jl} = F_j\left(x_{1j} , x_{2j}, \ldots, x_{Nj}\right) = F_l(\mathbf{x}_j)\, \quad\mbox{with}~j=1,2,\ldots,M, \]
where \( j\) labels the \( M\) rows in the training sample and \( l\) labels \( L\) functions of \( N\) variables, and \( L \leq M\). That is, \( f_{jl}\) is the term (or function) numbered \( l\) evaluated at the data point \( j\). We have to normalise \(\mathbf{x}_j\) to \( [-1,1]\) for this to succeed [5] (TMultiDimFit::MakeNormalized). We then define a matrix \(\mathsf{W}\) of which the columns \(\mathbf{w}_j\) are given by
\begin{eqnarray*} \mathbf{w}_1 &=& \mathbf{f}_1 = F_1\left(\mathbf x_1\right)\\ \mathbf{w}_l &=& \mathbf{f}_l - \sum^{l-1}_{k=1} \frac{\mathbf{f}_l \bullet \mathbf{w}_k}{\mathbf{w}_k^2}\mathbf{w}_k\,. \end{eqnarray*}
and \(\mathbf{w}_{l}\) is the component of \(\mathbf{f}_{l} \) orthogonal to \(\mathbf{w}_{1}, \ldots, \mathbf{w}_{l-1}\). Hence we obtain [3],
\[ \mathbf{w}_k\bullet\mathbf{w}_l = 0\quad\mbox{if}~k \neq l\quad. \]
We now take as a new model \(\mathsf{W}\mathbf{a}\). We thus want to minimize
\[ S\equiv \left(\mathbf{D} - \mathsf{W}\mathbf{a}\right)^2\quad, \]
where \(\mathbf{D} = \left(D_1,\ldots,D_M\right)\) is a vector of the dependent quantity in the sample. Differentiation with respect to \( a_j\) gives, using 6,
\[ \mathbf{D}\bullet\mathbf{w}_l - a_l\mathbf{w}_l^2 = 0 \]
or
\[ a_l = \frac{\mathbf{D}_l\bullet\mathbf{w}_l}{\mathbf{w}_l^2} \]
Let \( S_j\) be the sum of squares of residuals when taking \( j\) functions into account. Then
\[ S_l = \left[\mathbf{D} - \sum^l_{k=1} a_k\mathbf{w}_k\right]^2 = \mathbf{D}^2 - 2\mathbf{D} \sum^l_{k=1} a_k\mathbf{w}_k + \sum^l_{k=1} a_k^2\mathbf{w}_k^2 \]
Using 9, we see that
\begin{eqnarray*} S_l &=& \mathbf{D}^2 - 2 \sum^l_{k=1} a_k^2\mathbf{w}_k^2 + \sum^j_{k=1} a_k^2\mathbf{w}_k^2\nonumber\\ &=& \mathbf{D}^2 - \sum^l_{k=1} a_k^2\mathbf{w}_k^2\nonumber\\ &=& \mathbf{D}^2 - \sum^l_{k=1} \frac{\left(\mathbf D\bullet \mathbf w_k\right)}{\mathbf w_k^2} \end{eqnarray*}
So for each new function \( F_l\) included in the model, we get a reduction of the sum of squares of residuals of \(a_l^2\mathbf{w}_l^2\), where \(\mathbf{w}_l\) is given by 4 and \( a_l\) by 9. Thus, using the Gram-Schmidt orthogonalisation, we can decide if we want to include this function in the final model, before* the matrix inversion.
Supposing that \( L-1\) steps of the procedure have been performed, the problem now is to consider the \(L^{\mbox{th}}\) function.
The sum of squares of residuals can be written as
\[ S_L = \textbf{D}^T\bullet\textbf{D} - \sum^L_{l=1}a^2_l\left(\textbf{w}_l^T\bullet\textbf{w}_l\right) \]
where the relation 9 have been taken into account. The contribution of the \(L^{\mbox{th}}\) function to the reduction of S, is given by
\[ \Delta S_L = a^2_L\left(\textbf{w}_L^T\bullet\textbf{w}_L\right) \]
Two test are now applied to decide whether this \(L^{\mbox{th}}\) function is to be included in the final expression, or not.
Denoting by \( H_{L-1}\) the subspace spanned by \(\textbf{w}_1,\ldots,\textbf{w}_{L-1}\) the function \(\textbf{w}_L\) is by construction (see 4) the projection of the function \( F_L\) onto the direction perpendicular to \( H_{L-1}\). Now, if the length of \(\textbf{w}_L\) (given by \(\textbf{w}_L\bullet\textbf{w}_L\)) is very small compared to the length of \(\textbf{f}_L\) this new function can not contribute much to the reduction of the sum of squares of residuals. The test consists then in calculating the angle \( \theta \) between the two vectors \(\textbf{w}_L\) \( \textbf {f}_L\) (see also figure 1) and requiring that it's greater* then a threshold value which the user must set (TMultiDimFit::SetMinAngle).
Let \(\textbf{D}\) be the data vector to be fitted. As illustrated in figure 1, the \(L^{\mbox{th}}\) function \(\textbf{w}_L\) will contribute significantly to the reduction of \( S\), if the angle \(\phi^\prime\) between \(\textbf{w}_L\) and \(\textbf{D}\) is smaller than an upper limit \( \phi \), defined by the user (MultiDimFit::SetMaxAngle)
However, the method automatically readjusts the value of this angle while fitting is in progress, in order to make the selection criteria less and less difficult to be fulfilled. The result is that the functions contributing most to the reduction of \( S\) are chosen first (TMultiDimFit::TestFunction).
In case \( \phi \) isn't defined, an alternative method of performing this second test is used: The \(L^{\mbox{th}}\) function \(\textbf{f}_L\) is accepted if (refer also to equation (13))
\[ \Delta S_L > \frac{S_{L-1}}{L_{max}-L} \]
where \( S_{L-1}\) is the sum of the \( L-1\) first residuals from the \( L-1\) functions previously accepted; and \( L_{max}\) is the total number of functions allowed in the final expression of the fit (defined by user).
From this we see, that by restricting \( L_{max}\) – the number of terms in the final model – the fit is more difficult to perform, since the above selection criteria is more limiting.
The more coefficients we evaluate, the more the sum of squares of residuals \( S\) will be reduced. We can evaluate \( S\) before inverting \(\mathsf{B}\) as shown below.
Having found a parameterization, that is the \( F_l\)'s and \( L\), that minimizes \( S\), we still need to determine the coefficients \( c_l\). However, it's a feature of how we choose the significant functions, that the evaluation of the \( c_l\)'s becomes trivial 5. To derive \(\mathbf{c}\), we first note that equation (4) can be written as
\[ \mathsf{F} = \mathsf{W}\mathsf{B} \]
where
\begin{eqnarray*} b_{ij} = \frac{\mathbf{f}_j \bullet \mathbf{w}_i}{\mathbf{w}_i^2} & \mbox{if} & i < j\\ 1 & \mbox{if} & i = j\\ 0 & \mbox{if} & i > j \end{eqnarray*}
Consequently, \(\mathsf{B}\) is an upper triangle matrix, which can be readily inverted. So we now evaluate
\[ \mathsf{F}\mathsf{B}^{-1} = \mathsf{W} \]
The model \(\mathsf{W}\mathbf{a}\) can therefore be written as \((\mathsf{F}\mathsf{B}^{-1})\mathbf{a} = \mathsf{F}(\mathsf{B}^{-1}\mathbf{a})\,.\)
The original model \(\mathsf{F}\mathbf{c}\) is therefore identical with this if
\[ \mathbf{c} = \left(\mathsf{B}^{-1}\mathbf{a}\right) = \left[\mathbf{a}^T\left(\mathsf{B}^{-1}\right)^T\right]^T\,. \]
The reason we use \(\left(\mathsf{B}^{-1}\right)^T\) rather then \(\mathsf{B}^{-1}\) is to save storage, since \(\left(\mathsf{B}^{-1}\right)^T\) can be stored in the same matrix as \(\mathsf{B}\) (TMultiDimFit::MakeCoefficients). The errors in the coefficients is calculated by inverting the curvature matrix of the non-orthogonal functions \( f_{lj}\) [1] (TMultiDimFit::MakeCoefficientErrors).
It's important to realize that the training sample should be representative of the problem at hand, in particular along the borders of the region of interest. This is because the algorithm presented here, is a interpolation, rather then a extrapolation 5.
Also, the independent variables \( x_{i}\) need to be linear independent, since the procedure will perform poorly if they are not 5. One can find an linear transformation from ones original variables \( \xi_{i}\) to a set of linear independent variables \( x_{i}\), using a Principal Components Analysis (see TPrincipal), and then use the transformed variable as input to this class [5] 6.
H. Wind also outlines a method for parameterising a multidimensional dependence over a multidimensional set of variables. An example of the method from 5, is a follows (please refer to 5 for a full discussion):
To process data, using this parameterisation, do
The class also provides functionality for testing the, over the training sample, found parameterization (TMultiDimFit::Fit). This is done by passing the class a test sample of \( M_t\) tuples of the form \((\mathbf{x}_{t,j},D_{t,j}, E_{t,j})\), where \(\mathbf{x}_{t,j}\) are the independent variables, \( D_{t,j}\) the known, dependent quantity, and \( E_{t,j}\) is the square error in \( D_{t,j}\) (TMultiDimFit::AddTestRow).
The parameterization is then evaluated at every \(\mathbf{x}_t\) in the test sample, and
\[ S_t \equiv \sum_{j=1}^{M_t} \left(D_{t,j} - D_p\left(\mathbf{x}_{t,j}\right)\right)^2 \]
is evaluated. The relative error over the test sample
\[ R_t = \frac{S_t}{\sum_{j=1}^{M_t} D_{t,j}^2} \]
should not be to low or high compared to \( R\) from the training sample. Also, multiple correlation coefficient from both samples should be fairly close, otherwise one of the samples is not representative of the problem. A large difference in the reduced \( \chi^2\) over the two samples indicate an over fit, and the maximum number of terms in the parameterisation should be reduced.
It's possible to use 4 to further improve the fit, using the test sample.
Christian Holm
Definition at line 15 of file TMultiDimFit.h.
Public Types | |
| enum | { kIsOnHeap = 0x01000000 , kNotDeleted = 0x02000000 , kZombie = 0x04000000 , kInconsistent = 0x08000000 , kBitMask = 0x00ffffff } |
| enum | { kSingleKey = (1ULL << ( 0 )) , kOverwrite = (1ULL << ( 1 )) , kWriteDelete = (1ULL << ( 2 )) } |
| enum | EDeprecatedStatusBits { kObjInCanvas = (1ULL << ( 3 )) } |
| enum | EMDFPolyType { kMonomials , kChebyshev , kLegendre } |
| enum | EStatusBits { kCanDelete = (1ULL << ( 0 )) , kMustCleanup = (1ULL << ( 3 )) , kIsReferenced = (1ULL << ( 4 )) , kHasUUID = (1ULL << ( 5 )) , kCannotPick = (1ULL << ( 6 )) , kNoContextMenu = (1ULL << ( 8 )) , kInvalidObject = (1ULL << ( 13 )) } |
Public Member Functions | |
| TMultiDimFit () | |
| Empty CTOR. Do not use. | |
| TMultiDimFit (Int_t dimension, EMDFPolyType type=kMonomials, Option_t *option="") | |
| Constructor Second argument is the type of polynomials to use in parameterisation, one of: TMultiDimFit::kMonomials TMultiDimFit::kChebyshev TMultiDimFit::kLegendre. | |
| ~TMultiDimFit () override | |
| Destructor. | |
| void | AbstractMethod (const char *method) const |
| Call this function within a function that you don't want to define as purely virtual, in order not to force all users deriving from that class to implement that maybe (on their side) unused function; but at the same time, emit a run-time warning if they try to call it, telling that it is not implemented in the derived class: action must thus be taken on the user side to override it. | |
| virtual void | AddRow (const Double_t *x, Double_t D, Double_t E=0) |
| Add a row consisting of fNVariables independent variables, the known, dependent quantity, and optionally, the square error in the dependent quantity, to the training sample to be used for the parameterization. | |
| virtual void | AddTestRow (const Double_t *x, Double_t D, Double_t E=0) |
| Add a row consisting of fNVariables independent variables, the known, dependent quantity, and optionally, the square error in the dependent quantity, to the test sample to be used for the test of the parameterization. | |
| virtual void | AppendPad (Option_t *option="") |
| Append graphics object to current pad. | |
| void | Browse (TBrowser *b) override |
| Browse the TMultiDimFit object in the TBrowser. | |
| ULong_t | CheckedHash () |
| Check and record whether this class has a consistent Hash/RecursiveRemove setup (*) and then return the regular Hash value for this object. | |
| virtual const char * | ClassName () const |
| Returns name of class to which the object belongs. | |
| void | Clear (Option_t *option="") override |
| Clear internal structures and variables. | |
| TObject * | Clone (const char *newname="") const override |
| Make a clone of an object using the Streamer facility. | |
| Int_t | Compare (const TObject *obj) const override |
| Compare two TNamed objects. | |
| void | Copy (TObject &named) const override |
| Copy this to obj. | |
| virtual void | Delete (Option_t *option="") |
| Delete this object. | |
| virtual Int_t | DistancetoPrimitive (Int_t px, Int_t py) |
| Computes distance from point (px,py) to the object. | |
| void | Draw (Option_t *="d") override |
| Default Draw method for all objects. | |
| virtual void | DrawClass () const |
| Draw class inheritance tree of the class to which this object belongs. | |
| virtual TObject * | DrawClone (Option_t *option="") const |
Draw a clone of this object in the current selected pad with: gROOT->SetSelectedPad(c1). | |
| virtual void | Dump () const |
| Dump contents of object on stdout. | |
| virtual void | Error (const char *method, const char *msgfmt,...) const |
| Issue error message. | |
| virtual Double_t | Eval (const Double_t *x, const Double_t *coeff=nullptr) const |
| Evaluate parameterization at point x. | |
| virtual Double_t | EvalError (const Double_t *x, const Double_t *coeff=nullptr) const |
| Evaluate parameterization error at point x. | |
| virtual void | Execute (const char *method, const char *params, Int_t *error=nullptr) |
| Execute method on this object with the given parameter string, e.g. | |
| virtual void | Execute (TMethod *method, TObjArray *params, Int_t *error=nullptr) |
| Execute method on this object with parameters stored in the TObjArray. | |
| virtual void | ExecuteEvent (Int_t event, Int_t px, Int_t py) |
| Execute action corresponding to an event at (px,py). | |
| virtual void | Fatal (const char *method, const char *msgfmt,...) const |
| Issue fatal error message. | |
| virtual void | FillBuffer (char *&buffer) |
| Encode TNamed into output buffer. | |
| virtual TObject * | FindObject (const char *name) const |
| Must be redefined in derived classes. | |
| virtual TObject * | FindObject (const TObject *obj) const |
| Must be redefined in derived classes. | |
| virtual void | FindParameterization (Option_t *option="") |
| Find the parameterization. | |
| virtual void | Fit (Option_t *option="") |
| Try to fit the found parameterisation to the test sample. | |
| Double_t | GetChi2 () const |
| const TVectorD * | GetCoefficients () const |
| const TVectorD * | GetCoefficientsRMS () const |
| const TMatrixD * | GetCorrelationMatrix () const |
| virtual Option_t * | GetDrawOption () const |
| Get option used by the graphics system to draw this object. | |
| Double_t | GetError () const |
| Int_t * | GetFunctionCodes () const |
| const TMatrixD * | GetFunctions () const |
| virtual TList * | GetHistograms () const |
| virtual const char * | GetIconName () const |
| Returns mime type name of object. | |
| Double_t | GetMaxAngle () const |
| Int_t | GetMaxFunctions () const |
| Int_t * | GetMaxPowers () const |
| Double_t | GetMaxQuantity () const |
| Int_t | GetMaxStudy () const |
| Int_t | GetMaxTerms () const |
| const TVectorD * | GetMaxVariables () const |
| Double_t | GetMeanQuantity () const |
| const TVectorD * | GetMeanVariables () const |
| Double_t | GetMinAngle () const |
| Double_t | GetMinQuantity () const |
| Double_t | GetMinRelativeError () const |
| const TVectorD * | GetMinVariables () const |
| const char * | GetName () const override |
| Returns name of object. | |
| Int_t | GetNCoefficients () const |
| Int_t | GetNVariables () const |
| virtual char * | GetObjectInfo (Int_t px, Int_t py) const |
| Returns string containing info about the object at position (px,py). | |
| virtual Option_t * | GetOption () const |
| Int_t | GetPolyType () const |
| Int_t * | GetPowerIndex () const |
| Double_t | GetPowerLimit () const |
| const Int_t * | GetPowers () const |
| Double_t | GetPrecision () const |
| const TVectorD * | GetQuantity () const |
| Double_t | GetResidualMax () const |
| Int_t | GetResidualMaxRow () const |
| Double_t | GetResidualMin () const |
| Int_t | GetResidualMinRow () const |
| Double_t | GetResidualSumSq () const |
| Double_t | GetRMS () const |
| Int_t | GetSampleSize () const |
| const TVectorD * | GetSqError () const |
| Double_t | GetSumSqAvgQuantity () const |
| Double_t | GetSumSqQuantity () const |
| Double_t | GetTestError () const |
| Double_t | GetTestPrecision () const |
| const TVectorD * | GetTestQuantity () const |
| Int_t | GetTestSampleSize () const |
| const TVectorD * | GetTestSqError () const |
| const TVectorD * | GetTestVariables () const |
| const char * | GetTitle () const override |
| Returns title of object. | |
| virtual UInt_t | GetUniqueID () const |
| Return the unique object id. | |
| const TVectorD * | GetVariables () const |
| virtual Bool_t | HandleTimer (TTimer *timer) |
| Execute action in response of a timer timing out. | |
| ULong_t | Hash () const override |
| Return hash value for this object. | |
| Bool_t | HasInconsistentHash () const |
| Return true is the type of this object is known to have an inconsistent setup for Hash and RecursiveRemove (i.e. | |
| virtual void | Info (const char *method, const char *msgfmt,...) const |
| Issue info message. | |
| virtual Bool_t | InheritsFrom (const char *classname) const |
| Returns kTRUE if object inherits from class "classname". | |
| virtual Bool_t | InheritsFrom (const TClass *cl) const |
| Returns kTRUE if object inherits from TClass cl. | |
| virtual void | Inspect () const |
| Dump contents of this object in a graphics canvas. | |
| void | InvertBit (UInt_t f) |
| TClass * | IsA () const override |
| Bool_t | IsDestructed () const |
| IsDestructed. | |
| virtual Bool_t | IsEqual (const TObject *obj) const |
| Default equal comparison (objects are equal if they have the same address in memory). | |
| Bool_t | IsFolder () const override |
| Returns kTRUE in case object contains browsable objects (like containers or lists of other objects). | |
| R__ALWAYS_INLINE Bool_t | IsOnHeap () const |
| Bool_t | IsSortable () const override |
| R__ALWAYS_INLINE Bool_t | IsZombie () const |
| void | ls (Option_t *option="") const override |
| List TNamed name and title. | |
| virtual Double_t | MakeChi2 (const Double_t *coeff=nullptr) |
| Calculate Chi square over either the test sample. | |
| virtual void | MakeCode (const char *functionName="MDF", Option_t *option="") |
Generate the file <filename> with .C appended if argument doesn't end in .cxx or .C. | |
| virtual void | MakeHistograms (Option_t *option="A") |
| Make histograms of the result of the analysis. | |
| virtual void | MakeMethod (const Char_t *className="MDF", Option_t *option="") |
Generate the file <classname>MDF.cxx which contains the implementation of the method: | |
| void | MayNotUse (const char *method) const |
| Use this method to signal that a method (defined in a base class) may not be called in a derived class (in principle against good design since a child class should not provide less functionality than its parent, however, sometimes it is necessary). | |
| virtual Bool_t | Notify () |
| This method must be overridden to handle object notification (the base implementation is no-op). | |
| void | Obsolete (const char *method, const char *asOfVers, const char *removedFromVers) const |
| Use this method to declare a method obsolete. | |
| void | operator delete (void *, size_t) |
| Operator delete for sized deallocation. | |
| void | operator delete (void *ptr) |
| Operator delete. | |
| void | operator delete (void *ptr, void *vp) |
| Only called by placement new when throwing an exception. | |
| void | operator delete[] (void *, size_t) |
| Operator delete [] for sized deallocation. | |
| void | operator delete[] (void *ptr) |
| Operator delete []. | |
| void | operator delete[] (void *ptr, void *vp) |
| Only called by placement new[] when throwing an exception. | |
| void * | operator new (size_t sz) |
| void * | operator new (size_t sz, void *vp) |
| void * | operator new[] (size_t sz) |
| void * | operator new[] (size_t sz, void *vp) |
| virtual void | Paint (Option_t *option="") |
| This method must be overridden if a class wants to paint itself. | |
| virtual void | Pop () |
| Pop on object drawn in a pad to the top of the display list. | |
| void | Print (Option_t *option="ps") const override |
| Print statistics etc. | |
| virtual Int_t | Read (const char *name) |
| Read contents of object with specified name from the current directory. | |
| virtual void | RecursiveRemove (TObject *obj) |
| Recursively remove this object from a list. | |
| void | ResetBit (UInt_t f) |
| virtual void | SaveAs (const char *filename="", Option_t *option="") const |
| Save this object in the file specified by filename. | |
| virtual void | SavePrimitive (std::ostream &out, Option_t *option="") |
| Save a primitive as a C++ statement(s) on output stream "out". | |
| void | SetBinVarX (Int_t nbbinvarx) |
| void | SetBinVarY (Int_t nbbinvary) |
| void | SetBit (UInt_t f) |
| void | SetBit (UInt_t f, Bool_t set) |
| Set or unset the user status bits as specified in f. | |
| virtual void | SetDrawOption (Option_t *option="") |
| Set drawing option for object. | |
| void | SetMaxAngle (Double_t angle=0) |
| Set the max angle (in degrees) between the initial data vector to be fitted, and the new candidate function to be included in the fit. | |
| void | SetMaxFunctions (Int_t n) |
| void | SetMaxPowers (const Int_t *powers) |
| Set the maximum power to be considered in the fit for each variable. | |
| void | SetMaxStudy (Int_t n) |
| void | SetMaxTerms (Int_t terms) |
| void | SetMinAngle (Double_t angle=1) |
| Set the min angle (in degrees) between a new candidate function and the subspace spanned by the previously accepted functions. | |
| void | SetMinRelativeError (Double_t error) |
| Set the acceptable relative error for when sum of square residuals is considered minimized. | |
| virtual void | SetName (const char *name) |
| Set the name of the TNamed. | |
| virtual void | SetNameTitle (const char *name, const char *title) |
| Set all the TNamed parameters (name and title). | |
| void | SetPowerLimit (Double_t limit=1e-3) |
| Set the user parameter for the function selection. | |
| virtual void | SetPowers (const Int_t *powers, Int_t terms) |
| Define a user function. | |
| virtual void | SetTitle (const char *title="") |
| Set the title of the TNamed. | |
| virtual void | SetUniqueID (UInt_t uid) |
| Set the unique object id. | |
| virtual Int_t | Sizeof () const |
| Return size of the TNamed part of the TObject. | |
| void | Streamer (TBuffer &) override |
| Stream an object of class TObject. | |
| void | StreamerNVirtual (TBuffer &ClassDef_StreamerNVirtual_b) |
| virtual void | SysError (const char *method, const char *msgfmt,...) const |
| Issue system error message. | |
| R__ALWAYS_INLINE Bool_t | TestBit (UInt_t f) const |
| Int_t | TestBits (UInt_t f) const |
| virtual void | UseCurrentStyle () |
| Set current style settings in this object This function is called when either TCanvas::UseCurrentStyle or TROOT::ForceStyle have been invoked. | |
| virtual void | Warning (const char *method, const char *msgfmt,...) const |
| Issue warning message. | |
| virtual Int_t | Write (const char *name=nullptr, Int_t option=0, Int_t bufsize=0) |
| Write this object to the current directory. | |
| virtual Int_t | Write (const char *name=nullptr, Int_t option=0, Int_t bufsize=0) const |
| Write this object to the current directory. | |
Static Public Member Functions | |
| static TClass * | Class () |
| static const char * | Class_Name () |
| static constexpr Version_t | Class_Version () |
| static const char * | DeclFileName () |
| static Longptr_t | GetDtorOnly () |
| Return destructor only flag. | |
| static Bool_t | GetObjectStat () |
| Get status of object stat flag. | |
| static TMultiDimFit * | Instance () |
| Return the static instance. | |
| static void | SetDtorOnly (void *obj) |
| Set destructor only flag. | |
| static void | SetObjectStat (Bool_t stat) |
| Turn on/off tracking of objects in the TObjectTable. | |
Protected Types | |
| enum | { kOnlyPrepStep = (1ULL << ( 3 )) } |
Protected Member Functions | |
| virtual void | DoError (int level, const char *location, const char *fmt, va_list va) const |
| Interface to ErrorHandler (protected). | |
| virtual Double_t | EvalControl (const Int_t *powers) const |
| PRIVATE METHOD: Calculate the control parameter from the passed powers. | |
| virtual Double_t | EvalFactor (Int_t p, Double_t x) const |
| PRIVATE METHOD: Evaluate function with power p at variable value x. | |
| virtual void | MakeCandidates () |
| PRIVATE METHOD: Create list of candidate functions for the parameterisation. | |
| virtual void | MakeCoefficientErrors () |
| PRIVATE METHOD: Compute the errors on the coefficients. | |
| virtual void | MakeCoefficients () |
| PRIVATE METHOD: Invert the model matrix B, and compute final coefficients. | |
| virtual void | MakeCorrelation () |
| PRIVATE METHOD: Compute the correlation matrix. | |
| virtual Double_t | MakeGramSchmidt (Int_t function) |
| PRIVATE METHOD: Make Gram-Schmidt orthogonalisation. | |
| virtual void | MakeNormalized () |
| PRIVATE METHOD: Normalize data to the interval [-1;1]. | |
| virtual void | MakeParameterization () |
| PRIVATE METHOD: Find the parameterization over the training sample. | |
| virtual void | MakeRealCode (const char *filename, const char *classname, Option_t *option="") |
| PRIVATE METHOD: This is the method that actually generates the code for the evaluation the parameterization on some point. | |
| void | MakeZombie () |
| void | SavePrimitiveNameTitle (std::ostream &out, const char *variable_name) |
| Save object name and title into the output stream "out". | |
| virtual Bool_t | Select (const Int_t *iv) |
| Selection method. | |
| virtual Bool_t | TestFunction (Double_t squareResidual, Double_t dResidur) |
| PRIVATE METHOD: Test whether the currently considered function contributes to the fit. | |
Static Protected Member Functions | |
| static void | SavePrimitiveConstructor (std::ostream &out, TClass *cl, const char *variable_name, const char *constructor_agrs="", Bool_t empty_line=kTRUE) |
| Save object constructor in the output stream "out". | |
| static void | SavePrimitiveDraw (std::ostream &out, const char *variable_name, Option_t *option=nullptr) |
| Save invocation of primitive Draw() method Skipped if option contains "nodraw" string. | |
| static TString | SavePrimitiveVector (std::ostream &out, const char *prefix, Int_t len, Double_t *arr, Int_t flag=0) |
| Save array in the output stream "out" as vector. | |
Protected Attributes | |
| Int_t | fBinVarX |
| Number of bin in independent variables. | |
| Int_t | fBinVarY |
| Number of bin in dependent variables. | |
| Double_t | fChi2 |
| Chi square of fit. | |
| TVectorD | fCoefficients |
| Vector of the final coefficients. | |
| TVectorD | fCoefficientsRMS |
| Vector of RMS of coefficients. | |
| Double_t | fCorrelationCoeff |
| Multi Correlation coefficient. | |
| TMatrixD | fCorrelationMatrix |
| Correlation matrix. | |
| Double_t | fError |
| Error from parametrization. | |
| TVirtualFitter * | fFitter |
| ! Fit object (MINUIT) | |
| Int_t * | fFunctionCodes |
| [fMaxFunctions] acceptance code | |
| TMatrixD | fFunctions |
| Functions evaluated over sample. | |
| Byte_t | fHistogramMask |
| Bit pattern of histograms used. | |
| TList * | fHistograms |
| List of histograms. | |
| Bool_t | fIsUserFunction |
| Flag for user defined function. | |
| Bool_t | fIsVerbose |
| Double_t | fMaxAngle |
| Max angle for accepting new function. | |
| Int_t | fMaxFuncNV |
| fMaxFunctions*fNVariables | |
| Int_t | fMaxFunctions |
| max number of functions | |
| Int_t * | fMaxPowers |
| [fNVariables] maximum powers | |
| Int_t * | fMaxPowersFinal |
| [fNVariables] maximum powers from fit; | |
| Double_t | fMaxQuantity |
| Max value of dependent quantity. | |
| Double_t | fMaxResidual |
| Max residual value. | |
| Int_t | fMaxResidualRow |
| Row giving max residual. | |
| Int_t | fMaxStudy |
| max functions to study | |
| Int_t | fMaxTerms |
| Max terms expected in final expr. | |
| TVectorD | fMaxVariables |
| max value of independent variables | |
| Double_t | fMeanQuantity |
| Mean of dependent quantity. | |
| TVectorD | fMeanVariables |
| mean value of independent variables | |
| Double_t | fMinAngle |
| Min angle for accepting new function. | |
| Double_t | fMinQuantity |
| Min value of dependent quantity. | |
| Double_t | fMinRelativeError |
| Min relative error accepted. | |
| Double_t | fMinResidual |
| Min residual value. | |
| Int_t | fMinResidualRow |
| Row giving min residual. | |
| TVectorD | fMinVariables |
| min value of independent variables | |
| TString | fName |
| Int_t | fNCoefficients |
| Dimension of model coefficients. | |
| Int_t | fNVariables |
| Number of independent variables. | |
| TVectorD | fOrthCoefficients |
| The model coefficients. | |
| TMatrixD | fOrthCurvatureMatrix |
| Model matrix. | |
| TVectorD | fOrthFunctionNorms |
| Norm of the evaluated functions. | |
| TMatrixD | fOrthFunctions |
| As above, but orthogonalised. | |
| Int_t | fParameterisationCode |
| Exit code of parameterisation. | |
| EMDFPolyType | fPolyType |
| Type of polynomials to use. | |
| Int_t * | fPowerIndex |
| [fMaxTerms] Index of accepted powers | |
| Double_t | fPowerLimit |
| Control parameter. | |
| Int_t * | fPowers |
| [fMaxFuncNV] where fMaxFuncNV = fMaxFunctions*fNVariables | |
| Double_t | fPrecision |
| Relative precision of param. | |
| TVectorD | fQuantity |
| Training sample, dependent quantity. | |
| TVectorD | fResiduals |
| Vector of the final residuals. | |
| Double_t | fRMS |
| Root mean square of fit. | |
| Int_t | fSampleSize |
| Size of training sample. | |
| Bool_t | fShowCorrelation |
| print correlation matrix | |
| TVectorD | fSqError |
| Training sample, error in quantity. | |
| Double_t | fSumSqAvgQuantity |
| Sum of squares away from mean. | |
| Double_t | fSumSqQuantity |
| SumSquare of dependent quantity. | |
| Double_t | fSumSqResidual |
| Sum of Square residuals. | |
| Double_t | fTestCorrelationCoeff |
| Multi Correlation coefficient. | |
| Double_t | fTestError |
| Error from test. | |
| Double_t | fTestPrecision |
| Relative precision of test. | |
| TVectorD | fTestQuantity |
| Test sample, dependent quantity. | |
| Int_t | fTestSampleSize |
| Size of test sample. | |
| TVectorD | fTestSqError |
| Test sample, Error in quantity. | |
| TVectorD | fTestVariables |
| Test sample, independent variables. | |
| TString | fTitle |
| TVectorD | fVariables |
| Training sample, independent variables. | |
Static Private Member Functions | |
| static void | AddToTObjectTable (TObject *) |
| Private helper function which will dispatch to TObjectTable::AddObj. | |
Private Attributes | |
| UInt_t | fBits |
| bit field status word | |
| UInt_t | fUniqueID |
| object unique identifier | |
Static Private Attributes | |
| static Longptr_t | fgDtorOnly = 0 |
| object for which to call dtor only (i.e. no delete) | |
| static TMultiDimFit * | fgInstance = nullptr |
| static Bool_t | fgObjectStat = kTRUE |
| if true keep track of objects in TObjectTable | |
#include <TMultiDimFit.h>
| Enumerator | |
|---|---|
| kOnlyPrepStep | Used to request that the class specific implementation of This is just for example by TBufferMerger to request that the TTree inside the file calls |
|
inherited |
| Enumerator | |
|---|---|
| kMonomials | |
| kChebyshev | |
| kLegendre | |
Definition at line 18 of file TMultiDimFit.h.
|
inherited |
| Enumerator | |
|---|---|
| kCanDelete | if object in a list can be deleted |
| kMustCleanup | if object destructor must call RecursiveRemove() |
| kIsReferenced | |
| kHasUUID | if object has a TUUID (its fUniqueID=UUIDNumber) |
| kCannotPick | if object in a pad cannot be picked |
| kNoContextMenu | if object does not want context menu |
| kInvalidObject | if object ctor succeeded but object should not be used |
| TMultiDimFit::TMultiDimFit | ( | ) |
Empty CTOR. Do not use.
Definition at line 432 of file TMultiDimFit.cxx.
| TMultiDimFit::TMultiDimFit | ( | Int_t | dimension, |
| EMDFPolyType | type = kMonomials, | ||
| Option_t * | option = "" ) |
Constructor Second argument is the type of polynomials to use in parameterisation, one of: TMultiDimFit::kMonomials TMultiDimFit::kChebyshev TMultiDimFit::kLegendre.
Options: K Compute (k)correlation matrix V Be verbose
Default is no options.
Definition at line 507 of file TMultiDimFit.cxx.
|
override |
Destructor.
Definition at line 585 of file TMultiDimFit.cxx.
|
inherited |
Call this function within a function that you don't want to define as purely virtual, in order not to force all users deriving from that class to implement that maybe (on their side) unused function; but at the same time, emit a run-time warning if they try to call it, telling that it is not implemented in the derived class: action must thus be taken on the user side to override it.
In other word, this method acts as a "runtime purely virtual" warning instead of a "compiler purely virtual" error.
Definition at line 1149 of file TObject.cxx.
Add a row consisting of fNVariables independent variables, the known, dependent quantity, and optionally, the square error in the dependent quantity, to the training sample to be used for the parameterization.
The mean of the variables and quantity is calculated on the fly, as outlined in TPrincipal::AddRow. This sample should be representative of the problem at hand. Please note, that if no error is given Poisson statistics is assumed and the square error is set to the value of dependent quantity. See also the class description
Definition at line 610 of file TMultiDimFit.cxx.
Add a row consisting of fNVariables independent variables, the known, dependent quantity, and optionally, the square error in the dependent quantity, to the test sample to be used for the test of the parameterization.
This sample needn't be representative of the problem at hand. Please note, that if no error is given Poisson statistics is assumed and the square error is set to the value of dependent quantity. See also the class description
Definition at line 689 of file TMultiDimFit.cxx.
|
staticprivateinherited |
Private helper function which will dispatch to TObjectTable::AddObj.
Included here to avoid circular dependency between header files.
Definition at line 195 of file TObject.cxx.
|
virtualinherited |
Append graphics object to current pad.
In case no current pad is set yet, create a default canvas with the name "c1".
Definition at line 204 of file TObject.cxx.
|
overridevirtual |
Browse the TMultiDimFit object in the TBrowser.
Reimplemented from TObject.
Definition at line 736 of file TMultiDimFit.cxx.
|
inlineinherited |
Check and record whether this class has a consistent Hash/RecursiveRemove setup (*) and then return the regular Hash value for this object.
The intent is for this routine to be called instead of directly calling the function Hash during "insert" operations. See TObject::HasInconsistenTObjectHash();
(*) The setup is consistent when all classes in the class hierarchy that overload TObject::Hash do call ROOT::CallRecursiveRemoveIfNeeded in their destructor. i.e. it is safe to call the Hash virtual function during the RecursiveRemove operation.
Definition at line 207 of file TMultiDimFit.h.
|
virtualinherited |
Returns name of class to which the object belongs.
Definition at line 227 of file TObject.cxx.
|
overridevirtual |
Clear internal structures and variables.
Reimplemented from TObject.
Definition at line 788 of file TMultiDimFit.cxx.
Make a clone of an object using the Streamer facility.
If newname is specified, this will be the name of the new object.
Reimplemented from TObject.
Reimplemented in TStreamerInfo, and TTreeIndex.
Definition at line 73 of file TNamed.cxx.
Compare two TNamed objects.
Returns 0 when equal, -1 when this is smaller and +1 when bigger (like strcmp).
Reimplemented from TObject.
Reimplemented in TStructNodeProperty.
Definition at line 84 of file TNamed.cxx.
|
overridevirtualinherited |
Copy this to obj.
Reimplemented from TObject.
Reimplemented in TSystemDirectory, TSystemFile, TProfile, TProfile2D, TProfile3D, TPieSlice, TStyle, TText, and TXTRU.
Definition at line 93 of file TNamed.cxx.
Definition at line 207 of file TMultiDimFit.h.
|
virtualinherited |
Delete this object.
Typically called as a command via the interpreter. Normally use "delete" operator when object has been allocated on the heap.
Reimplemented in TDirectory, TDirectoryFile, TFile, TSystemDirectory, TSystemFile, TTreeViewer, TGItemContext, TCanvas, TGFrame, TGTextEdit, TAxis, RooLinkedList, TExMap, TObjectTable, TProtoClass, TKeySQL, TKeyXML, TQCommand, TBtree, TClonesArray, THashList, THashTable, TList, TMap, TObjArray, TOrdCollection, TRefArray, TListOfDataMembers, TListOfEnums, TListOfEnumsWithLock, TListOfFunctions, TListOfFunctionTemplates, TViewPubDataMembers, TViewPubFunctions, TThread, TKey, TMVA::Results, TTree, and TCollection.
Definition at line 268 of file TObject.cxx.
Computes distance from point (px,py) to the object.
This member function must be implemented for each graphics primitive. This default function returns a big number (999999).
Reimplemented in TGeoTessellated, TStyle, TGeoBBox, TGeoCompositeShape, TGeoCone, TGeoConeSeg, TGeoEltu, TGeoHalfSpace, TGeoHype, TGeoNode, TGeoParaboloid, TGeoPcon, TGeoPgon, TGeoScaledShape, TGeoShapeAssembly, TGeoSphere, TGeoTorus, TGeoTube, TGeoTubeSeg, TGeoVolume, TGeoXtru, TGeoOverlap, TGeoTrack, TGeoVGShape, TASImage, TColorWheel, TPad, TBox, TCrown, TCurlyArc, TCurlyLine, TDiamond, TEllipse, TGraphPolargram, TLine, TMarker, TPave, TPie, TPolyLine, TText, TGraphEdge, TGraphNode, TAxis3D, TBRIK, TMarker3DBox, TNode, TPCON, TPolyLine3D, TPolyMarker3D, TSPHE, TTUBE, TTUBS, TXTRU, TGL5DDataSet, TGLHistPainter, TGLParametricEquation, TGLTH3Composition, TGLViewer, TAxis, TEfficiency, TF1, TF2, TF3, TGraph, TGraph2D, TH1, THStack, TMultiGraph, TPolyMarker, TScatter, TScatter2D, TSpline, THistPainter, TPaletteAxis, TGenerator, TParticle, TPrimary, TFileDrawMap, TTreePerfStats, TParallelCoord, TParallelCoordRange, TParallelCoordVar, TSpider, TGeoShape, TPoints3DABC, TVirtualHistPainter, TPieSlice, and TGLScenePad.
Definition at line 284 of file TObject.cxx.
|
protectedvirtualinherited |
Interface to ErrorHandler (protected).
Reimplemented in TTreeViewer, and TThread.
Definition at line 1059 of file TObject.cxx.
|
inlineoverridevirtual |
Default Draw method for all objects.
Reimplemented from TObject.
Definition at line 134 of file TMultiDimFit.h.
|
virtualinherited |
Draw class inheritance tree of the class to which this object belongs.
If a class B inherits from a class A, description of B is drawn on the right side of description of A. Member functions overridden by B are shown in class A with a blue line crossing-out the corresponding member function. The following picture is the class inheritance tree of class TPaveLabel:
Reimplemented in TSystemDirectory, TSystemFile, and TGFrame.
Definition at line 308 of file TObject.cxx.
Draw a clone of this object in the current selected pad with: gROOT->SetSelectedPad(c1).
If pad was not selected - gPad will be used.
Reimplemented in TSystemDirectory, TSystemFile, TGFrame, TAxis, and TCanvas.
Definition at line 319 of file TObject.cxx.
|
virtualinherited |
Dump contents of object on stdout.
Using the information in the object dictionary (class TClass) each data member is interpreted. If a data member is a pointer, the pointer value is printed
The following output is the Dump of a TArrow object:
Reimplemented in TSystemFile, TCollection, TClass, TGFrame, and TGPack.
Definition at line 367 of file TObject.cxx.
Issue error message.
Use "location" to specify the method where the error occurred. Accepts standard printf formatting arguments.
Reimplemented in TFitResult.
Definition at line 1098 of file TObject.cxx.
Evaluate parameterization at point x.
Optional argument coeff is a vector of coefficients for the parameterisation, fNCoefficients elements long.
Definition at line 875 of file TMultiDimFit.cxx.
PRIVATE METHOD: Calculate the control parameter from the passed powers.
Definition at line 936 of file TMultiDimFit.cxx.
|
virtual |
Evaluate parameterization error at point x.
Optional argument coeff is a vector of coefficients for the parameterisation, fNCoefficients elements long.
Definition at line 903 of file TMultiDimFit.cxx.
PRIVATE METHOD: Evaluate function with power p at variable value x.
Definition at line 951 of file TMultiDimFit.cxx.
|
virtualinherited |
Execute method on this object with the given parameter string, e.g.
"3.14,1,\"text\"".
Reimplemented in TMethodCall, TCling, TInterpreter, ROOT::R::TRInterface, and TContextMenu.
Definition at line 378 of file TObject.cxx.
|
virtualinherited |
Execute method on this object with parameters stored in the TObjArray.
The TObjArray should contain an argv vector like:
Reimplemented in TCling, TMethodCall, TInterpreter, ROOT::R::TRInterface, and TContextMenu.
Definition at line 398 of file TObject.cxx.
Execute action corresponding to an event at (px,py).
This method must be overridden if an object can react to graphics events.
Reimplemented in TParallelCoord, TParallelCoordRange, TParallelCoordVar, TGeoManager, TGeoNode, TGeoShape, TGeoVolume, TGeoOverlap, TGeoTrack, TASImage, TASPaletteEditor::LimitLine, TButton, TCanvas, TGroupButton, TPad, TSliderBox, TBox, TCrown, TCurlyArc, TCurlyLine, TDiamond, TEllipse, TFrame, TGraphPolargram, TLine, TLink, TMarker, TPave, TPolyLine, TText, TWbox, TGraphEdge, TGraphNode, TAxis3D, TMarker3DBox, TNode, TPolyLine3D, TPolyMarker3D, TView3D, TGL5DDataSet, TGLEventHandler, TGLHistPainter, TGLParametricEquation, TGLTH3Composition, TGLViewer, TAxis, TEfficiency, TF1, TF2, TF3, TGraph, TGraph2D, TH1, TPolyMarker, TScatter, TScatter2D, TSpline, THistPainter, TPaletteAxis, TGenerator, TParticle, TPrimary, TTreePerfStats, TSpider, TView, TVirtualHistPainter, TPie, and TGLScenePad.
Definition at line 415 of file TObject.cxx.
Issue fatal error message.
Use "location" to specify the method where the fatal error occurred. Accepts standard printf formatting arguments.
Definition at line 1126 of file TObject.cxx.
|
virtualinherited |
Encode TNamed into output buffer.
Reimplemented in TKeySQL, TSQLFile, TKeyXML, TXMLFile, TDirectoryFile, TFile, and TKey.
Definition at line 103 of file TNamed.cxx.
Must be redefined in derived classes.
This function is typically used with TCollections, but can also be used to find an object by name inside this object.
Reimplemented in TListOfEnums, TMap, TDirectory, TFolder, TROOT, TListOfTypes, TListOfTypes, TBtree, TCollection, THashList, THashTable, TList, TObjArray, TListOfDataMembers, TListOfDataMembers, TListOfEnums, TListOfEnumsWithLock, TListOfFunctions, TListOfFunctionTemplates, TListOfFunctionTemplates, TViewPubDataMembers, TViewPubFunctions, TPad, TGeometry, THbookFile, TGraph, TGraph2D, TH1, RooAbsCollection, and RooLinkedList.
Definition at line 425 of file TObject.cxx.
Must be redefined in derived classes.
This function is typically used with TCollections, but can also be used to find an object inside this object.
Reimplemented in TMap, TDirectory, TFolder, TROOT, TListOfTypes, TBtree, TCollection, THashList, THashTable, TList, TObjArray, TListOfDataMembers, TListOfEnums, TListOfEnumsWithLock, TListOfFunctions, TListOfFunctionTemplates, TViewPubDataMembers, TViewPubFunctions, TPad, TGeometry, THbookFile, TGraph, TGraph2D, TH1, RooAbsCollection, and RooLinkedList.
Definition at line 435 of file TObject.cxx.
|
virtual |
Find the parameterization.
Options: None so far
For detailed description of what this entails, please refer to the class description
Definition at line 993 of file TMultiDimFit.cxx.
|
virtual |
Try to fit the found parameterisation to the test sample.
Options M use Minuit to improve coefficients
Also, refer to class description
Definition at line 1012 of file TMultiDimFit.cxx.
|
inline |
Definition at line 140 of file TMultiDimFit.h.
Definition at line 142 of file TMultiDimFit.h.
Definition at line 143 of file TMultiDimFit.h.
Definition at line 141 of file TMultiDimFit.h.
|
virtualinherited |
Get option used by the graphics system to draw this object.
Note that before calling object.GetDrawOption(), you must have called object.Draw(..) before in the current pad.
Reimplemented in TBrowser, TFitEditor, TGedFrame, TGFileBrowser, TRootBrowser, and TRootBrowserLite.
Definition at line 445 of file TObject.cxx.
|
staticinherited |
Return destructor only flag.
Definition at line 1196 of file TObject.cxx.
|
inline |
Definition at line 144 of file TMultiDimFit.h.
|
inline |
Definition at line 145 of file TMultiDimFit.h.
Definition at line 146 of file TMultiDimFit.h.
Definition at line 147 of file TMultiDimFit.h.
|
virtualinherited |
Returns mime type name of object.
Used by the TBrowser (via TGMimeTypes class). Override for class of which you would like to have different icons for objects of the same class.
Reimplemented in TSystemFile, TGeoVolume, TASImage, TGMainFrame, TKey, ROOT::Experimental::XRooFit::xRooNode, TBranch, TVirtualBranchBrowsable, TMethodBrowsable, and TBranchElement.
Definition at line 472 of file TObject.cxx.
|
inline |
Definition at line 148 of file TMultiDimFit.h.
|
inline |
Definition at line 149 of file TMultiDimFit.h.
|
inline |
Definition at line 150 of file TMultiDimFit.h.
|
inline |
Definition at line 151 of file TMultiDimFit.h.
|
inline |
Definition at line 152 of file TMultiDimFit.h.
|
inline |
Definition at line 153 of file TMultiDimFit.h.
Definition at line 154 of file TMultiDimFit.h.
|
inline |
Definition at line 155 of file TMultiDimFit.h.
Definition at line 156 of file TMultiDimFit.h.
|
inline |
Definition at line 157 of file TMultiDimFit.h.
|
inline |
Definition at line 158 of file TMultiDimFit.h.
|
inline |
Definition at line 159 of file TMultiDimFit.h.
Definition at line 160 of file TMultiDimFit.h.
|
inlineoverridevirtualinherited |
|
inline |
Definition at line 162 of file TMultiDimFit.h.
|
inline |
Definition at line 161 of file TMultiDimFit.h.
Returns string containing info about the object at position (px,py).
This method is typically overridden by classes of which the objects can report peculiarities for different positions. Returned string will be re-used (lock in MT environment).
Reimplemented in TGeoNode, TGeoVolume, TGeoTrack, TASImage, TColorWheel, TAxis3D, TNode, TGL5DDataSet, TGLHistPainter, TGLParametricEquation, TGLTH3Composition, TF1, TF2, TGraph, TH1, THistPainter, TPaletteAxis, TFileDrawMap, TParallelCoordVar, and TVirtualHistPainter.
Definition at line 491 of file TObject.cxx.
|
staticinherited |
Get status of object stat flag.
Definition at line 1181 of file TObject.cxx.
Reimplemented in TGeoVolume, TArrow, TGaxis, TLegendEntry, TPave, TPolyLine, TAxis3D, THelix, TNode, TPolyLine3D, TPolyMarker3D, TH1, TPolyMarker, TFile, TMapFile, TPSocket, TSocket, TUDPSocket, TSelector, and TPoints3DABC.
|
inline |
Definition at line 163 of file TMultiDimFit.h.
|
inline |
Definition at line 164 of file TMultiDimFit.h.
|
inline |
Definition at line 165 of file TMultiDimFit.h.
Definition at line 166 of file TMultiDimFit.h.
|
inline |
Definition at line 167 of file TMultiDimFit.h.
Definition at line 168 of file TMultiDimFit.h.
|
inline |
Definition at line 169 of file TMultiDimFit.h.
|
inline |
Definition at line 171 of file TMultiDimFit.h.
|
inline |
Definition at line 170 of file TMultiDimFit.h.
|
inline |
Definition at line 172 of file TMultiDimFit.h.
|
inline |
Definition at line 173 of file TMultiDimFit.h.
|
inline |
Definition at line 174 of file TMultiDimFit.h.
|
inline |
Definition at line 175 of file TMultiDimFit.h.
Definition at line 176 of file TMultiDimFit.h.
|
inline |
Definition at line 177 of file TMultiDimFit.h.
|
inline |
Definition at line 178 of file TMultiDimFit.h.
|
inline |
Definition at line 179 of file TMultiDimFit.h.
|
inline |
Definition at line 180 of file TMultiDimFit.h.
Definition at line 181 of file TMultiDimFit.h.
|
inline |
Definition at line 182 of file TMultiDimFit.h.
Definition at line 183 of file TMultiDimFit.h.
Definition at line 184 of file TMultiDimFit.h.
|
inlineoverridevirtualinherited |
|
virtualinherited |
Return the unique object id.
Definition at line 480 of file TObject.cxx.
Definition at line 185 of file TMultiDimFit.h.
Execute action in response of a timer timing out.
This method must be overridden if an object has to react to timers.
Reimplemented in TGWindow, TGuiBldDragManager, TGraphTime, TGLEventHandler, TGCommandPlugin, TGDNDManager, TGFileContainer, TGPopupMenu, TGScrollBar, TGShutter, TGTextEdit, TGTextEditor, TGTextEntry, TGTextView, TGToolTip, TGHtml, and TTreeViewer.
Definition at line 516 of file TObject.cxx.
|
inlineoverridevirtualinherited |
Return hash value for this object.
Note: If this routine is overloaded in a derived class, this derived class should also add
Otherwise, when RecursiveRemove is called (by ~TObject or example) for this type of object, the transversal of THashList and THashTable containers will will have to be done without call Hash (and hence be linear rather than logarithmic complexity). You will also see warnings like
Reimplemented from TObject.
|
inlineinherited |
Return true is the type of this object is known to have an inconsistent setup for Hash and RecursiveRemove (i.e.
missing call to RecursiveRemove in destructor).
Note: Since the consistency is only tested for during inserts, this routine will return true for object that have never been inserted whether or not they have a consistent setup. This has no negative side-effect as searching for the object with the right or wrong Hash will always yield a not-found answer (Since anyway no hash can be guaranteed unique, there is always a check)
Issue info message.
Use "location" to specify the method where the warning occurred. Accepts standard printf formatting arguments.
Definition at line 1072 of file TObject.cxx.
Returns kTRUE if object inherits from class "classname".
Reimplemented in TClass.
Definition at line 549 of file TObject.cxx.
Returns kTRUE if object inherits from TClass cl.
Reimplemented in TClass.
Definition at line 557 of file TObject.cxx.
|
virtualinherited |
Dump contents of this object in a graphics canvas.
Same action as Dump but in a graphical form. In addition pointers to other objects can be followed.
The following picture is the Inspect of a histogram object:
Reimplemented in TSystemFile, TInspectorObject, TGFrame, and ROOT::Experimental::XRooFit::xRooNode.
Definition at line 570 of file TObject.cxx.
|
static |
Return the static instance.
Definition at line 1098 of file TMultiDimFit.cxx.
|
inlineoverridevirtual |
Reimplemented from TObject.
Definition at line 207 of file TMultiDimFit.h.
|
inlineinherited |
IsDestructed.
Default equal comparison (objects are equal if they have the same address in memory).
More complicated classes might want to override this function.
Reimplemented in TObjString, TQCommand, TPair, and TGObject.
Definition at line 589 of file TObject.cxx.
|
inlineoverridevirtual |
Returns kTRUE in case object contains browsable objects (like containers or lists of other objects).
Reimplemented from TObject.
Definition at line 188 of file TMultiDimFit.h.
|
inlineinherited |
|
inlineoverridevirtualinherited |
Reimplemented from TObject.
Reimplemented in TStructNodeProperty.
|
inlineinherited |
|
overridevirtualinherited |
List TNamed name and title.
Reimplemented from TObject.
Reimplemented in ROOT::Experimental::XRooFit::xRooBrowser, TVirtualStreamerInfo, TROOT, TStreamerElement, TStreamerBase, TStreamerSTL, TText, TStreamerInfo, TTask, and TNode.
Definition at line 112 of file TNamed.cxx.
|
protectedvirtual |
PRIVATE METHOD: Create list of candidate functions for the parameterisation.
See also class description
Definition at line 1109 of file TMultiDimFit.cxx.
Calculate Chi square over either the test sample.
The optional argument coeff is a vector of coefficients to use in the evaluation of the parameterisation. If coeff == 0, then the found coefficients is used. Used my MINUIT for fit (see TMultDimFit::Fit)
Definition at line 1239 of file TMultiDimFit.cxx.
Generate the file <filename> with .C appended if argument doesn't end in .cxx or .C.
The contains the implementation of the function:
Double_t <funcname>(Double_t *x)
which does the same as TMultiDimFit::Eval. Please refer to this method.
Further, the static variables:
Int_t gNVariables Int_t gNCoefficients Double_t gDMean Double_t gXMean[] Double_t gXMin[] Double_t gXMax[] Double_t gCoefficient[] Int_t gPower[]
are initialized. The only ROOT header file needed is Rtypes.h
See TMultiDimFit::MakeRealCode for a list of options
Definition at line 1289 of file TMultiDimFit.cxx.
|
protectedvirtual |
PRIVATE METHOD: Compute the errors on the coefficients.
For this to be done, the curvature matrix of the non-orthogonal functions, is computed.
Definition at line 1306 of file TMultiDimFit.cxx.
|
protectedvirtual |
PRIVATE METHOD: Invert the model matrix B, and compute final coefficients.
For a more thorough discussion of what this means, please refer to the class description
First we invert the lower triangle matrix fOrthCurvatureMatrix and store the inverted matrix in the upper triangle.
Definition at line 1364 of file TMultiDimFit.cxx.
|
protectedvirtual |
PRIVATE METHOD: Compute the correlation matrix.
Definition at line 1444 of file TMultiDimFit.cxx.
PRIVATE METHOD: Make Gram-Schmidt orthogonalisation.
The class description gives a thorough account of this algorithm, as well as references. Please refer to the class description
Definition at line 1503 of file TMultiDimFit.cxx.
|
virtual |
Make histograms of the result of the analysis.
This message should be sent after having read all data points, but before finding the parameterization
Options: A All the below X Original independent variables D Original dependent variables N Normalised independent variables S Shifted dependent variables R1 Residuals versus normalised independent variables R2 Residuals versus dependent variable R3 Residuals computed on training sample R4 Residuals computed on test sample
For a description of these quantities, refer to class description
Definition at line 1596 of file TMultiDimFit.cxx.
Generate the file <classname>MDF.cxx which contains the implementation of the method:
Double_t <classname>::MDF(Double_t *x)
which does the same as TMultiDimFit::Eval. Please refer to this method.
Further, the public static members:
are initialized, and assumed to exist. The class declaration is assumed to be in <classname>.h and assumed to be provided by the user.
The minimal class definition is:
Whether the method <classname>::Eval should be static or not, is up to the user.
Definition at line 1743 of file TMultiDimFit.cxx.
|
protectedvirtual |
PRIVATE METHOD: Normalize data to the interval [-1;1].
This is needed for the classes method to work.
Definition at line 1755 of file TMultiDimFit.cxx.
|
protectedvirtual |
PRIVATE METHOD: Find the parameterization over the training sample.
A full account of the algorithm is given in the class description
Definition at line 1809 of file TMultiDimFit.cxx.
|
protectedvirtual |
PRIVATE METHOD: This is the method that actually generates the code for the evaluation the parameterization on some point.
It's called by TMultiDimFit::MakeCode and TMultiDimFit::MakeMethod.
The options are: NONE so far
Definition at line 1962 of file TMultiDimFit.cxx.
|
inherited |
Use this method to signal that a method (defined in a base class) may not be called in a derived class (in principle against good design since a child class should not provide less functionality than its parent, however, sometimes it is necessary).
Definition at line 1160 of file TObject.cxx.
|
virtualinherited |
This method must be overridden to handle object notification (the base implementation is no-op).
Different objects in ROOT use the Notify method for different purposes, in coordination with other objects that call this method at the appropriate time.
For example, TLeaf uses it to load class information; TBranchRef to load contents of referenced branches TBranchRef; most notably, based on Notify, TChain implements a callback mechanism to inform interested parties when it switches to a new sub-tree.
Reimplemented in TMessageHandler, TNotifyLink< Type >, TNotifyLink< RNoCleanupNotifierHelper >, TNotifyLink< ROOT::Detail::TBranchProxy >, TNotifyLink< TTreeReader >, TFileHandler, TSignalHandler, TStdExceptionHandler, TProcessEventTimer, TTimer, TIdleTimer, TSingleShotCleaner, TCollection, TRefTable, TBrowserTimer, TInterruptHandler, TTermInputHandler, TThreadTimer, TGLRedrawTimer, TViewTimer, TGContainerKeyboardTimer, TGContainerScrollTimer, TGInputHandler, TViewUpdateTimer, TPopupDelayTimer, TRepeatTimer, TSBRepeatTimer, TGTextEditHist, TInsCharCom, TDelCharCom, TBreakLineCom, TInsTextCom, TDelTextCom, TBlinkTimer, TTipDelayTimer, TGuiBldDragManagerRepeatTimer, TARInterruptHandler, TASLogHandler, TASInterruptHandler, TASSigPipeHandler, TASInputHandler, TSocketHandler, TTimeOutTimer, TBranchElement, TBranchRef, TLeafObject, TSelector, TTree, TSelectorDraw, TSelectorEntries, TTreeFormula, TTreeFormulaManager, TTreeReader, h1analysis, h1analysisTreeReader, and TSysEvtHandler.
Definition at line 618 of file TObject.cxx.
|
inherited |
Use this method to declare a method obsolete.
Specify as of which version the method is obsolete and as from which version it will be removed.
Definition at line 1169 of file TObject.cxx.
|
inherited |
Operator delete for sized deallocation.
Definition at line 1234 of file TObject.cxx.
|
inherited |
Operator delete.
Definition at line 1212 of file TObject.cxx.
|
inherited |
Only called by placement new when throwing an exception.
Definition at line 1266 of file TObject.cxx.
|
inherited |
Operator delete [] for sized deallocation.
Definition at line 1245 of file TObject.cxx.
|
inherited |
Operator delete [].
Definition at line 1223 of file TObject.cxx.
|
inherited |
Only called by placement new[] when throwing an exception.
Definition at line 1274 of file TObject.cxx.
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
virtualinherited |
This method must be overridden if a class wants to paint itself.
The difference between Paint() and Draw() is that when a object draws itself it is added to the display list of the pad in which it is drawn (and automatically redrawn whenever the pad is redrawn). While paint just draws the object without adding it to the pad display list.
Reimplemented in TPie, TSQLFile, TXMLFile, ROOT::RGeoPainter, TGaxis, TGraph, TGraphTime, THStack, TMultiGraph, TScatter, TScatter2D, TTreePerfStats, ROOT::Experimental::RTreeMapPainter, TEfficiency, TRatioPlot, TGeoBoolNode, TGeoUnion, TGeoIntersection, TGeoSubtraction, TMarker3DBox, TGL5DDataSet, TGLHistPainter, TGLParametricEquation, TGLTH3Composition, TGraph2DPainter, TSpectrum2Painter, TFileDrawMap, TDirectory, TExec, TMacro, TStyle, TBits, TCollection, TGeoNode, TGeoPhysicalNode, TGeoShape, TGeoVolume, TGeoOverlap, TGeoPainter, TGeoTrack, TGeoVGShape, TASImage, TASPaletteEditor::PaintPalette, TASPaletteEditor::LimitLine, TAnnotation, TButton, TCanvas, TClassTree, TColorWheel, TPad, TArrow, TBox, TCrown, TDiamond, TEllipse, TFrame, TLatex, TLegend, TLine, TMarker, TMathText, TPave, TPaveLabel, TPaveStats, TPavesText, TPaveText, TPolyLine, TText, TWbox, TGraphEdge, TGraphNode, TEveArrow, TEveCaloViz, TEveDigitSet, TEveGeoTopNode, TEveGeoShape, TEvePlot3D, TEvePointSet, TEveProjectionAxes, TEveScene, TEveShape, TEveStraightLineSet, TEveText, TEveTriangleSet, TAxis3D, TNode, TNodeDiv, TPolyLine3D, TPolyMarker3D, TShape, TF1, TF2, TF3, TGraph2D, TH1, TPolyMarker, TSpline, THistPainter, TPaletteAxis, TFile, TGenerator, TParticle, TPrimary, TParallelCoordVar, TVirtualPad, TVirtualGeoPainter, TVirtualGeoTrack, TVirtualHistPainter, TParallelCoordRange, TSpider, TGraphPolargram, and TParallelCoord.
Definition at line 631 of file TObject.cxx.
|
virtualinherited |
Pop on object drawn in a pad to the top of the display list.
I.e. it will be drawn last and on top of all other primitives.
Reimplemented in TPad, TFrame, and TVirtualPad.
Definition at line 640 of file TObject.cxx.
|
overridevirtual |
Print statistics etc.
Options are P Parameters S Statistics C Coefficients R Result of parameterisation F Result of fit K Correlation Matrix M Pretty print formula
Reimplemented from TObject.
Definition at line 2157 of file TMultiDimFit.cxx.
Read contents of object with specified name from the current directory.
First the key with the given name is searched in the current directory, next the key buffer is deserialized into the object. The object must have been created before via the default constructor. See TObject::Write().
Reimplemented in TKeyXML, TBuffer, TKey, and TKeySQL.
Definition at line 673 of file TObject.cxx.
|
virtualinherited |
Recursively remove this object from a list.
Typically implemented by classes that can contain multiple references to a same object.
Reimplemented in THistPainter, TCling, TDirectory, TFolder, TProcessID, TROOT, TCollection, THashList, TList, TObjArray, TBrowser, TObjectSpy, TObjectRefSpy, TListOfDataMembers, TListOfEnums, TListOfEnumsWithLock, TListOfFunctions, TListOfFunctionTemplates, ROOT::Internal::TCheckHashRecursiveRemoveConsistency, TViewPubDataMembers, TViewPubFunctions, TDialogCanvas, TInspectCanvas, TPad, TLegend, TGeometry, TNode, ROOT::RBrowserDataCleanup, TFitEditor, TGedEditor, TH1Editor, TH2Editor, TGFileBrowser, TRootBrowser, TRootBrowserLite, TRootContextMenu, TRootBrowserHistory, TEfficiency, TGraph, TGraph2D, TH1, THStack, TMultiGraph, TFileMerger, RooAbsCollection, RooAbsData, RooLinkedList, RooMCStudy, RooWorkspace, TChain, TFriendElement, TTree, TTreePlayer, and TVirtualPad.
Definition at line 684 of file TObject.cxx.
Save this object in the file specified by filename.
otherwise the object is written to filename as a CINT/C++ script. The C++ code to rebuild this object is generated via SavePrimitive(). The "option" parameter is passed to SavePrimitive. By default it is an empty string. It can be used to specify the Draw option in the code generated by SavePrimitive.
The function is available via the object context menu.
Reimplemented in TSpline, TFolder, TGeoVolume, TClassTree, TPad, TPaveClass, TGObject, TSpline3, TSpline5, ROOT::Experimental::XRooFit::xRooNode, TTreePerfStats, TVirtualPad, TGraph, and TH1.
Definition at line 708 of file TObject.cxx.
|
virtualinherited |
Save a primitive as a C++ statement(s) on output stream "out".
Reimplemented in TGeoTessellated, TGraphEdge, TGraphNode, TGeoIdentity, TStyle, TCurlyArc, TCurlyLine, TGedMarkerSelect, TGedPatternSelect, TGColorSelect, TGFont, TGVerticalLayout, TGHorizontalLayout, TGRowLayout, TGColumnLayout, TGMatrixLayout, TGTileLayout, TGListLayout, TGListDetailsLayout, TGTextLBEntry, TGNumberEntryField, TGNumberEntry, TGTableLayoutHints, TGTableLayout, TGTextEdit, TGTextView, TGXYLayoutHints, TGXYLayout, TRootContainer, TGHtml, TEfficiency, TExec, TMacro, TGeoArb8, TGeoTrap, TGeoGtra, TGeoBBox, TGeoBoolNode, TGeoUnion, TGeoIntersection, TGeoSubtraction, TGeoCompositeShape, TGeoCone, TGeoConeSeg, TGeoElementRN, TGeoDecayChannel, TGeoEltu, TGeoHalfSpace, TGeoHype, TGeoMaterial, TGeoMixture, TGeoTranslation, TGeoRotation, TGeoCombiTrans, TGeoHMatrix, TGeoMedium, TGeoPara, TGeoParaboloid, TGeoPatternX, TGeoPatternY, TGeoPatternZ, TGeoPatternParaX, TGeoPatternParaY, TGeoPatternParaZ, TGeoPatternTrapZ, TGeoPatternCylR, TGeoPatternCylPhi, TGeoPatternSphR, TGeoPatternSphTheta, TGeoPatternSphPhi, TGeoPcon, TGeoPgon, TGeoScaledShape, TGeoShapeAssembly, TGeoSphere, TGeoTorus, TGeoTrd1, TGeoTrd2, TGeoTube, TGeoTubeSeg, TGeoCtub, TGeoVolume, TGeoXtru, TASImage, TAnnotation, TButton, TCanvas, TGroupButton, TPad, TPaveClass, TSlider, TSliderBox, TArc, TArrow, TBox, TCrown, TCutG, TDiamond, TEllipse, TFrame, TGaxis, TGraphPolar, TGraphPolargram, TLatex, TLegend, TLine, TMarker, TMathText, TPave, TPaveLabel, TPaveStats, TPavesText, TPaveText, TPolyLine, TText, TWbox, TGraphStruct, TAxis3D, THelix, TMarker3DBox, TPolyLine3D, TPolyMarker3D, TGHorizontal3DLine, TGVertical3DLine, TGButton, TGTextButton, TGPictureButton, TGCheckButton, TGRadioButton, TGButtonGroup, TGVButtonGroup, TGHButtonGroup, TGContainer, TGCanvas, TGComboBox, TGLineStyleComboBox, TGLineWidthComboBox, TGDockableFrame, TGDoubleVSlider, TGDoubleHSlider, TGFrame, TGCompositeFrame, TGVerticalFrame, TGHorizontalFrame, TGMainFrame, TGTransientFrame, TGGroupFrame, TGFSComboBox, TGFileContainer, TGGC, TGIcon, TGLabel, TGLayoutHints, TGListBox, TGListTree, TGListView, TGLVContainer, TGMdiFrame, TGMdiMainFrame, TGMdiMenuBar, TGPopupMenu, TGMenuTitle, TGMenuBar, TGProgressBar, TGHProgressBar, TGVProgressBar, TGHScrollBar, TGVScrollBar, TGShapedFrame, TGShutterItem, TGShutter, TGVSlider, TGHSlider, TGSplitFrame, TGVSplitter, TGHSplitter, TGVFileSplitter, TGStatusBar, TGTabLayout, TGTab, TGTextEntry, TGToolBar, TGTripleVSlider, TGTripleHSlider, TRootEmbeddedCanvas, TF1, TF12, TF2, TF3, TGraph, TGraph2D, TGraph2DAsymmErrors, TGraph2DErrors, TGraphAsymmErrors, TGraphBentErrors, TGraphErrors, TGraphMultiErrors, TH1, TH2Poly, THStack, TMultiGraph, TPolyMarker, TProfile, TProfile2D, TProfile3D, TScatter, TScatter2D, TSpline3, TSpline5, TPaletteAxis, TChain, TTreePerfStats, TParallelCoord, TParallelCoordVar, TPie, and TPieSlice.
Definition at line 858 of file TObject.cxx.
|
staticprotectedinherited |
Save object constructor in the output stream "out".
Can be used as first statement when implementing SavePrimitive() method for the object
Definition at line 777 of file TObject.cxx.
|
staticprotectedinherited |
Save invocation of primitive Draw() method Skipped if option contains "nodraw" string.
Definition at line 845 of file TObject.cxx.
|
protectedinherited |
Save object name and title into the output stream "out".
Definition at line 135 of file TNamed.cxx.
|
staticprotectedinherited |
Save array in the output stream "out" as vector.
Create unique variable name based on prefix value Returns name of vector which can be used in constructor or in other places of C++ code If flag === kTRUE, just add empty line If flag === 111, check if array is empty and return nullptr or <vectorname>.data()
Definition at line 796 of file TObject.cxx.
Selection method.
User can override this method for specialized selection of acceptable functions in fit. Default is to select all. This message is sent during the build-up of the function candidates table once for each set of powers in variables. Notice, that the argument array contains the powers PLUS ONE. For example, to De select the function f = x1^2 * x2^4 * x3^5, this method should return kFALSE if given the argument { 3, 4, 6 }
Definition at line 2364 of file TMultiDimFit.cxx.
|
inline |
Definition at line 195 of file TMultiDimFit.h.
|
inline |
Definition at line 196 of file TMultiDimFit.h.
Set or unset the user status bits as specified in f.
Definition at line 888 of file TObject.cxx.
|
virtualinherited |
Set drawing option for object.
This option only affects the drawing style and is stored in the option field of the TObjOptLink supporting a TPad's primitive list (TList). Note that it does not make sense to call object.SetDrawOption(option) before having called object.Draw().
Reimplemented in TSystemDirectory, TSystemFile, TPad, TGFrame, TAxis, TBrowser, TPaveStats, TGedFrame, TRootBrowserLite, and RooPlot.
Definition at line 871 of file TObject.cxx.
|
staticinherited |
Set destructor only flag.
Definition at line 1204 of file TObject.cxx.
| void TMultiDimFit::SetMaxAngle | ( | Double_t | ang = 0 | ) |
Set the max angle (in degrees) between the initial data vector to be fitted, and the new candidate function to be included in the fit.
By default it is 0, which automatically chooses another selection criteria. See also class description
Definition at line 2376 of file TMultiDimFit.cxx.
|
inline |
Definition at line 198 of file TMultiDimFit.h.
Set the maximum power to be considered in the fit for each variable.
See also class description
Definition at line 2442 of file TMultiDimFit.cxx.
|
inline |
Definition at line 200 of file TMultiDimFit.h.
|
inline |
Definition at line 201 of file TMultiDimFit.h.
| void TMultiDimFit::SetMinAngle | ( | Double_t | ang = 1 | ) |
Set the min angle (in degrees) between a new candidate function and the subspace spanned by the previously accepted functions.
See also class description
Definition at line 2392 of file TMultiDimFit.cxx.
| void TMultiDimFit::SetMinRelativeError | ( | Double_t | error | ) |
Set the acceptable relative error for when sum of square residuals is considered minimized.
For a full account, refer to the class description
Definition at line 2457 of file TMultiDimFit.cxx.
|
virtualinherited |
Set the name of the TNamed.
WARNING: if the object is a member of a THashTable or THashList container the container must be Rehash()'ed after SetName(). For example the list of objects in the current directory is a THashList.
Reimplemented in TEveScene, TColor, TSystemDirectory, TSystemFile, TNode, TRotMatrix, TShape, TEfficiency, TFormula, TGraph2D, TH1, RooAbsArg, RooAbsData, RooDataHist, RooDataSet, RooFitResult, RooPlot, ROOT::Experimental::XRooFit::xRooNode, TChain, TEventList, TTree, TGraph, and TDirectory.
Definition at line 149 of file TNamed.cxx.
Set all the TNamed parameters (name and title).
WARNING: if the name is changed and the object is a member of a THashTable or THashList container the container must be Rehash()'ed after SetName(). For example the list of objects in the current directory is a THashList.
Reimplemented in TContextMenu, TNode, TGraph2D, TH1, RooAbsArg, RooAbsData, RooDataHist, RooDataSet, RooFitResult, RooPlot, and TGraph.
Definition at line 163 of file TNamed.cxx.
|
staticinherited |
Turn on/off tracking of objects in the TObjectTable.
Definition at line 1188 of file TObject.cxx.
Set the user parameter for the function selection.
The bigger the limit, the more functions are used. The meaning of this variable is defined in the class description
Definition at line 2432 of file TMultiDimFit.cxx.
Define a user function.
The input array must be of the form (p11, ..., p1N, ... ,pL1, ..., pLN) Where N is the dimension of the data sample, L is the number of terms (given in terms) and the first number, labels the term, the second the variable. More information is given in the class description
Definition at line 2412 of file TMultiDimFit.cxx.
|
virtualinherited |
Set the title of the TNamed.
Reimplemented in ROOT::TSchemaRule::TSources, TParallelCoordVar, RooPlot, TSystemDirectory, TSystemFile, TEfficiency, TH1, THnBase, ROOT::Experimental::XRooFit::xRooNode, Axis2, TASImage, TF1, TGraph, and TGraph2D.
Definition at line 173 of file TNamed.cxx.
|
virtualinherited |
Set the unique object id.
Definition at line 899 of file TObject.cxx.
|
virtualinherited |
Return size of the TNamed part of the TObject.
Reimplemented in TSQLFile, TXMLFile, TDirectory, TDirectoryFile, TFile, and TKey.
Definition at line 182 of file TNamed.cxx.
|
overridevirtual |
|
inline |
Definition at line 207 of file TMultiDimFit.h.
Issue system error message.
Use "location" to specify the method where the system error occurred. Accepts standard printf formatting arguments.
Definition at line 1112 of file TObject.cxx.
|
inlineinherited |
PRIVATE METHOD: Test whether the currently considered function contributes to the fit.
See also class description
Definition at line 2469 of file TMultiDimFit.cxx.
|
virtualinherited |
Set current style settings in this object This function is called when either TCanvas::UseCurrentStyle or TROOT::ForceStyle have been invoked.
Reimplemented in TCanvas, TPad, TFrame, TPaveStats, TPaveText, TAxis3D, TGraph, TH1, and TTree.
Definition at line 909 of file TObject.cxx.
Issue warning message.
Use "location" to specify the method where the warning occurred. Accepts standard printf formatting arguments.
Definition at line 1084 of file TObject.cxx.
|
virtualinherited |
Write this object to the current directory.
For more see the const version of this method.
Reimplemented in TSQLFile, TXMLFile, TDirectory, TBuffer, ROOT::TBufferMergerFile, TDirectoryFile, TFile, TParallelMergingFile, TCollection, TMap, and TTree.
Definition at line 989 of file TObject.cxx.
|
virtualinherited |
Write this object to the current directory.
The data structure corresponding to this object is serialized. The corresponding buffer is written to the current directory with an associated key with name "name".
Writing an object to a file involves the following steps:
Bufsize can be given to force a given buffer size to write this object. By default, the buffersize will be taken from the average buffer size of all objects written to the current file so far.
If a name is specified, it will be the name of the key. If name is not given, the name of the key will be the name as returned by GetName().
The option can be a combination of: kSingleKey, kOverwrite or kWriteDelete Using the kOverwrite option a previous key with the same name is overwritten. The previous key is deleted before writing the new object. Using the kWriteDelete option a previous key with the same name is deleted only after the new object has been written. This option is safer than kOverwrite but it is slower. NOTE: Neither kOverwrite nor kWriteDelete reduces the size of a TFile– the space is simply freed up to be overwritten; in the case of a TTree, it is more complicated. If one opens a TTree, appends some entries, then writes it out, the behaviour is effectively the same. If, however, one creates a new TTree and writes it out in this way, only the metadata is replaced, effectively making the old data invisible without deleting it. TTree::Delete() can be used to mark all disk space occupied by a TTree as free before overwriting its metadata this way. The kSingleKey option is only used by TCollection::Write() to write a container with a single key instead of each object in the container with its own key.
An object is read from the file into memory via TKey::Read() or via TObject::Read().
The function returns the total number of bytes written to the file. It returns 0 if the object cannot be written.
Reimplemented in TSQLFile, TXMLFile, TDirectory, TBuffer, TDirectoryFile, TFile, TParallelMergingFile, TCollection, TMap, and TTree.
Definition at line 964 of file TObject.cxx.
|
protected |
Number of bin in independent variables.
Definition at line 98 of file TMultiDimFit.h.
|
protected |
Number of bin in dependent variables.
Definition at line 99 of file TMultiDimFit.h.
|
privateinherited |
|
protected |
Chi square of fit.
Definition at line 85 of file TMultiDimFit.h.
|
protected |
Vector of the final coefficients.
Definition at line 82 of file TMultiDimFit.h.
|
protected |
Vector of RMS of coefficients.
Definition at line 83 of file TMultiDimFit.h.
|
protected |
Multi Correlation coefficient.
Definition at line 92 of file TMultiDimFit.h.
|
protected |
Correlation matrix.
Definition at line 93 of file TMultiDimFit.h.
|
protected |
Error from parametrization.
Definition at line 88 of file TMultiDimFit.h.
|
protected |
! Fit object (MINUIT)
Definition at line 101 of file TMultiDimFit.h.
|
protected |
[fMaxFunctions] acceptance code
Definition at line 60 of file TMultiDimFit.h.
|
protected |
Functions evaluated over sample.
Definition at line 58 of file TMultiDimFit.h.
|
staticprivateinherited |
|
staticprivate |
Definition at line 25 of file TMultiDimFit.h.
if true keep track of objects in TObjectTable
|
protected |
Bit pattern of histograms used.
Definition at line 97 of file TMultiDimFit.h.
|
protected |
List of histograms.
Definition at line 96 of file TMultiDimFit.h.
|
protected |
Flag for user defined function.
Definition at line 105 of file TMultiDimFit.h.
|
protected |
Definition at line 106 of file TMultiDimFit.h.
|
protected |
Max angle for accepting new function.
Definition at line 51 of file TMultiDimFit.h.
|
protected |
fMaxFunctions*fNVariables
Definition at line 62 of file TMultiDimFit.h.
|
protected |
max number of functions
Definition at line 59 of file TMultiDimFit.h.
|
protected |
[fNVariables] maximum powers
Definition at line 54 of file TMultiDimFit.h.
|
protected |
[fNVariables] maximum powers from fit;
Definition at line 68 of file TMultiDimFit.h.
|
protected |
Max value of dependent quantity.
Definition at line 31 of file TMultiDimFit.h.
|
protected |
Max residual value.
Definition at line 73 of file TMultiDimFit.h.
|
protected |
Row giving max residual.
Definition at line 75 of file TMultiDimFit.h.
|
protected |
max functions to study
Definition at line 61 of file TMultiDimFit.h.
|
protected |
Max terms expected in final expr.
Definition at line 52 of file TMultiDimFit.h.
|
protected |
max value of independent variables
Definition at line 39 of file TMultiDimFit.h.
|
protected |
Mean of dependent quantity.
Definition at line 30 of file TMultiDimFit.h.
|
protected |
mean value of independent variables
Definition at line 38 of file TMultiDimFit.h.
|
protected |
Min angle for accepting new function.
Definition at line 50 of file TMultiDimFit.h.
|
protected |
Min value of dependent quantity.
Definition at line 32 of file TMultiDimFit.h.
|
protected |
Min relative error accepted.
Definition at line 53 of file TMultiDimFit.h.
|
protected |
Min residual value.
Definition at line 74 of file TMultiDimFit.h.
|
protected |
Row giving min residual.
Definition at line 76 of file TMultiDimFit.h.
|
protected |
min value of independent variables
Definition at line 40 of file TMultiDimFit.h.
|
protected |
Dimension of model coefficients.
Definition at line 79 of file TMultiDimFit.h.
|
protected |
Number of independent variables.
Definition at line 37 of file TMultiDimFit.h.
|
protected |
The model coefficients.
Definition at line 80 of file TMultiDimFit.h.
|
protected |
Model matrix.
Definition at line 81 of file TMultiDimFit.h.
|
protected |
Norm of the evaluated functions.
Definition at line 65 of file TMultiDimFit.h.
|
protected |
As above, but orthogonalised.
Definition at line 64 of file TMultiDimFit.h.
|
protected |
Exit code of parameterisation.
Definition at line 86 of file TMultiDimFit.h.
|
protected |
Type of polynomials to use.
Definition at line 103 of file TMultiDimFit.h.
|
protected |
[fMaxTerms] Index of accepted powers
Definition at line 70 of file TMultiDimFit.h.
|
protected |
Control parameter.
Definition at line 55 of file TMultiDimFit.h.
|
protected |
[fMaxFuncNV] where fMaxFuncNV = fMaxFunctions*fNVariables
Definition at line 69 of file TMultiDimFit.h.
|
protected |
Relative precision of param.
Definition at line 90 of file TMultiDimFit.h.
|
protected |
Training sample, dependent quantity.
Definition at line 28 of file TMultiDimFit.h.
|
protected |
Vector of the final residuals.
Definition at line 72 of file TMultiDimFit.h.
|
protected |
Root mean square of fit.
Definition at line 84 of file TMultiDimFit.h.
|
protected |
Size of training sample.
Definition at line 42 of file TMultiDimFit.h.
|
protected |
print correlation matrix
Definition at line 104 of file TMultiDimFit.h.
|
protected |
Training sample, error in quantity.
Definition at line 29 of file TMultiDimFit.h.
|
protected |
Sum of squares away from mean.
Definition at line 34 of file TMultiDimFit.h.
|
protected |
SumSquare of dependent quantity.
Definition at line 33 of file TMultiDimFit.h.
|
protected |
Sum of Square residuals.
Definition at line 77 of file TMultiDimFit.h.
|
protected |
Multi Correlation coefficient.
Definition at line 94 of file TMultiDimFit.h.
|
protected |
Error from test.
Definition at line 89 of file TMultiDimFit.h.
|
protected |
Relative precision of test.
Definition at line 91 of file TMultiDimFit.h.
|
protected |
Test sample, dependent quantity.
Definition at line 44 of file TMultiDimFit.h.
|
protected |
Size of test sample.
Definition at line 48 of file TMultiDimFit.h.
|
protected |
Test sample, Error in quantity.
Definition at line 45 of file TMultiDimFit.h.
|
protected |
Test sample, independent variables.
Definition at line 46 of file TMultiDimFit.h.
|
privateinherited |
|
protected |
Training sample, independent variables.
Definition at line 36 of file TMultiDimFit.h.