Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

CandFitTrackSRList.cxx

Go to the documentation of this file.
00001 
00002 // $Id: CandFitTrackSRList.cxx,v 1.3 2003/10/12 21:28:37 gmieg Exp $
00003 //
00004 // CandFitTrackSRList
00005 //
00006 // This is a concrete Event Candidate (Reconstruction) object.
00007 // CandFitTrackSRList is descended from CandFitTrackList.
00008 //
00009 // Each concrete CandBase must define a Dup function.
00010 // CandBase must grant friendship to class CandRefer.
00011 //
00012 // Author:  R. Lee 2001.03.30
00014 
00015 #include "Algorithm/AlgHandle.h"
00016 #include "CandFitTrackSR/CandFitTrackSRList.h"
00017 #include "CandFitTrackSR/CandFitTrackSRListHandle.h"
00018 #include "MessageService/MsgService.h"
00019 
00020 ClassImp(CandFitTrackSRList)
00021 
00022 //______________________________________________________________________
00023 CVSID("$Id: CandFitTrackSRList.cxx,v 1.3 2003/10/12 21:28:37 gmieg Exp $");
00024 
00025 //______________________________________________________________________
00026 CandFitTrackSRList::CandFitTrackSRList()
00027 {
00028   MSG("Cand", Msg::kDebug)
00029                << "Begin CandFitTrackSRList::CandFitTrackSRList() ctor:"
00030                                    << endl << "UidInt = " << GetUidInt()
00031                            << ", ArchUidInt " << GetArchUidInt() << endl
00032                              << "No. of links = " << GetNLinks() << endl
00033         << "End CandFitTrackSRList::CandFitTrackSRList() ctor." << endl;
00034 }
00035 
00036 //______________________________________________________________________
00037 CandFitTrackSRList::CandFitTrackSRList(AlgHandle &ah) :
00038   CandFitTrackList(ah)   // Should be 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 }
00047 
00048 //______________________________________________________________________
00049 CandFitTrackSRList::CandFitTrackSRList(AlgHandle &ah, CandHandle &ch,
00050                                                       CandContext &cx) :
00051   CandFitTrackList(ah)   // Should be next class up on inheritance chain
00052 {
00053   CreateLocalHandle();
00054   MSG("Cand", Msg::kDebug)
00055                        << "Begin CandFitTrackSRList::CandFitTrackSRList"
00056     << "(AlgHandle &, CandHandle &, " << "CandContext &) ctor: " << endl
00057                                            << "UidInt = " << GetUidInt()
00058                            << ", ArchUidInt " << GetArchUidInt() << endl
00059                              << "No. of links = " << GetNLinks() << endl
00060                          << "End CandFitTrackSRList::CandFitTrackSRList"
00061     << "(AlgHandle &, CandHandle &, " << "CandContext &) ctor." << endl;
00062 
00063 // Run Algorithm to construct Candidate
00064    {                                                   // Start of scope
00065      CandFitTrackSRListHandle cshl(this);   // cshl will go out of scope
00066      ch = cshl;                                     // after setting ch.
00067    }                                                     // End of scope
00068    ah.RunAlg(ch, cx);
00069 }
00070 
00071 //______________________________________________________________________
00072 CandFitTrackSRList::CandFitTrackSRList(const CandFitTrackSRList &rhs) :
00073   CandFitTrackList(rhs)  // Should be 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 CandFitTrackSRList::CandFitTrackSRList"
00079                      << "(const CandFitTrackSRList &rhs) ctor: " << endl
00080                                            << "UidInt = " << GetUidInt()
00081                            << ", ArchUidInt " << GetArchUidInt() << endl
00082                              << "No. of links = " << GetNLinks() << endl
00083                          << "End CandFitTrackSRList::CandFitTrackSRList"
00084                      << "(const CandFitTrackSRList &rhs) ctor." << endl;
00085 }
00086 
00087 //______________________________________________________________________
00088 CandFitTrackSRList::~CandFitTrackSRList()
00089 {
00090   MSG("Cand", Msg::kDebug)
00091      << "Begin CandFitTrackSRList::~CandFitTrackSRList() dtor: " << endl
00092                                            << "UidInt = " << GetUidInt()
00093                            << ", ArchUidInt " << GetArchUidInt() << endl
00094                              << "No. of links = " << GetNLinks() << endl
00095        << "End CandFitTrackSRList::~CandFitTrackSRList() dtor." << endl;
00096 }
00097 
00098 //______________________________________________________________________
00099 void CandFitTrackSRList::CreateLocalHandle()
00100 {
00101   SetLocalHandle(new CandFitTrackSRListHandle(this));
00102 }
00103 
00104 //______________________________________________________________________
00105 CandFitTrackSRList *CandFitTrackSRList::Dup() const
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   CandFitTrackSRList *cb = new CandFitTrackSRList(*this);   // Copy-ctor
00113   cb->CreateLocalHandle();   // Initializes fLocalHandle after copy-ctor
00114   TIter iterdau = GetDaughterIterator();
00115   CandHandle *dau;
00116   while ((dau=(CandHandle *) iterdau())) cb->AddDaughterLink(*dau);
00117   return cb;
00118 }
00119 
00120 //______________________________________________________________________
00121 Bool_t CandFitTrackSRList::IsEquivalent(const TObject *rhs) const
00122 {
00123   Bool_t result = true;
00124   if (!CandFitTrackList::IsEquivalent(rhs)) result = false;// superclass
00125   TestDisplayCandBanner("CandFitTrackSRList");
00126   const CandFitTrackSRList* rCnd =
00127                            dynamic_cast<const CandFitTrackSRList*>(rhs);
00128   if (rCnd == NULL) return false;
00129 
00130   TestNothing("CandFitTrackSRList");
00131 
00132   return result;
00133 }
00134 
00135 //______________________________________________________________________
00136 CandFitTrackSRListHandle CandFitTrackSRList::MakeCandidate(
00137                                          AlgHandle &ah, CandContext &cx)
00138 {
00139   CandFitTrackSRListHandle cshl;
00140   new CandFitTrackSRList(ah, cshl, cx);  // cshl owns CandFitTrackSRList
00141   return cshl;
00142 }

Generated on Mon Feb 15 11:06:28 2010 for loon by  doxygen 1.3.9.1