00001 00002 // $Id: CandClusterList.h,v 1.5 2006/06/20 18:19:54 rhatcher Exp $ 00003 // 00004 // CandClusterList.h 00005 // 00006 // Concrete CandClusterList class descended from CandBase. 00007 // CandBase must grant friendship to class CandRefer. 00008 // 00009 // Each concrete CandBase must define a Dup function. 00010 // 00011 // Author: R. Lee 2001.02.13 00013 00014 #ifndef CANDCLUSTERLIST_H 00015 #define CANDCLUSTERLIST_H 00016 00017 #include "Candidate/CandBase.h" 00018 00019 class AlgHandle; 00020 class CandContext; 00021 class CandClusterListHandle; 00022 00023 class CandClusterList : public CandBase 00024 { 00025 friend class CandClusterListHandle; 00026 00027 public: 00028 static CandClusterListHandle MakeCandidate(AlgHandle &ah, 00029 CandContext &cx); 00030 CandClusterList(); 00031 00032 protected: 00033 CandClusterList(AlgHandle &ah); 00034 CandClusterList(AlgHandle &ah, CandHandle &ch, CandContext &cx); 00035 CandClusterList(const CandClusterList &rhs); 00036 virtual ~CandClusterList(); 00037 virtual void CreateLocalHandle(); 00038 virtual CandClusterList *Dup() const; 00039 virtual Bool_t IsEquivalent(const TObject *rhs) const; 00040 00041 ClassDef(CandClusterList,1) // Concrete Event Candidate Class 00042 }; 00043 00044 #endif // CANDCLUSTERLIST_H
1.3.9.1