Skip to content

Commit

Permalink
Fix Cavern Mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
Gfrisella authored and olantwin committed Feb 12, 2025
1 parent 847f0b2 commit 77c8109
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ it in future.

* chore: Fix file endings
* chore: trim trailing whitespace
* Fix mismatch dimension cavern ECN3 TCC8

### Changed

Expand Down
2 changes: 1 addition & 1 deletion passive/ShipMuonShield.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,7 @@ void ShipMuonShield::ConstructGeometry()
auto *stair_step_shift = new TGeoTranslation("stair_step_shift", 3.435 * m, 3.04 * m , stair_step_length / 2.);
stair_step_shift->RegisterYourself();
auto *experiment_cavern = new TGeoBBox("experiment_cavern", 7.995 * m, 6 * m, ECN3_length / 2. - stair_step_length / 2.);
auto *ECN3_shift = new TGeoTranslation("ECN3_shift", 3.435 * m, 2.64 * m, ECN3_length / 2. + stair_step_length);
auto *ECN3_shift = new TGeoTranslation("ECN3_shift", 3.435 * m, 2.64 * m, ECN3_length / 2. + stair_step_length / 2.);
ECN3_shift->RegisterYourself();

auto *yoke_pit = new TGeoBBox("yoke_pit", 3.5 * m, 4.3 * m + 1 * cm, 2.5 * m);
Expand Down

0 comments on commit 77c8109

Please sign in to comment.