From fe81bb1f0d62895d86cba30c8ea668cf8e18e7bb Mon Sep 17 00:00:00 2001 From: adrien matta <matta@lpccaen.in2p3.fr> Date: Sat, 16 Apr 2022 09:31:28 +0200 Subject: [PATCH] * fixing a missing copy number in SuperX3 --- NPSimulation/Detectors/SuperX3/SuperX3.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NPSimulation/Detectors/SuperX3/SuperX3.cc b/NPSimulation/Detectors/SuperX3/SuperX3.cc index feaa72063..1438ae98d 100644 --- a/NPSimulation/Detectors/SuperX3/SuperX3.cc +++ b/NPSimulation/Detectors/SuperX3/SuperX3.cc @@ -114,7 +114,7 @@ void SuperX3::VolumeMaker(G4int DetecNumber, G4ThreeVector position, G4RotationM G4Box* solidSuperX3 = new G4Box(Name, 0.5 * FaceFront, 0.5 * SiliconFaceLength * mm, 0.5 * Length); G4LogicalVolume* logicSuperX3 = new G4LogicalVolume(solidSuperX3, m_MaterialVacuum, Name, 0, 0, 0); - new G4PVPlacement(G4Transform3D(*rotation, position), logicSuperX3, Name, world, false, 0); + new G4PVPlacement(G4Transform3D(*rotation, position), logicSuperX3, Name, world, false, DetecNumber); logicSuperX3->SetVisAttributes(G4VisAttributes::Invisible); if (m_non_sensitive_part_visiualisation) -- GitLab