Skip to content
Snippets Groups Projects
Commit ff472d10 authored by zwart's avatar zwart
Browse files

BugID: 719

Fixed order of dimensions in DH_RSP
parent eb623f16
No related branches found
No related tags found
No related merge requests found
......@@ -77,8 +77,8 @@ namespace LOFAR
vector<DimDef> vdd;
// there is one station per dataholder
vdd.push_back(DimDef("Stations", 1));
vdd.push_back(DimDef("Times", itsNTimes));
vdd.push_back(DimDef("Subbands", itsNSubbands));
vdd.push_back(DimDef("Times", itsNTimes));
vdd.push_back(DimDef("Polarisations", itsNoPolarisations));
itsMatrix = new RectMatrix<BufferType> (vdd);
......
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