Package pulse.tasks.processing
Class AverageResult
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.tasks.processing.AbstractResult
-
- pulse.tasks.processing.AverageResult
-
- All Implemented Interfaces:
Serializable
,Descriptive
public class AverageResult extends AbstractResult
AnAverageResult
is obtained by averaging a list ofAbstractResult
s and calculating the associated errors of averaging.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
SIGNIFICANT_FIGURES
-
Constructor Summary
Constructors Constructor Description AverageResult(List<AbstractResult> res, ResultFormat resultFormat)
This will create anAverageResult
based on theAbstractResult
inres
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AbstractResult>
getIndividualResults()
This will analyse the list ofAbstractResult
s used for calculation of the mean and find all associated individual results.-
Methods inherited from class pulse.tasks.processing.AbstractResult
addProperty, equals, filterProperties, filterProperties, getFormat, getProperties, getProperty, setFormat, toString
-
Methods inherited from class pulse.util.UpwardsNavigable
addHierarchyListener, describe, getHierarchyListeners, getParent, identify, initListeners, removeHierarchyListener, removeHierarchyListeners, setParent, specificAncestor, tellParent
-
-
-
-
Field Detail
-
SIGNIFICANT_FIGURES
public static final int SIGNIFICANT_FIGURES
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AverageResult
public AverageResult(List<AbstractResult> res, ResultFormat resultFormat)
This will create anAverageResult
based on theAbstractResult
inres
.It will also use the
resultFormat
. A method will be invoked to: (a) calculate the mean values of the list ofNumericProperty
according to theresultFormat
; (b) calculate the statistical error; (c) create aBigDecimal
representation of the values and the errors, so that only 2 significant figures are left for consistency between thevalue
and theerror
.- Parameters:
res
- a list ofAbstractResult
s that are going to be averaged (not necessarily instances ofResult
).resultFormat
- theResultFormat
, which will be used for thisAveragedResult
.
-
-
Method Detail
-
getIndividualResults
public List<AbstractResult> getIndividualResults()
This will analyse the list ofAbstractResult
s 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 ofAbstractResult
s that are notAverageResult
s- Returns:
- a list of
AbstractResult
s that are guaranteed not to beAveragedResult
s.
-
-