00001 00002 // $Id: CandContext.cxx,v 1.4 2003/03/13 23:54:10 gmieg Exp $ 00003 // 00004 // CandContext.cxx 00005 // 00006 // CandContext has "context" (caller) info for concrete Candidate ctor. 00007 // 00008 // Author: G. Irwin 4/2000 00010 00011 #include "Candidate/CandContext.h" 00012 00013 ClassImp(CandContext) 00014 00015 //______________________________________________________________________ 00016 CandContext::CandContext() : 00017 fCaller(0) 00018 , fCandRecord(0) 00019 , fDataIn(0) 00020 , fMom(0) 00021 { 00022 } 00023 00024 //______________________________________________________________________ 00025 CandContext::CandContext(TObject *caller, const MomNavigator *mom) : 00026 fCaller(caller) 00027 , fCandRecord(0) 00028 , fDataIn(0) 00029 , fMom(mom) 00030 { 00031 } 00032 00033 //______________________________________________________________________ 00034 CandContext::~CandContext() 00035 { 00036 }