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
Merge requests
!35
Something went wrong on our end
DAQSummaryslice stream
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
DAQSummaryslice stream
DAQSummaryslice
into
main
Overview
0
Commits
1
Pipelines
0
Changes
4
Open
Tamas Gal
requested to merge
DAQSummaryslice
into
main
8 months ago
Overview
0
Commits
1
Pipelines
0
Changes
4
Expand
0
0
Merge request reports
Viewing commit
49e91906
Show latest version
4 files
+
49
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
49e91906
Create DAQSummaryslice object
· 49e91906
Manu Le Guirriec
authored
11 months ago
src/controlhost.jl
+
1
−
0
Options
@@ -100,6 +100,7 @@ struct CHClient{T}
end
CHTag
(
::
Type
{
T
})
where
T
=
error
(
"No controlhost tag defined for type '
$(T)
'"
)
CHTag
(
::
Type
{
DAQEvent
})
=
CHTag
(
"IO_EVT"
)
CHTag
(
::
Type
{
DAQSummaryslice
})
=
CHTag
(
"IO_SUM"
)
CHClient
(
ip
::
IPv4
,
port
::
Integer
,
tags
::
Vector
{
CHTag
})
=
CHClient
{
CHMessage
}(
ip
,
port
,
tags
)
CHClient
{
T
}(
ip
::
IPv4
,
port
::
Integer
)
where
T
=
CHClient
{
T
}(
ip
,
port
,
[
CHTag
(
T
)])
Base
.
eltype
(
::
CHClient
{
T
})
where
T
=
T
Loading