00001 00002 // $Id: AlgEventSR.h,v 1.8 2005/03/03 18:13:25 musser Exp $ 00003 // 00004 // AlgEventSR.h 00005 // 00006 // AlgEventSR is a concrete StripSR Algorithm class. 00007 // 00008 // Author: R. Lee 2001.03.07 00009 // 00011 00012 #ifndef ALGEVENTSR_H 00013 #define ALGEVENTSR_H 00014 00015 class CandEventHandle; 00016 00017 #include "Algorithm/AlgBase.h" 00018 #include "RecoBase/AlgReco.h" 00019 00020 class AlgEventSR : public AlgBase, public AlgReco 00021 { 00022 00023 public: 00024 AlgEventSR(); 00025 virtual ~AlgEventSR(); 00026 virtual void RunAlg(AlgConfig &ac, CandHandle &ch, CandContext &cx); 00027 virtual void Trace(const char *c) const; 00028 00029 private: 00030 00031 ClassDef(AlgEventSR,1) // EventSR Algorithm Class 00032 00033 }; 00034 00035 #endif // ALGEVENTSR_H
1.3.9.1