Skip to content

Commit

Permalink
spelling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
asalzburger committed Jul 12, 2023
1 parent 9a09a31 commit 1e0a3a1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Core/include/Acts/Geometry/CylinderVolumeBuilder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ class CylinderVolumeBuilder : public ITrackingVolumeBuilder {
/// @param [in] externalBounds are (optional) external confinement
/// constraints
/// @return a mutable pointer to a new TrackingVolume which includes the
/// optionally provided exisitingVolume consistently for further
/// optionally provided existingVolume consistently for further
/// processing
MutableTrackingVolumePtr trackingVolume(
const GeometryContext& gctx, TrackingVolumePtr existingVolume = nullptr,
Expand Down
8 changes: 4 additions & 4 deletions Examples/Python/python/acts/examples/detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ def __init__(
shape: acts.VolumeBoundsType
The bounds type of the volume
bounds : list of float
The bound parameters of the volume, accoring to the volume bounds type.
The bound parameters of the volume, according to the volume bounds type.
transform : acts.Transform3
The positioning of the volume in global coordinates
surfaces : list of Surface
The surfaces of the layer structure (if existing)
binnings : list of int
The binnings of the layer structure (if existing)
supports : list of support structure parameters
The supports of the layer structure (if exisiting)
The supports of the layer structure (if existing)
Returns
-------
Expand Down Expand Up @@ -281,7 +281,7 @@ def createCylindricalContainer(name, dimensions, layer_volumes, binning):
volume_z = 0.5 * (volume_z_max + volume_z_min)
volume_transform = acts.Transform3([0.0, 0.0, volume_z])

# Force detector container dimention onto layer
# Force detector container dimension onto layer
layer.setBounds([layer_r_min, layer_r_max, volume_half_z])
layer.setTransform(volume_transform)

Expand Down Expand Up @@ -311,7 +311,7 @@ def createCylindricalContainer(name, dimensions, layer_volumes, binning):
last_r_max = layer_r_max
# The container is z-ordered
elif binning is acts.Binning.z:
# Force detector container dimention onto layer
# Force detector container dimension onto layer
layer.setBounds(
[volume_r_min, volume_r_max, 0.5 * (layer_z_max - layer_z_min)]
)
Expand Down

0 comments on commit 1e0a3a1

Please sign in to comment.