00001 00002 #include "MessageService/MsgService.h" 00003 #include "JobControl/JobCModuleRegistry.h" 00004 00005 #include "Navigation/NavKey.h" 00006 #include "Navigation/NavSet.h" 00007 00008 #include "CandShowerAtNuListHandle.h" 00009 #include "RecoBase/CandShowerListHandle.h" 00010 00011 // 00012 // $Log $ 00013 // 00014 00015 ClassImp(CandShowerAtNuListHandle) 00016 00017 CVSID("$Id: CandShowerAtNuListHandle.cxx,v 1.10 2005/02/04 21:07:54 blake Exp $"); 00018 00019 CandShowerAtNuListHandle::CandShowerAtNuListHandle() 00020 { 00021 MSG("CandShowerAtNuListHandle", Msg::kDebug) << " " << endl; 00022 } 00023 00024 CandShowerAtNuListHandle::CandShowerAtNuListHandle(const CandShowerAtNuListHandle &cdh) : 00025 CandShowerListHandle(cdh) 00026 { 00027 00028 } 00029 00030 CandShowerAtNuListHandle::CandShowerAtNuListHandle(CandShowerAtNuList *cd) : 00031 CandShowerListHandle(cd) 00032 { 00033 00034 } 00035 00036 CandShowerAtNuListHandle::~CandShowerAtNuListHandle() 00037 { 00038 00039 } 00040 00041 CandShowerAtNuListHandle *CandShowerAtNuListHandle::DupHandle() const 00042 { 00043 return (new CandShowerAtNuListHandle(*this)); 00044 } 00045 00046 void CandShowerAtNuListHandle::Trace(const char *c) const 00047 { 00048 CandHandle::Trace(c); 00049 } 00050 00051 Double_t CandShowerAtNuListHandle::GetCPUTime() const 00052 { 00053 return dynamic_cast<const CandShowerAtNuList*>(GetCandBase())->fCPUTime; 00054 } 00055 00056 void CandShowerAtNuListHandle::SetCPUTime(Double_t time) 00057 { 00058 dynamic_cast<CandShowerAtNuList*>(GetOwnedCandBase())->fCPUTime = time; 00059 } 00060 00061 XXXITRIMP(CandShowerAtNuListHandle)
1.3.9.1