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
8379fe78
Commit
8379fe78
authored
5 years ago
by
Thomas Jürges
Browse files
Options
Downloads
Patches
Plain Diff
SW-610
: Add std:: where missing
parent
04f45c30
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CEP/Calibration/BBSTools/include/BBSTools/addUV2MS.h
+11
-10
11 additions, 10 deletions
CEP/Calibration/BBSTools/include/BBSTools/addUV2MS.h
with
11 additions
and
10 deletions
CEP/Calibration/BBSTools/include/BBSTools/addUV2MS.h
+
11
−
10
View file @
8379fe78
...
...
@@ -25,15 +25,16 @@
#ifndef LOFAR_BBSTOOLS_ADDUV2MS_H
#define LOFAR_BBSTOOLS_ADDUV2MS_H
//#include <vector>
#include
<vector>
#include
<string>
#include
<casacore/casa/Arrays/Vector.h>
#include
<synthesis/MeasurementEquations/Imager.h>
// casarest ft()
void
parseOptions
(
const
vector
<
string
>
&
arguments
,
string
&
msName
,
void
parseOptions
(
const
std
::
vector
<
string
>
&
arguments
,
std
::
string
&
msName
,
casacore
::
Vector
<
casacore
::
String
>
&
patchNames
,
unsigned
int
&
nwplanes
);
casacore
::
MDirection
getPatchDirection
(
const
string
&
patchName
);
casacore
::
MDirection
getPatchDirection
(
const
std
::
string
&
patchName
);
void
addDirectionKeyword
(
casacore
::
Table
LofarMS
,
const
std
::
string
&
patchName
);
void
addChannelSelectionKeyword
(
casacore
::
Table
&
LofarTable
,
...
...
@@ -48,7 +49,7 @@ casacore::Double getMSReffreq(const casacore::MeasurementSet &ms);
casacore
::
Double
getMSChanwidth
(
const
casacore
::
MeasurementSet
&
ms
);
map
<
string
,
double
>
patchFrequency
(
casacore
::
MeasurementSet
&
ms
,
const
casacore
::
Vector
<
casacore
::
String
>
&
patchNames
);
bool
validModelImage
(
const
casacore
::
String
&
imageName
,
string
&
error
);
bool
validModelImage
(
const
casacore
::
String
&
imageName
,
std
::
string
&
error
);
unsigned
int
makeTempImages
(
const
casacore
::
Vector
<
casacore
::
String
>
&
patchNames
,
const
std
::
string
&
prefix
=
"tmp"
);
unsigned
int
removeTempImages
(
const
casacore
::
Vector
<
casacore
::
String
>
&
patchNames
,
...
...
@@ -57,18 +58,18 @@ double updateFrequency(const std::string &imageName,
double
reffreq
);
void
restoreFrequency
(
const
std
::
map
<
std
::
string
,
double
>
&
refFrequencies
);
void
getImageOptions
(
const
string
&
patchName
,
void
getImageOptions
(
const
std
::
string
&
patchName
,
unsigned
int
&
imSizeX
,
unsigned
int
&
imSizeY
,
casacore
::
Quantity
&
cellSizeX
,
casacore
::
Quantity
&
cellSizeY
,
unsigned
int
&
nchan
,
unsigned
int
&
npol
,
string
&
stokes
);
unsigned
int
&
nchan
,
unsigned
int
&
npol
,
std
::
string
&
stokes
);
//--------------------------------------------------------------
// Function declarations (debug functions)
//
casacore
::
Vector
<
casacore
::
String
>
getColumnNames
(
const
casacore
::
Table
&
table
);
void
showColumnNames
(
casacore
::
Table
&
table
);
void
usage
(
const
string
&
);
void
usage
(
const
std
::
string
&
);
void
showVector
(
const
vector
<
string
>
&
v
,
const
string
&
key
=
""
);
void
showVector
(
const
std
::
vector
<
string
>
&
v
,
const
std
::
string
&
key
=
""
);
#endif
\ No newline at end of file
#endif
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