#include <CandDigitListHandle.h>
Inheritance diagram for CandDigitListHandle:

Public Member Functions | |
| CandDigitListHandle () | |
| CandDigitListHandle (const CandDigitListHandle &cdlh) | |
| CandDigitListHandle (CandDigitList *cdl) | |
| virtual | ~CandDigitListHandle () |
| virtual CandDigitListHandle * | DupHandle () const |
| Double_t | GetAbsTime () const |
| void | SetAbsTime (Double_t time) |
| Bool_t | GetIsSparse () const |
| void | SetIsSparse (Bool_t isSparse) |
| virtual void | Trace (const char *c="") const |
|
|
Definition at line 28 of file CandDigitListHandle.cxx. Referenced by DupHandle(). 00029 {
00030 }
|
|
|
Definition at line 34 of file CandDigitListHandle.cxx. 00034 : 00035 CandHandle(cdlh) 00036 { 00037 }
|
|
|
Definition at line 40 of file CandDigitListHandle.cxx. 00040 : 00041 CandHandle(cdl) 00042 { 00043 }
|
|
|
Definition at line 46 of file CandDigitListHandle.cxx. 00047 {
00048 }
|
|
|
Reimplemented from CandHandle. Reimplemented in CandDeMuxDigitListHandle. Definition at line 51 of file CandDigitListHandle.cxx. References CandDigitListHandle(). Referenced by AlgFitTrackCam::CleanNDLists(), and AlgTrackSRList::SpectrometerTracking(). 00052 {
00053 return (new CandDigitListHandle(*this));
00054 }
|
|
|
|
Definition at line 69 of file CandDigitListHandle.cxx. References CandHandle::GetCandBase(). Referenced by AlgMuonRemoval::RunAlg(), AlgMergeEvent::RunAlg(), AlgFilterDigitListSR::RunAlg(), AlgFilterDigitList::RunAlg(), AlgFilterChannels::RunAlg(), and AlgDeMuxDigitList::RunAlg(). 00070 {
00071 return ((CandDigitList *) GetCandBase())->fIsSparse;
00072 }
|
|
|
Definition at line 63 of file CandDigitListHandle.cxx. References CandHandle::GetOwnedCandBase(). Referenced by AlgMuonRemoval::RunAlg(), AlgMergeEvent::RunAlg(), AlgMCDigitList::RunAlg(), AlgFilterDigitListSR::RunAlg(), AlgFilterDigitListAB::RunAlg(), AlgFilterDigitList::RunAlg(), AlgFilterChannels::RunAlg(), AlgDigitList::RunAlg(), AlgDeMuxDigitList::RunAlg(), AlgChop::RunAlg(), and AlgCaldetDigitList::RunAlg(). 00064 {
00065 ((CandDigitList *) GetOwnedCandBase())->fAbsTime = time;
00066 }
|
|
|
Definition at line 75 of file CandDigitListHandle.cxx. References CandHandle::GetOwnedCandBase(). Referenced by AlgMuonRemoval::RunAlg(), AlgMergeEvent::RunAlg(), AlgFilterDigitListSR::RunAlg(), AlgFilterDigitList::RunAlg(), AlgFilterChannels::RunAlg(), AlgDigitList::RunAlg(), AlgDeMuxDigitList::RunAlg(), and AlgCaldetDigitList::RunAlg(). 00076 {
00077 ((CandDigitList *) GetOwnedCandBase())->fIsSparse = isSparse;
00078 }
|
|
|
Reimplemented from CandHandle. Reimplemented in CandDeMuxDigitListHandle. Definition at line 81 of file CandDigitListHandle.cxx. References MSG, and CandHandle::Trace(). Referenced by CandDeMuxDigitListHandle::Trace(). 00082 {
00083 MSG("Cand", Msg::kDebug)
00084 << "**********Begin CandDigitListHandle::Trace(\"" << c << "\")"
00085 << endl
00086 << "Information from CandDigitListHandle's CandHandle: " << endl;
00087 CandHandle::Trace(c);
00088 MSG("Cand", Msg::kDebug)
00089 << "**********End CandDigitListHandle::Trace(\"" << c << "\")"
00090 << endl;
00091 }
|
1.3.9.1