Skip to content

Commit

Permalink
Merge pull request #170 from gondiaz/boards
Browse files Browse the repository at this point in the history
Fix wrong distances in NEXT100 sipm boards
  • Loading branch information
paolafer authored Oct 20, 2023
2 parents 7ae9956 + 15cba8b commit 5d9dfd5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/geometries/Next100SiPMBoard.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ using namespace nexus;

Next100SiPMBoard::Next100SiPMBoard():
GeometryBase (),
size_ (122.40 * mm),
size_ (123.40 * mm),
pitch_ ( 15.55 * mm),
margin_ ( 7.275 * mm),
board_thickness_ ( 0.2 * mm),
Expand Down
4 changes: 2 additions & 2 deletions source/geometries/Next100TrackingPlane.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Next100TrackingPlane::Next100TrackingPlane():
GeometryBase(),
copper_plate_diameter_ (1340.*mm),
copper_plate_thickness_ ( 145.*mm),
distance_board_board_ ( 2.*mm),
distance_board_board_ ( 1.*mm),

visibility_(true),
sipm_board_geom_(new Next100SiPMBoard),
Expand Down Expand Up @@ -80,7 +80,7 @@ void Next100TrackingPlane::Construct()
// In Geant4 11.0.0, a bug in treating the OpBoundaryProcess produced in the surface makes the code fail.
// This is avoided by setting an empty G4MaterialPropertiesTable of the G4Material.
copper->SetMaterialPropertiesTable(new G4MaterialPropertiesTable());

G4LogicalVolume* copper_plate_logic =
new G4LogicalVolume(copper_plate_solid, copper, copper_plate_name);

Expand Down

0 comments on commit 5d9dfd5

Please sign in to comment.