00001 00002 // $Id: CandChopListHandle.cxx,v 1.1.1.1 2005/05/16 15:17:11 tagg Exp $ 00003 // 00004 // CandChopListHandle.cxx 00005 // 00006 // A list of Digit-slices. 00007 // 00008 // A digit-slice (Chop) is simply a CandDigitList. 00009 // 00010 // Author: N. Tagg 00012 00013 #include <cassert> 00014 #include <iostream> 00015 00016 #include "CandChopList.h" 00017 #include "CandChopListHandle.h" 00018 #include "MessageService/MsgService.h" 00019 00020 ClassImp(CandChopListHandle) 00021 00022 //______________________________________________________________________ 00023 CVSID("$Id: CandChopListHandle.cxx,v 1.1.1.1 2005/05/16 15:17:11 tagg Exp $"); 00024 00025 //______________________________________________________________________ 00026 CandChopListHandle::CandChopListHandle() 00027 { 00028 } 00029 00030 //______________________________________________________________________ 00031 CandChopListHandle::CandChopListHandle(const CandChopListHandle &cdh) : 00032 CandHandle(cdh) 00033 { 00034 } 00035 00036 //______________________________________________________________________ 00037 CandChopListHandle::CandChopListHandle(CandChopList *cd) : 00038 CandHandle(cd) 00039 { 00040 } 00041 00042 //______________________________________________________________________ 00043 CandChopListHandle::~CandChopListHandle() 00044 { 00045 } 00046 00047 //______________________________________________________________________ 00048 CandChopListHandle *CandChopListHandle::DupHandle() const 00049 { 00050 return (new CandChopListHandle(*this)); 00051 } 00052 00053 00054 //______________________________________________________________________ 00055 void CandChopListHandle::Trace(const char *c) const 00056 { 00057 MSG("Cand", Msg::kDebug) 00058 << "**********Begin CandChopListHandle::Trace(\"" << c << "\")" << endl 00059 << "Information from CandChopListHandle's CandHandle: " << endl; 00060 CandHandle::Trace(c); 00061 MSG("Cand", Msg::kDebug) 00062 << "**********End CandChopListHandle::Trace(\"" << c << "\")" << endl; 00063 } 00064 00065 XXXITRIMP(CandChopListHandle)
1.3.9.1