Skip to content
Snippets Groups Projects
Commit 488f0a72 authored by John Chapman's avatar John Chapman
Browse files

Add new max radius cut specifically for layer EMB1 and EME1

During the Simulation workshop (Dec 2017) it was decided that we
should just merge hits within 5mm everywhere except in layers 1
(EMB1) and 5 (EME1) where only hits within 1mm should be merged.
This commit adds a new property to allow the max radius (squared)
cut to be configured separately for EMB1 and EME1.


Former-commit-id: 62b06329b5f1da88291fadbd7e572427cf504e98
parent 2f12f85f
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,7 @@ namespace FCS_Param {
// Merging properties
double m_maxRadius=25.; //!< property, see @link LArG4GenShowerLib::LArG4GenShowerLib @endlink
double m_maxRadiusFine=1.; //!< property, see @link LArG4GenShowerLib::LArG4GenShowerLib @endlink
double m_maxRadiusLAr=25.; //!< property, see @link LArG4GenShowerLib::LArG4GenShowerLib @endlink
double m_maxRadiusHEC=100.; //!< property, see @link LArG4GenShowerLib::LArG4GenShowerLib @endlink
double m_maxRadiusFCAL=100.; //!< property, see @link LArG4GenShowerLib::LArG4GenShowerLib @endlink
......
......@@ -92,6 +92,7 @@ namespace FCS_Param
declareProperty("shorten_lar_step",m_config.shorten_lar_step, "");
declareProperty("maxRadius",m_config.m_maxRadius, "");
declareProperty("maxRadiusFine",m_config.m_maxRadiusFine, "");
declareProperty("maxRadiusLAr",m_config.m_maxRadiusLAr, "");
declareProperty("maxRadiusHEC",m_config.m_maxRadiusHEC, "");
declareProperty("maxRadiusFCAL",m_config.m_maxRadiusFCAL, "");
......
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