Class AverageResult

    • Constructor Detail

      • AverageResult

        public AverageResult​(List<AbstractResult> res,
                             ResultFormat resultFormat)
        This will create an AverageResult based on the AbstractResult in res.

        It will also use the resultFormat. A method will be invoked to: (a) calculate the mean values of the list of NumericProperty according to the resultFormat; (b) calculate the statistical error; (c) create a BigDecimal representation of the values and the errors, so that only 2 significant figures are left for consistency between the value and the error.

        Parameters:
        res - a list of AbstractResults that are going to be averaged (not necessarily instances of Result).
        resultFormat - the ResultFormat, which will be used for this AveragedResult.
    • Method Detail

      • getIndividualResults

        public List<AbstractResult> getIndividualResults()
        This will analyse the list of AbstractResults used for calculation of the mean and find all associated individual results.

        If it is established that some instances of AverageResult were used in the calculation, this will invoke this method recursively to get a full list of AbstractResults that are not AverageResults

        Returns:
        a list of AbstractResults that are guaranteed not to be AveragedResults.