00001 00002 // $Id: CandSliceList.h,v 1.6 2006/06/20 18:19:54 rhatcher Exp $ 00003 // 00004 // CandSliceList.h 00005 // 00006 // Concrete CandSliceList 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.01.29 00013 00014 #ifndef CANDSLICELIST_H 00015 #define CANDSLICELIST_H 00016 00017 #include "Candidate/CandBase.h" 00018 00019 class AlgHandle; 00020 class CandContext; 00021 class CandSliceListHandle; 00022 00023 class CandSliceList : public CandBase 00024 { 00025 friend class CandSliceListHandle; 00026 00027 public: 00028 static CandSliceListHandle MakeCandidate(AlgHandle &ah, 00029 CandContext &cx); 00030 CandSliceList(); 00031 00032 protected: 00033 CandSliceList(AlgHandle &ah); 00034 CandSliceList(AlgHandle &ah, CandHandle &ch, CandContext &cx); 00035 CandSliceList(const CandSliceList &rhs); 00036 virtual ~CandSliceList(); 00037 virtual void CreateLocalHandle(); 00038 virtual CandSliceList *Dup() const; 00039 virtual Bool_t IsEquivalent(const TObject *rhs) const; 00040 00041 ClassDef(CandSliceList,1) // Concrete Event Candidate Class 00042 }; 00043 00044 #endif // CANDSLICELIST_H
1.3.9.1