Skip to content
Snippets Groups Projects
Commit fe81bb1f authored by Adrien Matta's avatar Adrien Matta :skull_crossbones:
Browse files

* fixing a missing copy number in SuperX3

parent 55e4df49
No related branches found
No related tags found
No related merge requests found
Pipeline #172205 passed
...@@ -114,7 +114,7 @@ void SuperX3::VolumeMaker(G4int DetecNumber, G4ThreeVector position, G4RotationM ...@@ -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); 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); 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); logicSuperX3->SetVisAttributes(G4VisAttributes::Invisible);
if (m_non_sensitive_part_visiualisation) if (m_non_sensitive_part_visiualisation)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment