Class CircleFitter

java.lang.Object
org.jlab.rec.cvt.fit.CircleFitter

public class CircleFitter extends Object
Circle fit using the Karimaki algorithm. The algorithm returns Gaussian parameters rho (circle curvature), d (doca to orig.) and phi (at doca). Allows for non-iterative solution. Returns covariance matrix of fitted parameter. Algorithm Reference: Nuclear Instruments and Methods in Physics Research A305 (1991) 187-191 Effective circle fitting for particle trajectories by V. Karimaki
  • Constructor Details

    • CircleFitter

      public CircleFitter(double xb, double yb)
      Constructor Sets the reference point to (0,0)
      Parameters:
      xb -
      yb -
  • Method Details

    • setrefcoords

      public void setrefcoords(double xr, double yr)
    • fitStatus

      public boolean fitStatus(List<Double> xm, List<Double> ym, List<Double> wm, int NP)
      Fits the set of data points given by arrays xm[], ym[], with corresponding weights wm[].The number of points that are fitted is given by NP.The fit returns a boolean flag of true if the fit was successful.
      Parameters:
      xm -
      ym -
      wm -
      NP -
      Returns:
    • getFit

      public CircleFitPars getFit()
    • propagatefit

      public CircleFitPars propagatefit(double xp, double yp)
    • main

      public static void main(String[] args)
    • transpose3x3Matrix

      public double[][] transpose3x3Matrix(double[][] theMatrix)
    • multiply3x3Matrices

      public double[][] multiply3x3Matrices(double[][] firstMatrix, double[][] secondMatrix)
    • invert3x3Matrix

      public double[][] invert3x3Matrix(double[][] m)