Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Detectors/ITSMFT/MFT/base/src/Support.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Loading