Skip to content
Snippets Groups Projects
Commit c3b1c554 authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'bphyreentrant' into 'master'

Disable reentrancy for TrigMultiTrkHypoMT

See merge request atlas/athena!23616
parents f6482a07 8d8d2aaa
No related branches found
No related tags found
No related merge requests found
...@@ -51,6 +51,10 @@ class TrigMultiTrkHypoMT: public ::HypoBase { ...@@ -51,6 +51,10 @@ class TrigMultiTrkHypoMT: public ::HypoBase {
virtual StatusCode execute( const EventContext& context ) const override; virtual StatusCode execute( const EventContext& context ) const override;
virtual StatusCode finalize() override; virtual StatusCode finalize() override;
protected:
//The vertexing tool is not reentrant so this algorithm cannot be used reentrantly
bool isReEntrant() const override { return false; }
private: private:
TrigMultiTrkHypoMT(); TrigMultiTrkHypoMT();
......
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