Skip to content
Snippets Groups Projects
Commit 4f52b394 authored by lintao@ihep.ac.cn's avatar lintao@ihep.ac.cn
Browse files

WIP: setup DummyFastSimG4Tool

parent ec05b70e
No related branches found
No related tags found
No related merge requests found
#include "DummyFastSimG4Tool.h"
#include "G4VFastSimulationModel.hh"
StatusCode DummyFastSimG4Tool::initialize() {
StatusCode sc;
return sc;
}
StatusCode DummyFastSimG4Tool::finalize() {
StatusCode sc;
return sc;
}
bool DummyFastSimG4Tool::CreateFastSimulationModel() {
return true;
}
#ifndef DummyFastSimG4Tool_h
#define DummyFastSimG4Tool_h
#include "GaudiKernel/AlgTool.h"
#include "DetSimInterface/IFastSimG4Tool.h"
class DummyFastSimG4Tool: public extends<AlgTool, IFastSimG4Tool> {
public:
using extends::extends;
StatusCode initialize() override;
StatusCode finalize() override;
bool CreateFastSimulationModel() override;
private:
};
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment