Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
KM3io.jl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
common
KM3io.jl
Commits
e400a346
Verified
Commit
e400a346
authored
1 year ago
by
Tamas Gal
Browse files
Options
Downloads
Patches
Plain Diff
Add tests for floor-1 bug
parent
2ca25a24
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!19
Add support for floor == -1 DETX bug
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/hardware.jl
+5
-0
5 additions, 0 deletions
src/hardware.jl
test/hardware.jl
+10
-0
10 additions, 0 deletions
test/hardware.jl
with
15 additions
and
0 deletions
src/hardware.jl
+
5
−
0
View file @
e400a346
...
...
@@ -364,6 +364,7 @@ function Detector(io::IO)
# a counter to work around the floor == -1 bug in some older DETX files
floor_counter
=
1
last_string
=
-
1
floorminusone_warning_has_been_shown
=
false
for
mod
∈
1
:
n_modules
elements
=
split
(
lines
[
idx
])
...
...
@@ -372,6 +373,10 @@ function Detector(io::IO)
# floor == -1 bug. We determine the floor position by assuming an ascending order
# of modules in the DETX file
if
floor
==
-
1
if
!
floorminusone_warning_has_been_shown
@warn
"'Floor == -1' found in the detector file. The actual floor number will be inferred, assuming that modules and lines are sorted."
floorminusone_warning_has_been_shown
=
true
end
if
last_string
==
-
1
last_string
=
string
elseif
last_string
!=
string
...
...
This diff is collapsed.
Click to expand it.
test/hardware.jl
+
10
−
0
View file @
e400a346
using
Test
using
KM3io
using
KM3NeTTestData
using
Dates
const
SAMPLES_DIR
=
joinpath
(
@__DIR__
,
"samples"
)
...
...
@@ -107,6 +108,15 @@ end
@test
0
<
length
(
det
)
end
end
@testset
"DETX floor == -1 bug"
begin
det
=
Detector
(
datapath
(
"detx"
,
"orca_115strings_av20min17mhorizontal_18OMs_alt9mvertical_v2.detx"
))
@assert
Location
(
1
,
1
)
==
det
[
1
]
.
location
@assert
Location
(
1
,
2
)
==
det
[
2
]
.
location
@assert
Location
(
1
,
18
)
==
det
[
18
]
.
location
@assert
Location
(
2
,
1
)
==
det
[
19
]
.
location
@assert
Location
(
3
,
1
)
==
det
[
37
]
.
location
@assert
Location
(
115
,
18
)
==
det
[
2070
]
.
location
end
@testset
"DETX writing"
begin
for
from_version
∈
1
:
5
for
to_version
∈
1
:
5
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment