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

Public Member Functions | |
| CandTrackSRListHandle () | |
| CandTrackSRListHandle (const CandTrackSRListHandle &cdh) | |
| CandTrackSRListHandle (CandTrackSRList *cd) | |
| virtual | ~CandTrackSRListHandle () |
| virtual CandTrackSRListHandle * | DupHandle () const |
| virtual void | Trace (const char *c="") const |
| void | AddTrackCluster (TrackClusterSR *) |
| TObjArray * | GetTrackClusterList () const |
| Double_t | GetCPUTime () const |
| void | SetCPUTime (Double_t) |
|
|
Definition at line 27 of file CandTrackSRListHandle.cxx. Referenced by DupHandle(). 00028 {
00029 }
|
|
|
Definition at line 32 of file CandTrackSRListHandle.cxx. 00033 : 00034 CandTrackListHandle(cdh) 00035 { 00036 }
|
|
|
Definition at line 39 of file CandTrackSRListHandle.cxx. 00039 : 00040 CandTrackListHandle(cd) 00041 { 00042 }
|
|
|
Definition at line 45 of file CandTrackSRListHandle.cxx. 00046 {
00047 }
|
|
|
Definition at line 70 of file CandTrackSRListHandle.cxx. References CandHandle::GetOwnedCandBase(), and tc. Referenced by AlgTrackSRList::MakeTrackClusters(), and AlgTrackSRList::SpectrometerTracking(). 00071 {
00072 TrackClusterSR *newtc = new TrackClusterSR(*tc);
00073 dynamic_cast<CandTrackSRList *>
00074 (GetOwnedCandBase())->fTrackClusterList->Add(newtc);
00075 }
|
|
|
Reimplemented from CandTrackListHandle. Definition at line 50 of file CandTrackSRListHandle.cxx. References CandTrackSRListHandle(). 00051 {
00052 return (new CandTrackSRListHandle(*this));
00053 }
|
|
|
Definition at line 92 of file CandTrackSRListHandle.cxx. References CandHandle::GetCandBase(). Referenced by UberModuleLite::FillNtpTrack(), UberModule::FillNtpTrack(), and NtpSRModule::FillNtpTrack(). 00093 {
00094 return dynamic_cast<const CandTrackSRList *>(GetCandBase())->fCPUTime;
00095 }
|
|
|
Definition at line 78 of file CandTrackSRListHandle.cxx. References CandHandle::GetCandBase(). Referenced by AlgTrackSRList::RemoveStripsInSlice(), AlgTrackSRList::RemoveUnusedSpectStrips(), and AlgFitTrackSRList::RunAlg(). 00079 {
00080 return dynamic_cast<const CandTrackSRList *>
00081 (GetCandBase())->fTrackClusterList;
00082 }
|
|
|
Definition at line 85 of file CandTrackSRListHandle.cxx. References CandHandle::GetOwnedCandBase(). Referenced by TrackSRListModule::Reco(). 00086 {
00087 dynamic_cast<CandTrackSRList *>
00088 (GetOwnedCandBase())->fCPUTime = cputime;
00089 }
|
|
|
Reimplemented from CandTrackListHandle. Definition at line 57 of file CandTrackSRListHandle.cxx. References MSG, and CandHandle::Trace(). 00058 {
00059 MSG("Cand", Msg::kDebug)
00060 << "**********Begin CandTrackSRListHandle::Trace(\"" << c << "\")"
00061 << endl
00062 << "Information from CandTrackSRListHandle's CandHandle: " << endl;
00063 CandHandle::Trace(c);
00064 MSG("Cand", Msg::kDebug)
00065 << "**********End CandTrackSRListHandle::Trace(\"" << c << "\")"
00066 << endl;
00067 }
|
1.3.9.1