Skip to content
Snippets Groups Projects
Commit 8c8a9522 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

removed unused private data members

parent 410944a2
No related branches found
No related tags found
1 merge request!230cleaning up last minute glitches
......@@ -77,7 +77,6 @@ private:
Gaudi::Property<bool> m_returnOK{this, "ReturnOK", false, "forces the sequencer to return a good status"};
Gaudi::Property<bool> m_shortCircuit{this, "ShortCircuit", true, "stop processing as soon as possible"};
bool m_isInitialized; ///< Indicate that we are ready
std::vector<AlgorithmEntry> m_entries; ///< List of algorithms to process.
ISequencerTimerTool* m_timerTool = nullptr; ///< Pointer to the timer tool
int m_timer; ///< Timer number for the sequencer
......
......@@ -29,21 +29,21 @@ public:
typedef IAlgExecStateSvc::AlgStateMap_t AlgStateMap_t;
const AlgExecState& algExecState(const Gaudi::StringKey& algName,
const AlgExecState& algExecState(const Gaudi::StringKey& algName,
const EventContext& ctx) const override;
const AlgExecState& algExecState(IAlgorithm* iAlg,
const AlgExecState& algExecState(IAlgorithm* iAlg,
const EventContext& ctx) const override;
AlgExecState& algExecState(IAlgorithm* iAlg,
AlgExecState& algExecState(IAlgorithm* iAlg,
const EventContext& ctx) override;
const AlgStateMap_t& algExecStates(const EventContext& ctx) const override;
const AlgExecState& algExecState(const Gaudi::StringKey& algName) const override;
const AlgExecState& algExecState(IAlgorithm* iAlg) const override;
AlgExecState& algExecState(IAlgorithm* iAlg) override;
const AlgStateMap_t& algExecStates() const override;
void reset(const EventContext& ctx) override;
void reset() override;
......@@ -70,17 +70,15 @@ private:
// typedef std::map<Gaudi::StringKey, AlgExecState> AlgStateMap_t;
typedef std::vector< AlgStateMap_t > AlgStates_t;
AlgStates_t m_algStates;
std::vector< EventStatus::Status > m_eventStatus;
std::vector< Gaudi::StringKey > m_preInitAlgs;
bool m_isMT;
void init();
void checkInit() const;
std::once_flag m_initFlag;
bool m_isInit;
std::mutex m_mut;
};
......
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