k4SimGeant4
Loading...
Searching...
No Matches
ISimG4SaveOutputTool.h
Go to the documentation of this file.
1#ifndef SIMG4INTERFACE_ISIMG4SAVEOUTPUTTOOL_H
2#define SIMG4INTERFACE_ISIMG4SAVEOUTPUTTOOL_H
3
4// Gaudi
5#include "GaudiKernel/IAlgTool.h"
6
7// Geant
8class G4Event;
9
17class ISimG4SaveOutputTool : virtual public IAlgTool {
18public:
20
25 virtual StatusCode saveOutput(const G4Event& aEvent) = 0;
26};
27#endif /* SIMG4INTERFACE_ISIMG4SAVEOUTPUTTOOL_H */
Interface to the output saving tool.
Definition ISimG4SaveOutputTool.h:17
virtual StatusCode saveOutput(const G4Event &aEvent)=0
Save the data output.
DeclareInterfaceID(ISimG4SaveOutputTool, 1, 0)