Skip to content

Commit

Permalink
Fix in parsing p+ contact
Browse files Browse the repository at this point in the history
  • Loading branch information
fhagemann committed Sep 19, 2024
1 parent b948cfc commit abb3159
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/LegendDataManagementSolidStateDetectorsExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ function create_SSD_config_dict_from_LEGEND_metadata(meta::PropDict, xtal_meta::
"to" => borehole_radius
),
"h" => borehole_depth,
"origin" => [0, 0, borehole_depth]
"origin" => [0, 0, borehole_depth / 2]
)),
dicttype("cone" => dicttype(
"r" => borehole_radius,
Expand All @@ -367,7 +367,7 @@ function create_SSD_config_dict_from_LEGEND_metadata(meta::PropDict, xtal_meta::
dicttype("cone" => dicttype(
"r" => pp_radius,
"h" => pp_depth,
"origin" => [0, 0, pp_depth]
"origin" => [0, 0, pp_depth / 2]
))
end

Expand Down

0 comments on commit abb3159

Please sign in to comment.