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

Public Member Functions | |
| CandClusterList () | |
Static Public Member Functions | |
| static CandClusterListHandle | MakeCandidate (AlgHandle &ah, CandContext &cx) |
Protected Member Functions | |
| CandClusterList (AlgHandle &ah) | |
| CandClusterList (AlgHandle &ah, CandHandle &ch, CandContext &cx) | |
| CandClusterList (const CandClusterList &rhs) | |
| virtual | ~CandClusterList () |
| virtual void | CreateLocalHandle () |
| virtual CandClusterList * | Dup () const |
| virtual Bool_t | IsEquivalent (const TObject *rhs) const |
Friends | |
| class | CandClusterListHandle |
Definition at line 23 of file CandClusterList.h.
| CandClusterList::CandClusterList | ( | ) |
Definition at line 26 of file CandClusterList.cxx.
References Msg::kDebug, and MSG.
Referenced by Dup(), and MakeCandidate().
00027 { 00028 MSG("Cand", Msg::kDebug) 00029 << "Begin CandClusterList::CandClusterList() ctor: " << endl 00030 << "UidInt = " << GetUidInt() 00031 << ", ArchUidInt " << GetArchUidInt() << endl 00032 << "No. of links = " << GetNLinks() << endl 00033 << "End CandClusterList::CandClusterList() ctor." << endl; 00034 }
| CandClusterList::CandClusterList | ( | AlgHandle & | ah | ) | [protected] |
Definition at line 37 of file CandClusterList.cxx.
00037 : 00038 CandBase(ah) // Should be the next class up on inheritance chain 00039 { 00040 00041 // The sole purpose of this constructor is to transmit the AlgHandle 00042 // up the inheritance chain to CandBase without having to invoke the 00043 // full constructor of an intermediate Candidate type which the highest 00044 // level Candidate might inherit from. One only wants to create the 00045 // LocalHandle and invoke the RunAlg() method in the lowest level class. 00046 }
| CandClusterList::CandClusterList | ( | AlgHandle & | ah, | |
| CandHandle & | ch, | |||
| CandContext & | cx | |||
| ) | [protected] |
Definition at line 49 of file CandClusterList.cxx.
References CreateLocalHandle(), CandBase::GetArchUidInt(), CandRefCounted::GetNLinks(), CandBase::GetUidInt(), Msg::kDebug, MSG, and AlgHandle::RunAlg().
00050 : 00051 CandBase(ah) // Should be the next class up on inheritance chain 00052 { 00053 CreateLocalHandle(); 00054 MSG("Cand", Msg::kDebug) 00055 << "Begin CandClusterList::CandClusterList(AlgHandle &, CandHandle &, " 00056 << "CandContext &) ctor: " << endl 00057 << "UidInt = " << GetUidInt() 00058 << ", ArchUidInt " << GetArchUidInt() << endl 00059 << "No. of links = " << GetNLinks() << endl 00060 << "End CandClusterList::CandClusterList(AlgHandle &, CandHandle &, " 00061 << "CandContext &) ctor." << endl; 00062 00063 // Run Algorithm to construct Candidate 00064 { // Start of scope. 00065 CandClusterListHandle cdh(this); // cdh will go out of scope 00066 ch = cdh; // after setting ch. 00067 } // End of scope. 00068 ah.RunAlg(ch, cx); 00069 }
| CandClusterList::CandClusterList | ( | const CandClusterList & | rhs | ) | [protected] |
Definition at line 72 of file CandClusterList.cxx.
References CandBase::GetArchUidInt(), CandRefCounted::GetNLinks(), CandBase::GetUidInt(), Msg::kDebug, and MSG.
00072 : 00073 CandBase(rhs) // Should be the next class up on inheritance chain 00074 { 00075 00076 //CreateLocalHandle(); // Moved to Dup function following copy-ctor call 00077 MSG("Cand", Msg::kDebug) 00078 << "Begin CandClusterList::CandClusterList" 00079 << "(const CandClusterList &rhs) ctor: " << endl 00080 << "UidInt = " << GetUidInt() 00081 << ", ArchUidInt " << GetArchUidInt() << endl 00082 << "No. of links = " << GetNLinks() << endl 00083 << "End CandClusterList::CandClusterList" 00084 << "(const CandClusterList &rhs) ctor." << endl; 00085 }
| CandClusterList::~CandClusterList | ( | ) | [protected, virtual] |
Definition at line 88 of file CandClusterList.cxx.
References CandBase::GetArchUidInt(), CandRefCounted::GetNLinks(), CandBase::GetUidInt(), Msg::kDebug, and MSG.
00089 { 00090 MSG("Cand", Msg::kDebug) 00091 << "Begin CandClusterList::~CandClusterList() dtor: " << endl 00092 << "UidInt = " << GetUidInt() 00093 << ", ArchUidInt " << GetArchUidInt() << endl 00094 << "No. of links = " << GetNLinks() << endl 00095 << "End CandClusterList::~CandClusterList() dtor." << endl; 00096 }
| void CandClusterList::CreateLocalHandle | ( | ) | [protected, virtual] |
Implements CandBase.
Definition at line 99 of file CandClusterList.cxx.
References CandClusterListHandle, and CandBase::SetLocalHandle().
Referenced by CandClusterList(), and Dup().
00100 { 00101 SetLocalHandle(new CandClusterListHandle(this)); 00102 }
| CandClusterList * CandClusterList::Dup | ( | ) | const [protected, virtual] |
Implements CandBase.
Definition at line 105 of file CandClusterList.cxx.
References CandBase::AddDaughterLink(), CandClusterList(), CreateLocalHandle(), CandBase::fCandRecord, CandBase::GetDaughterIterator(), and CandBase::SetCandRecord().
00106 { 00107 00108 // Base copy ctor dups owned pointers, but defers copying Daughter List. 00109 // Daughter List copy is made in the derived class Dup() function. 00110 // This is because base class copy constructor hasn't yet created 00111 // fLocalHandle with a CandHandle* of the full derived type. 00112 CandClusterList *cb = new CandClusterList(*this); // Copy-ctor 00113 cb->CreateLocalHandle(); // Initializes fLocalHandle after copy-ctor 00114 cb->SetCandRecord(fCandRecord); 00115 TIter iterdau = GetDaughterIterator(); 00116 CandHandle *dau; 00117 while ((dau=(CandHandle *) iterdau())) cb->AddDaughterLink(*dau); 00118 return cb; 00119 }
| Bool_t CandClusterList::IsEquivalent | ( | const TObject * | rhs | ) | const [protected, virtual] |
Reimplemented from CandBase.
Definition at line 122 of file CandClusterList.cxx.
References CandBase::IsEquivalent(), CandBase::TestDisplayCandBanner(), and CandBase::TestNothing().
00123 { 00124 Bool_t result = true; 00125 if (!CandBase::IsEquivalent(rhs)) result = false; // superclass test 00126 TestDisplayCandBanner("CandClusterList"); 00127 const CandClusterList* rCnd = 00128 dynamic_cast<const CandClusterList*>(rhs); 00129 if (rCnd == NULL) return false; 00130 00131 TestNothing("CandClusterList"); 00132 00133 return result; 00134 }
| CandClusterListHandle CandClusterList::MakeCandidate | ( | AlgHandle & | ah, | |
| CandContext & | cx | |||
| ) | [static] |
Definition at line 137 of file CandClusterList.cxx.
References CandClusterList().
Referenced by ClusterSRListModule::Reco().
00139 { 00140 CandClusterListHandle cdh; 00141 new CandClusterList(ah, cdh, cx); // cdh owns the new CandClusterList 00142 return cdh; 00143 }
friend class CandClusterListHandle [friend] |
1.4.7