private static double GetCalibratedSilacMassStat(SilacCluster sc, double[,] mzCalibrationPar,
                                                         double[,] intensityCalibrationPar,
                                                         SilacType type, IsotopeCluster[] isotopeCluster, IPeakList peakList,
                                                         float[] intensities)
        {
            int dummy;

            return
                (GetFullIsotopePatternMassEstimateNoBootstrapStat(sc.GetIsotopeClusterIndices(type), sc.GetIsotopePatternStarts(type),
                                                                  sc.GetMassDiffs(type), mzCalibrationPar, intensityCalibrationPar,
                                                                  true,
                                                                  out dummy, isotopeCluster, peakList, intensities));
        }
 private static double GetUncalibratedSilacMass(SilacCluster sc, SilacType type, IsotopeCluster[] isotopeClusters,
                                                double[] centerMz, float[] intensities)
 {
     return
         (GetUncalibratedFullIsotopePatternMassEstimate(sc.GetIsotopeClusterIndices(type), sc.GetIsotopePatternStarts(type),
                                                        sc.GetMassDiffs(type), isotopeClusters, centerMz, intensities));
 }