// MutKalmanTrackFitParam.C 
//
// Kalman track fit parameters for muon tracker: implementation file
//---------------------------------------------------------------------

#include "MutKalmanTrackFitParam.h"

ClassImp(MutKalmanTrackFitParam) // Class implementation in ROOT context

MutKalmanTrackFitParam* MutKalmanTrackFitParam::fgParameters = NULL;

  //__________________________________________________________________________
 MutKalmanTrackFitParam::MutKalmanTrackFitParam()
{
  // Constructor with default values
  fPrintLevel = 0;
  return;
}

  //__________________________________________________________________________
 MutKalmanTrackFitParam* MutKalmanTrackFitParam::Instance()
{
  // Singleton instance
  if (fgParameters == NULL) fgParameters = new MutKalmanTrackFitParam();
  return fgParameters;
}


ROOT page - Class index - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.