00001 00002 // $Id: AlgSliceSR.h,v 1.2 2001/02/13 00:15:04 rlee Exp $ 00003 // 00004 // AlgSliceSR.h 00005 // 00006 // AlgSliceSR is a concrete StripSR Algorithm class. 00007 // 00008 // Author: R. Lee 2001.01.29 00009 // 00011 00012 #ifndef ALGSLICESR_H 00013 #define ALGSLICESR_H 00014 00015 #include "Algorithm/AlgBase.h" 00016 00017 class AlgSliceSR : public AlgBase 00018 { 00019 00020 public: 00021 AlgSliceSR(); 00022 virtual ~AlgSliceSR(); 00023 virtual void RunAlg(AlgConfig &ac, CandHandle &ch, CandContext &cx); 00024 virtual void Trace(const char *c) const; 00025 00026 ClassDef(AlgSliceSR,1) // StripSR Algorithm Class 00027 00028 }; 00029 00030 #endif // ALGSLICESR_H
1.3.9.1