ClearParticleListInGridStations.h
Go to the documentation of this file.
1 #ifndef _ClearParticleListInGridStations_ClearParticleListInGridStations_h_
2 #define _ClearParticleListInGridStations_ClearParticleListInGridStations_h_
3 
4 #include <fwk/VModule.h>
5 
6 namespace evt {
7  class Event;
8 }
9 
10 
12 
27 
28  public:
29  virtual ~ClearParticleListInGridStations() = default;
30 
31  fwk::VModule::ResultFlag Init() override { return eSuccess; }
32  fwk::VModule::ResultFlag Run(evt::Event& event) override;
33  fwk::VModule::ResultFlag Finish() override { return eSuccess; }
34 
35  private:
36  REGISTER_MODULE("ClearParticleListInGridStations", ClearParticleListInGridStations);
37 
38  };
39 
40 }
41 
42 
43 #endif
fwk::VModule::ResultFlag Finish() override
Finish: invoked at end of the run (NOT end of the event)
Report success to RunController.
Definition: VModule.h:62
REGISTER_MODULE("ClearParticleListInGridStations", ClearParticleListInGridStations)
fwk::VModule::ResultFlag Init() override
Initialize: invoked at beginning of run (NOT beginning of event)
Module for clearing of particle list in grid stations.
Module interface.
Definition: VModule.h:53
ResultFlag
Flag returned by module methods to the RunController.
Definition: VModule.h:60
fwk::VModule::ResultFlag Run(evt::Event &event) override
Run: invoked once per event.

, generated on Tue Sep 26 2023.