00001 00014 #ifndef LOTSAGENS 00015 #define LOTSAGENS 00016 00017 #include "GaudiAlg/GaudiAlgorithm.h" 00018 00019 class LotsaGens : public GaudiAlgorithm 00020 { 00021 public: 00022 LotsaGens(const std::string& name, ISvcLocator* pSvcLocator); 00023 virtual ~LotsaGens(); 00024 00025 virtual StatusCode initialize(); 00026 virtual StatusCode execute(); 00027 virtual StatusCode finalize(); 00028 00029 private: 00030 int m_count; 00031 00032 }; 00033 00034 #endif // LOTSAGENS