For Babelfish Release 1.11.1.3

EventCalculation Property

The method to use to calculate the score of this event from the children. Must be one of the following: * SUM (may have CalculationVariables of type CalculationVariablesString) * AVERAGE (may have CalculationVariables of type CalculationVariableInteger)

Definition

Namespace: Scopos.BabelFish.DataModel.Definitions
Assembly: BabelFish (in BabelFish.dll) Version: 1.11.1.4+b1da393815f6638555a663d9a94167ecabea5695
C#
public EventCalculation Calculation { get; set; }

Property Value

EventCalculation

Remarks

  • SUM: CalculationVariables are used to determine how the “S” the special sum score component is derived. If there are 0 CalculationVariables S is calculated by the sum of each child event’s S. If there are more then 1, then there should be one CalculationVariable for each child, and must be of VariableType SCORE. For example, if the values are “I”, and then “D”, it means S is calculated by taking the I (integer) component of the first child’s score, plus the D (decimal) component of the second child’s score.
  • AVERAGE: Must be one CalculationVariable, of VariableType INTEGER. Used to specify the number of shots in a series to calculate the average to. For example, if the value is 10, then the Event Score is [average shot score] * 10.

See Also