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

Public Member Functions | |
| CandCluster3DHandle () | |
| CandCluster3DHandle (const CandCluster3DHandle &csh) | |
| CandCluster3DHandle (const CandRecoHandle &csh) | |
| CandCluster3DHandle (CandCluster3D *cs) | |
| virtual | ~CandCluster3DHandle () |
| virtual CandCluster3DHandle * | DupHandle () const |
| virtual void | Trace (const char *c="") const |
| Bool_t | IsShowerLike () const |
| Bool_t | IsTrackLike () const |
| void | IsShowerLike (Bool_t) |
| void | IsTrackLike (Bool_t) |
|
|
Definition at line 27 of file CandCluster3DHandle.cxx. Referenced by DupHandle(). 00028 {
00029 }
|
|
|
Definition at line 32 of file CandCluster3DHandle.cxx. 00032 : 00033 CandRecoHandle(cdh) 00034 { 00035 }
|
|
|
Definition at line 38 of file CandCluster3DHandle.cxx. 00038 : 00039 CandRecoHandle(cdh) 00040 { 00041 }
|
|
|
Definition at line 44 of file CandCluster3DHandle.cxx. 00044 : 00045 CandRecoHandle(cd) 00046 { 00047 }
|
|
|
Definition at line 50 of file CandCluster3DHandle.cxx. 00051 {
00052 }
|
|
|
Reimplemented from CandRecoHandle. Definition at line 55 of file CandCluster3DHandle.cxx. References CandCluster3DHandle(). 00056 {
00057 return (new CandCluster3DHandle(*this));
00058 }
|
|
|
Definition at line 101 of file CandCluster3DHandle.cxx. References CandHandle::GetOwnedCandBase(). 00102 {
00103 dynamic_cast<CandCluster3D *>(GetOwnedCandBase())->fShowerLike = bvar;
00104
00105 }
|
|
|
Definition at line 89 of file CandCluster3DHandle.cxx. References CandHandle::GetCandBase(). 00090 {
00091 return dynamic_cast<const CandCluster3D *>(GetCandBase())->fShowerLike;
00092
00093 }
|
|
|
Definition at line 95 of file CandCluster3DHandle.cxx. References CandHandle::GetOwnedCandBase(). 00096 {
00097 dynamic_cast<CandCluster3D *>(GetOwnedCandBase())->fTrackLike = bvar;
00098
00099 }
|
|
|
Definition at line 83 of file CandCluster3DHandle.cxx. References CandHandle::GetCandBase(). 00084 {
00085 return dynamic_cast<const CandCluster3D *>(GetCandBase())->fTrackLike;
00086
00087 }
|
|
|
Reimplemented from CandRecoHandle. Definition at line 62 of file CandCluster3DHandle.cxx. References MSG, and CandHandle::Trace(). 00063 {
00064 MSG("Cand", Msg::kDebug)
00065 << "**********Begin CandCluster3DHandle::Trace(\"" << c << "\")" << endl
00066 << "Information from CandCluster3DHandle's CandHandle: " << endl;
00067 CandHandle::Trace(c);
00068 MSG("Cand", Msg::kDebug)
00069 << "**********End CandCluster3DHandle::Trace(\"" << c << "\")" << endl;
00070 }
|
1.3.9.1