00001 00002 // $Id: AlgMCDigit.h,v 1.1 2000/11/07 01:53:10 gmieg Exp $ 00003 // 00004 // AlgMCDigit.h 00005 // 00006 // AlgMCDigit is a concrete MCDigit Algorithm class. 00007 // 00008 // Author: G. Irwin 4/2000 00010 00011 #ifndef ALGMCDIGIT_H 00012 #define ALGMCDIGIT_H 00013 00014 #include "Algorithm/AlgBase.h" 00015 00016 class AlgMCDigit : public AlgBase 00017 { 00018 00019 public: 00020 AlgMCDigit(); 00021 virtual ~AlgMCDigit(); 00022 virtual void RunAlg(AlgConfig &ac, CandHandle &ch, CandContext &cx); 00023 virtual void Trace(const char *c) const; 00024 00025 ClassDef(AlgMCDigit,1) // MCDigit Algorithm Class 00026 00027 }; 00028 00029 #endif // ALGMCDIGIT_H
1.3.9.1