////////////////////////////////////////////////////////////////////////
// $Id: CandContext.cxx,v 1.4 2003/03/13 23:54:10 gmieg Exp $
//
// CandContext.cxx
//
// CandContext has "context" (caller) info for concrete Candidate ctor.
//
// Author:  G. Irwin 4/2000
////////////////////////////////////////////////////////////////////////

#include "Candidate/CandContext.h"

ClassImp(CandContext)

//______________________________________________________________________
CandContext::CandContext() :
  fCaller(0)
, fCandRecord(0)
, fDataIn(0)
, fMom(0)
{
}

//______________________________________________________________________
CandContext::CandContext(TObject *caller, const MomNavigator *mom) :
  fCaller(caller)
, fCandRecord(0)
, fDataIn(0)
, fMom(mom)
{
}

//______________________________________________________________________
CandContext::~CandContext()
{
}
