Skip to content

Commit

Permalink
Changed primitive Datatypes to Abstract Datatypes in default parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Ananya2003Gupta committed Sep 9, 2023
1 parent 4fc8196 commit 4a27bc6
Show file tree
Hide file tree
Showing 34 changed files with 305 additions and 287 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.0'
- '1.4'
- '1.6'
- '1.9'
os:
Expand Down
1 change: 1 addition & 0 deletions src/CaloHitContributionStruct.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

include("Vector3fStruct.jl")
mutable struct CaloHitContributionStruct{MCParticleT}
PDG::Int32
Expand Down
1 change: 1 addition & 0 deletions src/CalorimeterHitStruct.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

include("Vector3fStruct.jl")
mutable struct CalorimeterHitStruct
cellID::UInt64
Expand Down
4 changes: 2 additions & 2 deletions src/ClusterStruct.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using StaticArrays

include("Vector3fStruct.jl")
mutable struct ClusterStruct{CalorimeterHitT,ParticleIDT,ClusterT}
using StaticArrays
mutable struct ClusterStruct{CalorimeterHitT,ClusterT,ParticleIDT}
type::Int32
energy::Float32
energyError::Float32
Expand Down
Loading

0 comments on commit 4a27bc6

Please sign in to comment.