* current states (beta and the global mean), i.e. a draw from (x_t, x_{t-1} | y_t). FIXME XXX
* The above isn't currently being done
*/
final MultivariateGaussian priorBetaSmoothedDist = getSmoothedPriorDist(particle.getPriorBeta(),
augResponseDist, observation, particle.getPriorPredictiveMean());
final Vector priorBetaSmoothedSample = priorBetaSmoothedDist.sample(random);
final MultivariateGaussian postBetaSmoothedDist = getSmoothedPostDist(particle.getPriorBeta(),
augResponseDist, observation, particle.getPriorPredictiveMean());
final Vector postBetaSmoothedSample = postBetaSmoothedDist.sample(random);
final Vector priorGlobalMeanSample = particle.getPriorBeta().getMean();