Skip to content

Commit

Permalink
Add a few mutables here and there
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Jun 20, 2024
1 parent 93a4cf7 commit 8ce1374
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions k4MarlinWrapper/k4MarlinWrapper/MarlinProcessorWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace marlin {
class StringParameters;
} // namespace marlin

class MarlinProcessorWrapper : Gaudi::Algorithm {
class MarlinProcessorWrapper : public Gaudi::Algorithm {
public:
explicit MarlinProcessorWrapper(const std::string& name, ISvcLocator* pSL);
virtual ~MarlinProcessorWrapper() = default;
Expand All @@ -83,8 +83,8 @@ class MarlinProcessorWrapper : Gaudi::Algorithm {
Gaudi::Property<std::string> m_processorType{this, "ProcessorType", {}};
Gaudi::Property<std::map<std::string, std::vector<std::string>>> m_parameters{this, "Parameters", {}};

ToolHandle<IEDMConverter> m_edm_conversionTool{"IEDMConverter/EDM4hep2Lcio", this};
ToolHandle<IEDMConverter> m_lcio_conversionTool{"IEDMConverter/Lcio2EDM4hep", this};
mutable ToolHandle<IEDMConverter> m_edm_conversionTool{"IEDMConverter/EDM4hep2Lcio", this};
mutable ToolHandle<IEDMConverter> m_lcio_conversionTool{"IEDMConverter/Lcio2EDM4hep", this};

static std::stack<marlin::Processor*>& ProcessorStack();
};
Expand Down

0 comments on commit 8ce1374

Please sign in to comment.