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
b371e63b
Verified
Commit
b371e63b
authored
2 years ago
by
Tamas Gal
Browse files
Options
Downloads
Patches
Plain Diff
Fix typos
parent
256b3e1c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+1
-1
1 addition, 1 deletion
README.md
test/acoustics.jl
+3
-3
3 additions, 3 deletions
test/acoustics.jl
with
4 additions
and
4 deletions
README.md
+
1
−
1
View file @
b371e63b
...
...
@@ -9,7 +9,7 @@ to deal with dataformats used in KM3NeT.
## Installation
`KM3
Acoustics
.jl`
is not an officially registered Julia package but it's
`KM3
io
.jl`
is not an officially registered Julia package but it's
available via the KM3NeT Julia registry. To add the KM3NeT Julia registry,
execute once:
...
...
This diff is collapsed.
Click to expand it.
test/acoustics.jl
+
3
−
3
View file @
b371e63b
...
...
@@ -16,17 +16,17 @@ const SAMPLES_DIR = joinpath(@__DIR__, "samples")
@test
hydrophoneenabled
(
mod
)
@test
piezoenabled
(
mod
)
status
=
1
<<
KM3
Acoustics
.
MODULE_STATUS
.
PIEZO_DISABLE
status
=
1
<<
KM3
io
.
MODULE_STATUS
.
PIEZO_DISABLE
mod
=
DetectorModule
(
1
,
UTMPosition
(
0
,
0
,
0
),
Location
(
0
,
0
),
0
,
PMT
[],
missing
,
status
,
0
)
@test
!
piezoenabled
(
mod
)
@test
hydrophoneenabled
(
mod
)
status
=
1
<<
KM3
Acoustics
.
MODULE_STATUS
.
HYDROPHONE_DISABLE
status
=
1
<<
KM3
io
.
MODULE_STATUS
.
HYDROPHONE_DISABLE
mod
=
DetectorModule
(
1
,
UTMPosition
(
0
,
0
,
0
),
Location
(
0
,
0
),
0
,
PMT
[],
missing
,
status
,
0
)
@test
piezoenabled
(
mod
)
@test
!
hydrophoneenabled
(
mod
)
status
=
(
1
<<
KM3
Acoustics
.
MODULE_STATUS
.
HYDROPHONE_DISABLE
)
|
(
1
<<
KM3
Acoustics
.
MODULE_STATUS
.
PIEZO_DISABLE
)
status
=
(
1
<<
KM3
io
.
MODULE_STATUS
.
HYDROPHONE_DISABLE
)
|
(
1
<<
KM3
io
.
MODULE_STATUS
.
PIEZO_DISABLE
)
mod
=
DetectorModule
(
1
,
UTMPosition
(
0
,
0
,
0
),
Location
(
0
,
0
),
0
,
PMT
[],
missing
,
status
,
0
)
@test
!
piezoenabled
(
mod
)
@test
!
hydrophoneenabled
(
mod
)
...
...
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