Skip to content
Snippets Groups Projects
Commit fcb27a80 authored by Jan David Mol's avatar Jan David Mol
Browse files

bug 1362: MSNUMBER -> OBSID

parent b0296417
No related branches found
No related tags found
No related merge requests found
......@@ -202,7 +202,7 @@ string Parset::constructBeamFormedFilename( const string &mask, unsigned beam, u
replace_all(name, "${MINUTES}", splitStartTime[4]);
replace_all(name, "${SECONDS}", splitStartTime[5]);
replace_all(name, "${MSNUMBER}", str(format("%05u") % observationID()));
replace_all(name, "${OBSID}", str(format("%05u") % observationID()));
//replace_all(name, "${SAP}", str(format("%02u") % subbandToSAPmapping()[beamnr])); // station beams not supported yet
replace_all(name, "${PART}", str(format("%03u") % file));
replace_all(name, "${BEAM}", str(format("%03u") % beam));
......@@ -228,7 +228,7 @@ string Parset::constructSubbandFilename( const string &mask, unsigned subband )
replace_all(name, "${MINUTES}", splitStartTime[4]);
replace_all(name, "${SECONDS}", splitStartTime[5]);
replace_all(name, "${MSNUMBER}", str(format("%05u") % observationID()));
replace_all(name, "${OBSID}", str(format("%05u") % observationID()));
replace_all(name, "${SAP}", str(format("%02u") % subbandToSAPmapping()[subband]));
replace_all(name, "${SUBBAND}", str(format("%03u") % subband));
......
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