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