00001 00002 // $Id: AlgStripSR.h,v 1.1 2004/07/24 01:19:36 musser Exp $ 00003 // 00004 // AlgStripSR.h 00005 // 00006 // AlgStripSR is a concrete Strip Algorithm class. 00007 // 00008 // Author: R. Lee 2001.01.23 00010 00011 #ifndef ALGSTRIPSR_H 00012 #define ALGSTRIPSR_H 00013 00014 #include "Algorithm/AlgBase.h" 00015 00016 class AlgStripSR : public AlgBase 00017 { 00018 00019 public: 00020 AlgStripSR(); 00021 virtual ~AlgStripSR(); 00022 virtual void RunAlg(AlgConfig &ac, CandHandle &ch, CandContext &cx); 00023 virtual void Trace(const char *c) const; 00024 00025 ClassDef(AlgStripSR,2) // StripSR Algorithm Class 00026 00027 }; 00028 00029 #endif // ALGSTRIPSR_H
1.3.9.1