From 2edcb9080248f2be2b3685f024625b543abae846 Mon Sep 17 00:00:00 2001 From: Riccardo Maria Bianchi <riccardo.maria.bianchi@cern.ch> Date: Wed, 5 Apr 2017 16:33:36 +0200 Subject: [PATCH] Fixing a typo which prevented to show ZDC geo correctly (ATLASVPONE-337) The regular expression used to pick ZDC geometry volumes was written as "*Zdc*", and no volumes were picked up. I changed it to the correct one, with all capital letters: "*ZDC*". --- .../VP1/VP1Systems/VP1GeometrySystems/src/VP1GeometrySystem.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/VP1/VP1Systems/VP1GeometrySystems/src/VP1GeometrySystem.cxx b/graphics/VP1/VP1Systems/VP1GeometrySystems/src/VP1GeometrySystem.cxx index cefb503f142..8a4f3ab55c9 100644 --- a/graphics/VP1/VP1Systems/VP1GeometrySystems/src/VP1GeometrySystem.cxx +++ b/graphics/VP1/VP1Systems/VP1GeometrySystems/src/VP1GeometrySystem.cxx @@ -392,7 +392,7 @@ QWidget * VP1GeometrySystem::buildController() d->addSubSystem( VP1GeoFlags::CavernInfra,"CavernInfra"); d->addSubSystem( VP1GeoFlags::BeamPipe,"BeamPipe"); d->addSubSystem( VP1GeoFlags::LUCID,".*Lucid.*"); - d->addSubSystem( VP1GeoFlags::ZDC,".*Zdc.*"); + d->addSubSystem( VP1GeoFlags::ZDC,".*ZDC.*"); d->addSubSystem( VP1GeoFlags::ALFA,".*ALFA.*"); d->addSubSystem( VP1GeoFlags::ForwardRegion,".*ForwardRegion.*"); -- GitLab