#ifndef ATLASPOOL_NAIVEPOOLEXAMPLESREADDATA #define ATLASPOOL_NAIVEPOOLEXAMPLESREADDATA // $Id: WriteData.h,v 1.3 2003/04/11 17:09:18 fine Exp $ #include #include "GaudiKernel/Algorithm.h" class StoreGateSvc; ///////////////////////////////////////////////////////////////////////////// class WriteData:public Algorithm { public: WriteData (const std::string& name, ISvcLocator* pSvcLocator); StatusCode initialize(); StatusCode execute(); StatusCode finalize(); private: StoreGateSvc* p_SGevent; // cache for efficiency std::string m_DataObjLoc; // default myDataObj name // more examples vector and map std::string m_VFLoc; std::string m_MSFLoc; }; #endif