Skip to content
Snippets Groups Projects
Commit 8d80a03a authored by Adriaan Renting's avatar Adriaan Renting
Browse files

SW-227: Cleaner code for generating the feedback version number.

parent 7de24f88
No related branches found
No related tags found
No related merge requests found
......@@ -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 = std::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 = boost::str(boost::format("%02d.%02d.%02d")
% major_version % minor_version % patch_number);
private:
const ObservationSettings settings;
......
......@@ -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 -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment