statalign.postprocess.utils
Class LogLikelihoodTraceContainer

java.lang.Object
  extended by statalign.postprocess.utils.LogLikelihoodTraceContainer

public class LogLikelihoodTraceContainer
extends java.lang.Object

A container class that stores a loglikelihood value and a logical value if the sample comes from the burn-in period or not.

Author:
miklos

Field Summary
 boolean burnin
          It tells if the sample comes from the burn-in phase or not.
 double loglikelihood
          The log-likelihood value
 
Constructor Summary
LogLikelihoodTraceContainer(double loglikelihood, boolean burnin)
          This constructor sets the values in the container.
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

loglikelihood

public double loglikelihood
The log-likelihood value


burnin

public boolean burnin
It tells if the sample comes from the burn-in phase or not.

Constructor Detail

LogLikelihoodTraceContainer

public LogLikelihoodTraceContainer(double loglikelihood,
                                   boolean burnin)
This constructor sets the values in the container.

Parameters:
loglikelihood - The loglikelihood value
burnin - It is true, if the sample comes from the burn-in phase.