Skip to content
Snippets Groups Projects
Commit 23bdefe8 authored by Tammo Jan Dijkema's avatar Tammo Jan Dijkema
Browse files

Task #8617: simplify call to Slice(r)

parent a8daf080
No related branches found
No related tags found
No related merge requests found
...@@ -723,10 +723,8 @@ void MeasurementAIPS::initDimensions() ...@@ -723,10 +723,8 @@ void MeasurementAIPS::initDimensions()
// Check that channels have no gaps and are evenly spaced // Check that channels have no gaps and are evenly spaced
// (this is not prevented by the MS 2.0 standard). // (this is not prevented by the MS 2.0 standard).
if (frequency.nelements()>1) { if (frequency.nelements()>1) {
Vector<Double> upFreq = frequency(Slicer(IPosition(1,1), Vector<Double> upFreq = frequency(Slice(1,frequency.nelements()-1));
IPosition(1,frequency.nelements()-1))); Vector<Double> lowFreq = frequency(Slice(0,frequency.nelements()-1));
Vector<Double> lowFreq = frequency(Slicer(IPosition(1,0),
IPosition(1,frequency.nelements()-1)));
Double freqstep0=upFreq(0)-lowFreq(0); Double freqstep0=upFreq(0)-lowFreq(0);
ASSERTSTR(allEQ(upFreq-lowFreq,freqstep0), ASSERTSTR(allEQ(upFreq-lowFreq,freqstep0),
"Channels are not evenly spaced. This is not supported."); "Channels are not evenly spaced. This is not supported.");
......
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