diff --git a/Detectors/ITSMFT/MFT/base/src/Support.cxx b/Detectors/ITSMFT/MFT/base/src/Support.cxx index 21f1ec2e0000e..856bb86c33c10 100644 --- a/Detectors/ITSMFT/MFT/base/src/Support.cxx +++ b/Detectors/ITSMFT/MFT/base/src/Support.cxx @@ -204,7 +204,8 @@ TGeoVolumeAssembly* Support::create(Int_t half, Int_t disk) // ======= Prepare support volume and add to HalfDisk ========= - auto* support_vol = new TGeoVolume(Form("Support_H%d_D%d", half, disk), localCS, mSupportMedium); + // a name of its own: a volume sharing a name with its assembly also shares its ROOT volume number + auto* support_vol = new TGeoVolume(Form("SupportVol_H%d_D%d", half, disk), localCS, mSupportMedium); auto* rot = new TGeoRotation("rot", 0, 0, 180); mHalfDisk->AddNode(support_vol, 0, rot);