Skip to content
Snippets Groups Projects
Commit 13cbb0ec authored by William Keaton Balunas's avatar William Keaton Balunas
Browse files

Allow user to configure voronoi area decoration name

parent af1bb406
No related branches found
No related tags found
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!25234Migrate jet moment tools to IJetDecorator interface
......@@ -49,6 +49,7 @@ private:
float m_y_max;
std::string m_jetContainerName;
std::string m_decorationName;
SG::WriteDecorHandleKey<xAOD::JetContainer> m_voronoiAreaKey;
};
......
......@@ -32,8 +32,9 @@ JetVoronoiMomentsTool::JetVoronoiMomentsTool(const std::string& name)
declareProperty("AreaYmin",m_y_min);
declareProperty("AreaYmax",m_y_max);
declareProperty("JetContainer", m_jetContainerName);
declareProperty("DecorationName", m_decorationName = "VoronoiArea");
m_voronoiAreaKey = m_jetContainerName + ".VoronoiArea";
m_voronoiAreaKey = m_jetContainerName + "." + m_decorationName;
}
StatusCode JetVoronoiMomentsTool::initialize() {
......
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