CGEM BOSS 6.6.5.h
BESIII Offline Software System
Loading...
Searching...
No Matches
PurgeUnstableParticles.h
Go to the documentation of this file.
1#ifndef __GENMOD_PURGEUNSTABLEPARTICLES__
2#define __GENMOD_PURGEUNSTABLEPARTICLES__
3
4#include "GaudiKernel/Algorithm.h"
5#include <string>
6
7class StoreGateSvc;
8
9class PurgeUnstableParticles:public Algorithm {
10public:
11 PurgeUnstableParticles(const std::string& name, ISvcLocator* pSvcLocator);
12 StatusCode initialize();
13 StatusCode execute();
14 StatusCode finalize();
15
16private:
17 std::string m_mcEventColl;
18 StoreGateSvc* m_sgSvc;
19
20};
21
22#endif
PurgeUnstableParticles(const std::string &name, ISvcLocator *pSvcLocator)