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
e992d050
Commit
e992d050
authored
11 years ago
by
Bas van der Tol
Browse files
Options
Downloads
Patches
Plain Diff
Task #5158: Add option antenna (baseline selection) to awimager.cc
parent
c139f774
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/Imager/LofarFT/src/awimager.cc
+7
-3
7 additions, 3 deletions
CEP/Imager/LofarFT/src/awimager.cc
with
7 additions
and
3 deletions
CEP/Imager/LofarFT/src/awimager.cc
+
7
−
3
View file @
e992d050
...
...
@@ -519,8 +519,11 @@ int main (Int argc, char** argv)
"If set to true, then find the optimal number of W-planes, given spheroid support, wmax and field of view."
,
"bool"
);
inputs
.
create
(
"ChanBlockSize"
,
"0"
,
"Channel block size. Use if you want to use a different CF per block of channels."
,
"int"
);
"Channel block size. Use if you want to use a different CF per block of channels."
,
"int"
);
inputs
.
create
(
"antenna"
,
""
,
"Baseline selection string."
,
"string"
);
// inputs.create ("FillFactor", "1",
// "Fraction of the data that will be selected from the selected MS. (don't use it yet)",
...
...
@@ -618,6 +621,7 @@ int main (Int argc, char** argv)
Bool
SingleGridMode
=
inputs
.
getBool
(
"SingleGridMode"
);
Bool
FindNWplanes
=
inputs
.
getBool
(
"FindNWplanes"
);
Int
ChanBlockSize
=
inputs
.
getInt
(
"ChanBlockSize"
);
String
antenna
=
inputs
.
getString
(
"antenna"
);
//Double FillFactor= 1.;//inputs.getDouble("FillFactor");
...
...
@@ -786,7 +790,7 @@ int main (Int argc, char** argv)
String
(),
// timerng
String
(),
// fieldnames
Vector
<
Int
>
(),
// antIndex
String
(),
// antnames
antenna
,
// antnames
String
(),
// spwstring
uvdist
,
// uvdist
String
(),
// scan
...
...
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