Skip to content
Snippets Groups Projects
DummyFastSimG4Tool.h 521 B
Newer Older
#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:
    // the regions will be associated with the fast sim model
    Gaudi::Property<std::vector<std::string>> m_regions{this, "Regions"};