00001 00002 // $Id: AlgFilterChannels.h,v 1.1 2004/03/14 21:43:20 kordosky Exp $ 00003 // 00004 // AlgFilterChannels.h 00005 // 00006 // An algorithm to trim specific channels from the digilist 00007 // 00008 // Author: M. Kordosky 3/2004 00010 00011 #ifndef ALGFILTERCHANNELS_H 00012 #define ALGFILTERCHANNELS_H 00013 00014 #include "Algorithm/AlgBase.h" 00015 00016 class AlgFilterChannels : public AlgBase 00017 { 00018 00019 public: 00020 AlgFilterChannels(); 00021 virtual ~AlgFilterChannels(); 00022 virtual void RunAlg(AlgConfig &ac, CandHandle &ch, CandContext &cx); 00023 virtual void Trace(const char *c) const; 00024 00025 ClassDef(AlgFilterChannels,1) // FilterChannels Algorithm Class 00026 00027 }; 00028 00029 #endif // ALGFILTERCHANNELS_H
1.3.9.1