[root] / trunk / math / minuit / src / TLinearMinimizer.cxx Repository:
ViewVC logotype

Log of /trunk/math/minuit/src/TLinearMinimizer.cxx

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 40577 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Aug 12 10:43:12 2011 UTC (3 years, 5 months ago) by moneta
File length: 7544 byte(s)
Diff to previous 36058
- cleanup header IParamFunctionfwd and IFunctionfwd

- simplify Chi2FCN class to store just base parametric funciton pointer (like is done in other FCN classes_
  This requires some changes in TLinearMinimizer

 This semplification should fix the bug https://savannah.cern.ch/bugs/?84867

Revision 36058 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Oct 4 14:38:48 2010 UTC (4 years, 3 months ago) by moneta
File length: 7430 byte(s)
Diff to previous 31763
fixes for Coverity 11602 and 11603

Revision 31763 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Dec 10 10:40:21 2009 UTC (5 years, 1 month ago) by moneta
File length: 7359 byte(s)
Diff to previous 31181
add various fixes for coverity (mainly un-initizialized constructors) but also two potential bugs in DataRange and UnBinData

Revision 31181 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 16 11:00:58 2009 UTC (5 years, 2 months ago) by moneta
File length: 7301 byte(s)
Diff to previous 30749
merge from  https://root.cern.ch/svn/root/branches/dev/mathDev/math/minuit  up to revision 31170 

- TMinuit.cxx: fix the printout when using SCAN
- TMinuitMinimizer:    
     implement the SetPrecision using SET EPS in Minuit
     implement method to retrieve the parameter name
 
- TLinearMinimizer: fix some error messages

Revision 30749 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Oct 15 16:33:04 2009 UTC (5 years, 3 months ago) by brun
File length: 7228 byte(s)
Diff to previous 28592
From Matthew Strait:
This patch fixes the spelling of "function" in the root source code
and documentation, which is misspelled (sometimes as part of larger
"function"-based words) at least 152 times:

* "funciton" 48 times
* "funcion" 36 times
* "funtion" 23 times
* "fucntion" 17 times
* "functionn" 6 times
* "fuction" 6 times
* "fuunction" 4 times
* "functioin" 3 times
* "fonction" 3 times
* "funstion" twice
* "fnuction" once
* "functiom" once
* "functio" once
* "funcition" once

Revision 28592 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed May 13 09:37:39 2009 UTC (5 years, 8 months ago) by moneta
File length: 7228 byte(s)
Diff to previous 26958
- apply various small improvement to minimizer classes, in particular: 

  - implement NCalls() for TMinuit (thanks to Alfio) and fix cases when SetFunction has not been called
  - when calling SetLimitedVariables on minimizer who do not support bounds return false instead of 
   setting unbound variables 
  - improve handling of errors for GSLMinimizer
    (see http://root.cern.ch/phpBB2/viewtopic.php?t=8492 )

Revision 26958 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Dec 16 15:38:16 2008 UTC (6 years, 1 month ago) by moneta
File length: 7229 byte(s)
Diff to previous 26866
- remove from gROOT the linear basis function created for the linear fit
  this fixes some crashes observed running a linear fit after a rest of gROOT.

Revision 26866 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Dec 12 10:50:07 2008 UTC (6 years, 1 month ago) by moneta
File length: 7114 byte(s)
Diff to previous 25527
import lates changes from math development branch 
(from rev 26842) 

The main changes are: 
- add support for drawing Scan and Contour plot from FitPanel
- improve Minimizer interface by adding methods for contours and scan.  
  implement them using Minuit  and Minuit2

Mathcore: 
- improve Fitter class
  mantain now after fitting a reference to the Minimizer and Objective funciton which can be used later for performing the contour and scans      
  - avoid a copy of FitResult class 
 - add new methods in Minimizer for re-setting the variable values 
 - fix the bin fitting using the bin function integral in combination with the gradient or with Fumili 
 - add dictionary for Fit method functions 


Minuit2: 
 remove limit on number of scan points 
 implement scan and contour in Minuit2Minimizer

Minuit
 implement scan and contour in TMinuitMinimizer

SMatrix: 

 Change implementation of SMatrix::Invert (and Inverse) to use the 
 direct Cramer method only for 2x2 (not up to 5x5)
 Add SMatrix::InvertFast using Cramer method up to 5x5 
 (this is having now same behavior as before)

hist: 
 TBackCompFitter: 
 improve class due to change in Fitter. Use now the minimizer reference and 
 there is no need to re-create it
  Add interface for scan and contour in TBackCompFitter
 Add methods to retrieve FitResult and FitConfig

mathmore
 fix a memory leak
 implement changes in Minimizer 

fitpanel
 new dialog for the advanced drawing option with two tabs one for 
 drawing contour the other for drawing scan plots
  fixed some meory leaks and other small problems

Revision 25527 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Sep 25 08:12:26 2008 UTC (6 years, 3 months ago) by moneta
File length: 7082 byte(s)
Diff to previous 25486
- fix a bug in creating TF1 as  basis functions in TLinearMinimizer::SetFunction. Use names more difficult to reproduce and not f1,f2,..fN, since when a new TF1 is created the one with the same name is deleted.

Revision 25486 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Sep 22 12:43:03 2008 UTC (6 years, 4 months ago) by moneta
File length: 6811 byte(s)
Diff to previous 23623
import changes from math development branches for subdirectory math. List of changes in detail: 

mathcore: 
---------
  MinimizerOptions: 
	new  class for storing Minimizer option, with static default values that can be 
	changed by the user

  FitConfig: 
   	- use default values from MinimizerOption class
   	- rename method to create parameter settings from a function

  FitUtil.cxx:   
    	improve the derivative calculations used in the effective chi2 and in Fumili and 
	fix a bug for evaluation of likelihood or chi2 terms. 
	In  EvaluatePdf() work and return  the log of the pdf. 
      
  FitResult:
	- improve the class by adding extra information like, num. of free parameters, 
	minimizer status, global correlation coefficients, information about fixed 
	and bound parameters. 
   	- add method for getting fit confidence intervals 
  	- improve print method   

  DataRange: 
	add method SetRange to distinguish from AddRange. SetRange deletes the existing 
	ranges. 

  ParamsSettings: make few methods const

  FCN functions (Chi2FCN, LogLikelihoodFCN, etc..) 
	move some common methods and data members in base class (FitMethodFunction)

  RootFinder: add template Solve() for any callable function.  

mathmore:
--------
  minimizer classes: fill status information
  GSLNLSMinimizer: return error and covariance matrix 

minuit2: 
-------
  Minuit2Minimizer: fill  status information 
  DavidonErrorUpdator: check that delgam or gvg are not zero ( can happen when dg = 0)
  FumiliFCNAdapter: work on the log of pdf

minuit:
------- 
  TLinearMinimizer: add support for robust fitting
  TMinuitMinimizer: fill status information and fix a bug in filling the correlation matrix. 
 fumili:
 ------ 
  add TFumiliMinimizer: 
	wrapper class for TFumili using Minimizer interface

Revision 23623 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Apr 30 16:13:06 2008 UTC (6 years, 8 months ago) by moneta
File length: 5940 byte(s)
Diff to previous 22885
- sync changes of David from dev. branch

 use directly ROOT::Math::IMultiGenFunction and ROOT::Math::IMultiGradFunction instead of typedef's

Revision 22885 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Mar 28 13:57:25 2008 UTC (6 years, 9 months ago) by rdm
File length: 5909 byte(s)
Copied from: branches/dev/mathDev/minuit/src/TLinearMinimizer.cxx revision 22506
Diff to previous 22564
move the following directories under the new "math" meta directory:
   mathcore
   mathmore
   fftw
   foam
   fumili
   genvector
   matrix
   minuit
   minuit2
   mlp
   physics
   smatrix
   splot
   unuran
   quadp

Revision 22564 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Mar 10 14:01:37 2008 UTC (6 years, 10 months ago) by moneta
Original Path: trunk/minuit/src/TLinearMinimizer.cxx
File length: 5909 byte(s)
Copied from: branches/dev/mathDev/minuit/src/TLinearMinimizer.cxx revision 22506
Diff to previous 22392
- fix coding convention violations (mainly change name of RootFinder enumeration)
- fix warning observed on the Windows nightly (avid generating the dictionary for fit method functions for all platforms, it is not needed) 
- add implementation of  Minimizer interface using TMinuit and the linear fitter
- add method SetBasisFunctions in TLinearFitter class to set the linear terms  
- add some optimization of wrapped functions and improve doc

Revision 22392 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Feb 28 14:29:54 2008 UTC (6 years, 10 months ago) by moneta
Original Path: branches/dev/mathDev/minuit/src/TLinearMinimizer.cxx
File length: 5034 byte(s)
Diff to previous 22380
- fix compilation problems on Solaris

Revision 22380 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Feb 27 17:51:39 2008 UTC (6 years, 10 months ago) by moneta
Original Path: branches/dev/mathDev/minuit/src/TLinearMinimizer.cxx
File length: 4969 byte(s)
Diff to previous 22352
- restore trunk versions of TLimit and TConfidenceLevel (changed by mistake when sync to trunk rev 22205)

Revision 22352 - (view) (download) (as text) (annotate) - [select for diffs]
Added Tue Feb 26 16:41:06 2008 UTC (6 years, 10 months ago) by moneta
Original Path: branches/dev/mathDev/minuit/src/TLinearMinimizer.cxx
File length: 4997 byte(s)
- add plug-in for linear fitter 
- modify interface of gradient parametric function to be more consistent with normal gradient functions
 (the method required to be implemented is the partial derivative, which is used in the linear fit)

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9