Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
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
RadioObservatory
LOFAR
Commits
8d80a03a
Commit
8d80a03a
authored
7 years ago
by
Adriaan Renting
Browse files
Options
Downloads
Patches
Plain Diff
SW-227
: Cleaner code for generating the feedback version number.
parent
7de24f88
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
RTCP/Cobalt/CoInterface/src/LTAFeedback.h
+5
-5
5 additions, 5 deletions
RTCP/Cobalt/CoInterface/src/LTAFeedback.h
SAS/XSD/SAS/LofarBase.xsd
+3
-0
3 additions, 0 deletions
SAS/XSD/SAS/LofarBase.xsd
with
8 additions
and
5 deletions
RTCP/Cobalt/CoInterface/src/LTAFeedback.h
+
5
−
5
View file @
8d80a03a
...
...
@@ -60,11 +60,11 @@ namespace LOFAR
// Package (sip) for the LTA.
// \see http://proposal.astron.nl/schemas/LTA-SIP.xsd
ParameterSet
allFeedback
()
const
;
const
int
major_version
=
3
;
const
int
minor_version
=
1
;
const
int
patch_number
=
0
;
const
std
::
string
feedback_version
=
st
d
::
str
(
boost
::
format
(
"%02d.%02d.%02d"
)
%
major_version
%
minor_version
%
patch_number
);
static
const
int
major_version
=
3
;
static
const
int
minor_version
=
1
;
static
const
int
patch_number
=
0
;
static
const
std
::
string
feedback_version
=
boo
st
::
str
(
boost
::
format
(
"%02d.%02d.%02d"
)
%
major_version
%
minor_version
%
patch_number
);
private:
const
ObservationSettings
settings
;
...
...
This diff is collapsed.
Click to expand it.
SAS/XSD/SAS/LofarBase.xsd
+
3
−
0
View file @
8d80a03a
...
...
@@ -405,6 +405,9 @@
</xsd:sequence>
</xsd:complexType>
<!-- Calibration Pipeline related declarations -->
<!-- FIXME: The Calibration Pipeline should have BbsParameters while the Averaging Pipeline does not, but for backward
compatibility with MoM it is currently not defined that way, making them identical. When support for MoM 3 can be dropped
this should be fixed. -->
<xsd:complexType
name=
"CalibrationPipeline"
>
<xsd:complexContent>
<xsd:extension
base=
"AveragingPipeline"
>
<!-- Untested if this works properly -->
...
...
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