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
b2ee04cc
Commit
b2ee04cc
authored
4 months ago
by
Tamas Gal
Browse files
Options
Downloads
Plain Diff
Merge branch 'cleanup' into 'main'
Remove verbose stuff See merge request
!44
parents
6bebc936
a046f8d2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!44
Remove verbose stuff
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/hardware.jl
+0
-8
0 additions, 8 deletions
src/hardware.jl
test/calibration.jl
+0
-1
0 additions, 1 deletion
test/calibration.jl
test/tools.jl
+8
-8
8 additions, 8 deletions
test/tools.jl
with
8 additions
and
17 deletions
src/hardware.jl
+
0
−
8
View file @
b2ee04cc
...
...
@@ -470,7 +470,6 @@ function read_detx(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
])
...
...
@@ -479,10 +478,6 @@ function read_detx(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
...
...
@@ -618,10 +613,7 @@ information will be lost.
function
write
(
io
::
IO
,
d
::
Detector
;
version
=:
same
)
if
version
==
:
same
version
=
d
.
version
else
version
!=
d
.
version
&&
println
(
"Converting detector from format version
$
(d.version) to
$(version)
."
)
end
version
>
d
.
version
&&
@warn
"Target version is higher, missing parameters will be filled with reasonable default values."
if
version
>=
3
for
comment
in
d
.
comments
...
...
This diff is collapsed.
Click to expand it.
test/calibration.jl
+
0
−
1
View file @
b2ee04cc
...
...
@@ -26,7 +26,6 @@ end
@testset
"orientations"
begin
o
=
read
(
datapath
(
"calib"
,
"KM3NeT_00000133_D_1.0.0_00017397_00017496_1.orientations.root"
),
Orientations
)
@show
o
module_id
=
817589211
min_t
,
max_t
=
extrema
(
o
.
times
[
module_id
])
Δt
=
max_t
-
min_t
...
...
This diff is collapsed.
Click to expand it.
test/tools.jl
+
8
−
8
View file @
b2ee04cc
...
...
@@ -318,15 +318,15 @@ end
rbr
=
MCEventMatcher
(
f
)
event
,
mc_event
=
rbr
[
1
]
@
asser
t
756
==
length
(
event
.
snapshot_hits
)
@
asser
t
28
==
length
(
event
.
triggered_hits
)
@
asser
t
94
==
length
(
mc_event
.
mc_hits
)
@
asser
t
2
==
length
(
mc_event
.
mc_trks
)
@
tes
t
756
==
length
(
event
.
snapshot_hits
)
@
tes
t
28
==
length
(
event
.
triggered_hits
)
@
tes
t
94
==
length
(
mc_event
.
mc_hits
)
@
tes
t
2
==
length
(
mc_event
.
mc_trks
)
event
,
mc_event
=
rbr
[
end
]
@
asser
t
707
==
length
(
event
.
snapshot_hits
)
@
asser
t
27
==
length
(
event
.
triggered_hits
)
@
asser
t
111
==
length
(
mc_event
.
mc_hits
)
@
asser
t
4
==
length
(
mc_event
.
mc_trks
)
@
tes
t
707
==
length
(
event
.
snapshot_hits
)
@
tes
t
27
==
length
(
event
.
triggered_hits
)
@
tes
t
111
==
length
(
mc_event
.
mc_hits
)
@
tes
t
4
==
length
(
mc_event
.
mc_trks
)
end
...
...
This diff is collapsed.
Click to expand it.
Tamas Gal
@tgal
mentioned in commit
9709db52
·
4 months ago
mentioned in commit
9709db52
mentioned in commit 9709db526cc15c1a0dfc23df903a64f438ca10be
Toggle commit list
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