/*
  * This is the method that passess the input from the input provider to the filter.
  * It is invoked periodically from the outer class.
  */
 public void Update()
 {
     lowPassFilter.Append(lowPassFilterInput.Get());
 }