Skip to content
Snippets Groups Projects
  1. Jun 26, 2010
  2. Jun 25, 2010
  3. Jun 22, 2010
    • Lorenzo Moneta's avatar
      from Benno List: add Airy functions Ai and Bi + tests · ac970029
      Lorenzo Moneta authored
      The following functions are new:
      +  double airy_Ai(double x);
      +  double airy_Bi(double x);
      +  double airy_Ai_deriv(double x);
      +  double airy_Bi_deriv(double x);
      +  double airy_zero_Ai(unsigned int s);
      +  double airy_zero_Bi(unsigned int s);
      +  double airy_zero_Ai_deriv(unsigned int s);
      +  double airy_zero_Bi_deriv(unsigned int s);
      
      The naming is derived from the GSL routines, which are used.
      tests are included (as patch for math/mathmore/test/testSpecFunc.cxx)
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@34054 27541ba8-7e3a-0410-8455-c3a389f83636
      ac970029
  4. Apr 30, 2010
  5. Apr 25, 2010
    • Lorenzo Moneta's avatar
      merge developments in dev branch from revision 33183 · ccf0cbfb
      Lorenzo Moneta authored
        DistSampler: new interface class for sampling a generic distribution
        Possibility to perform unbinned or binned sampling 
        Implementation classes (for example using Unuran) are created  using the plugin manager
      
        Integration classes: 
      
        fix a problem with the template method passing a function and fix a bug (function object was not copied)
        Use by default kADAPTIVESINGULAR
        add kLEGENDRE based on GaussLegendreIntegrator 
      
        DataRange: return -inf,+inf when no range is set 
      
        mathmore: implement method for calculating function and derivatives for GSLNLSMinimizer
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@33180 27541ba8-7e3a-0410-8455-c3a389f83636
      ccf0cbfb
  6. Mar 12, 2010
    • Lorenzo Moneta's avatar
      - improve 1D root finder and minimization classes · 9e5c4d20
      Lorenzo Moneta authored
        - return a bool in method RootFinder::Solve and IMinimizer1D::Minimize
         to be consistent with the other numerical algo. classes
         Classes in MathCore were also returning the wrong values (status=1 instead of zero)
      
        - add Status() method to check the validity of the cached values
      
        - change default tolerance to 10-8 (abs) and 10^-10 (values which were used as default in the Mathcore Brent)
      
        - return a bool also in SetFunction
      
      - Mathcore Brent classes: 
      
         - pass tolerances and max iterations to the Brent methods. So do not use anymore the hard coded values
         - add possibility also to pass Npx (number of points to use in the grid for the bracketing search) and max number 
           of iterations (before was hard coded to 10)
          
      
      This changes uses suggestion reported by https://savannah.cern.ch/bugs/index.php?61242
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@32583 27541ba8-7e3a-0410-8455-c3a389f83636
      9e5c4d20
  7. Jan 13, 2010
  8. Jan 07, 2010
  9. Jan 06, 2010
  10. Dec 10, 2009
  11. Dec 08, 2009
  12. Dec 07, 2009
    • Lorenzo Moneta's avatar
      - fix a problem returning the covariance matrix when fit failed. Now all... · 2ec90e72
      Lorenzo Moneta authored
      - fix a problem returning the covariance matrix when fit failed. Now all minimizer implements CovMatrixStatus() when they calculate the covariance matrix. Add in FitResult method to return covariance matrix status 
      - Add a flag in interface of Minimizer::GetMinosError to do separatly positive or negative errors 
      - fix usage of  default minimizer from what is defined in etc/system.rootrc
      
      - improve comment in TH1::Fit and TGraph::Fit for usage of TFitResultPtr
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@31604 27541ba8-7e3a-0410-8455-c3a389f83636
      2ec90e72
  13. Oct 15, 2009
    • Rene Brun's avatar
      From Matthew Strait: · dc63c6b4
      Rene Brun authored
      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
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@30749 27541ba8-7e3a-0410-8455-c3a389f83636
      dc63c6b4
  14. Jun 19, 2009
  15. Jun 17, 2009
  16. Jun 12, 2009
  17. May 13, 2009
  18. Apr 28, 2009
  19. Apr 27, 2009
  20. Apr 08, 2009
  21. Dec 18, 2008
  22. Dec 12, 2008
    • Lorenzo Moneta's avatar
      import lates changes from math development branch · 8977270b
      Lorenzo Moneta authored
      (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
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@26866 27541ba8-7e3a-0410-8455-c3a389f83636
      8977270b
  23. Nov 20, 2008
  24. Sep 22, 2008
    • Lorenzo Moneta's avatar
      import changes from math development branches for subdirectory math. List of changes in detail: · 51312b79
      Lorenzo Moneta authored
      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
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@25486 27541ba8-7e3a-0410-8455-c3a389f83636
      51312b79
  25. Jun 20, 2008
    • Lorenzo Moneta's avatar
      sync with dev brunch (rev: 24397). · 7b1c1fc7
      Lorenzo Moneta authored
      Main changes are: 
      
      - improve integrator interface adding template functions taking as imput any C++ callable object for evaluation 
        of the integrals
      - use ROOT convention for enumeration names (start with k, like kADAPTIVE for the integration type). Change for 
        Integration types, Interpolation types (in MathMore) and Minimizer1D types. Change all classes and tests using this 
        enumeration name  
      - improve RichardsonDerivator class (used by TF1::Derivative). Remove an un-needed function call
        Fix also a bug in calculation of the error returned by TF1::DerivativeError
      - change interface for the function interfaced used for fitting (IParamFunction function and IParamGrad function)
        Requires now that the parameter values are passed when evaluating the function and the gradient and make the method
        operator()(double *x, double *p) const. Derived class must implement DoEvalPar (and not DoEval as before) 
        for implementing this interface. This change makes the caching of parameter not hidden and the interface is now 
        thread-safe.  In the IParamGradFunction interface remove the funcitonality for gradient of the coordinates (x) 
        since it is not needed. Define only the parameter gradient. 
      - improve also the ParamFunction class used by the concrete function like Polynomial. Adapt Polynomial class to new 
        parameteric function interface
      - improve Fit Result class with function to get parameter correlations after the fit and to fill any generic matrix 
      with covariance or correlation result. 
      - add method also in the minimizer interface to get correlation values 
      - add strategy in the minimizer control parameters
      - increase timing of stressMathCore and stressMathMore
      
      
      git-svn-id: http://root.cern.ch/svn/root/trunk@24403 27541ba8-7e3a-0410-8455-c3a389f83636
      7b1c1fc7
  26. Apr 30, 2008
  27. Apr 24, 2008
  28. Mar 28, 2008
Loading