From 3eac1eee33529df16dddbce198e56e920e11b9b5 Mon Sep 17 00:00:00 2001 From: Alvaro Tolosa Delgado Date: Fri, 23 Aug 2024 13:15:47 +0200 Subject: [PATCH] default xy resolution 0.1 mm --- DCHdigi/include/DCHdigi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DCHdigi/include/DCHdigi.h b/DCHdigi/include/DCHdigi.h index 5fa95df..e7556d9 100644 --- a/DCHdigi/include/DCHdigi.h +++ b/DCHdigi/include/DCHdigi.h @@ -21,7 +21,7 @@ * @param zResolution_mm Resolution (sigma for gaussian smearing) along the sense wire, in mm
* (default value 1 mm)
* @param xyResolution_mm Resolution (sigma for gaussian smearing) perpendicular the sense wire, in mm
- * (default value 10 mm)
+ * (default value 0.1 mm)
* @param create_debug_histograms Optional flag to create debug histograms
* (default value false)
* @param GeoSvcName Geometry service name
@@ -123,7 +123,7 @@ struct DCHdigi final Gaudi::Property m_z_resolution{this, "zResolution_mm", 1.0, "Spatial resolution in the z direction (from reading out the wires at both sides) in mm. Default 1 mm."}; /// xy resolution in mm - Gaudi::Property m_xy_resolution{this, "xyResolution_mm", 0.1, "Spatial resolution in the xy direction [mm]"}; + Gaudi::Property m_xy_resolution{this, "xyResolution_mm", 0.1, "Spatial resolution in the xy direction in mm. Default 0.1 mm."}; /// create seed using the uid SmartIF m_uidSvc;