Skip to content
Snippets Groups Projects
Commit c38dff2f authored by Peter Onyisi's avatar Peter Onyisi
Browse files

Initialize property

parent dce8f066
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,7 @@ public: ...@@ -65,7 +65,7 @@ public:
virtual StatusCode initialize() override; virtual StatusCode initialize() override;
virtual StatusCode fillHistograms( const EventContext& ctx ) const override; virtual StatusCode fillHistograms( const EventContext& ctx ) const override;
private: private:
bool m_ArgonXenonSplitter; BooleanProperty m_ArgonXenonSplitter{this, "doArgonXenonSeparation", true};
enum GasType{ Xe = 0, Ar = 1, Kr = 2 }; enum GasType{ Xe = 0, Ar = 1, Kr = 2 };
const AtlasDetectorID * m_idHelper; const AtlasDetectorID * m_idHelper;
......
...@@ -78,7 +78,7 @@ private: ...@@ -78,7 +78,7 @@ private:
bool m_doHitsMon; bool m_doHitsMon;
float m_DistToStraw; float m_DistToStraw;
bool m_ArgonXenonSplitter; BooleanProperty m_ArgonXenonSplitter{this, "doArgonXenonSeparation", true};
int m_totalEvents; int m_totalEvents;
float m_longToTCut; float m_longToTCut;
......
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