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
7dbf24d5
Commit
7dbf24d5
authored
17 years ago
by
Martin Gels
Browse files
Options
Downloads
Patches
Plain Diff
BugID:1005
Modified position names and changed code of getting the port numbers.
parent
8356d02f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Appl/CEP/CS1/CS1_Interface/include/CS1_Interface/CS1_Parset.h
+7
-8
7 additions, 8 deletions
.../CEP/CS1/CS1_Interface/include/CS1_Interface/CS1_Parset.h
Appl/CEP/CS1/CS1_Interface/src/CS1_Parset.cc
+5
-24
5 additions, 24 deletions
Appl/CEP/CS1/CS1_Interface/src/CS1_Parset.cc
with
12 additions
and
32 deletions
Appl/CEP/CS1/CS1_Interface/include/CS1_Interface/CS1_Parset.h
+
7
−
8
View file @
7dbf24d5
...
...
@@ -62,8 +62,8 @@ public:
double
stopTime
()
const
;
uint32
nrStations
()
const
;
double
sampleRate
()
const
;
vector
<
double
>
p
hysicalPhaseCentra
s
()
const
;
vector
<
double
>
trackingP
haseCentr
a
s
()
const
;
vector
<
double
>
p
osition
s
()
const
;
vector
<
double
>
p
haseCent
e
rs
()
const
;
uint32
nrSubbandSamples
()
const
;
double
integrationTime
()
const
;
uint32
nrSamplesToBGLProc
()
const
;
...
...
@@ -82,7 +82,7 @@ public:
double
chanWidth
()
const
;
vector
<
string
>
delay_Ports
()
const
;
vector
<
string
>
getPortsOf
(
const
string
&
aKey
)
const
;
uint32
inputPortnr
(
const
string
&
aKey
)
const
;
string
inputPortnr
(
const
string
&
aKey
)
const
;
string
stationName
(
const
int
index
)
const
;
string
expandedArrayString
(
const
string
&
orgStr
)
const
;
...
...
@@ -91,9 +91,6 @@ public:
vector
<
double
>
itsStPositions
;
private
:
uint32
getStationIndex
(
const
string
&
aKey
)
const
;
void
addPosition
(
string
stName
);
};
...
...
@@ -109,9 +106,11 @@ inline double CS1_Parset::stopTime() const
return
to_time_t
(
time_from_string
(
getString
(
"Observation.stopTime"
)));
}
inline
uint32
CS1_Parset
::
inputPortnr
(
const
string
&
aKey
)
const
inline
string
CS1_Parset
::
inputPortnr
(
const
string
&
aKey
)
const
{
return
getUint32
(
"OLAP.firstInputPortnr"
)
+
getStationIndex
(
aKey
);
string
rst
=
getString
(
"PIC.Core."
+
aKey
+
".port"
);
int
index
=
rst
.
find
(
":"
);
return
rst
.
substr
(
index
+
1
,
4
);
}
inline
string
CS1_Parset
::
stationName
(
const
int
index
)
const
...
...
This diff is collapsed.
Click to expand it.
Appl/CEP/CS1/CS1_Interface/src/CS1_Parset.cc
+
5
−
24
View file @
7dbf24d5
...
...
@@ -42,21 +42,21 @@ CS1_Parset::~CS1_Parset()
{
}
vector
<
double
>
CS1_Parset
::
p
hysicalPhaseCentra
s
()
const
vector
<
double
>
CS1_Parset
::
p
osition
s
()
const
{
vector
<
string
>
stNames
=
getStringVector
(
"OLAP.storageStationNames"
);
vector
<
double
>
pos
,
list
;
for
(
uint
i
=
0
;
i
<
nrStations
();
i
++
)
{
pos
=
getDoubleVector
(
locateModule
(
stNames
[
i
])
+
stNames
[
i
]
+
".p
hysicalPhaseCentre
"
);
pos
=
getDoubleVector
(
"PIC.Core."
+
stNames
[
i
]
+
".p
osition
"
);
list
.
insert
(
list
.
end
(),
pos
.
begin
(),
pos
.
end
());
}
return
list
;
}
vector
<
double
>
CS1_Parset
::
trackingP
haseCentr
a
s
()
const
vector
<
double
>
CS1_Parset
::
p
haseCent
e
rs
()
const
{
vector
<
double
>
pos
,
list
;
vector
<
string
>
stNames
=
getStringVector
(
"OLAP.storageStationNames"
);
...
...
@@ -65,32 +65,13 @@ vector<double> CS1_Parset::trackingPhaseCentras() const
for
(
uint
i
=
0
;
i
<
nrStations
();
i
++
)
{
index
=
stNames
[
i
].
find
(
"_"
);
pos
=
getDoubleVector
(
locateModule
(
stNames
[
i
].
substr
(
0
,
index
))
+
stNames
[
i
].
substr
(
0
,
index
)
+
".
trackingP
haseCent
r
e"
);
pos
=
getDoubleVector
(
locateModule
(
stNames
[
i
].
substr
(
0
,
index
))
+
stNames
[
i
].
substr
(
0
,
index
)
+
".
p
haseCente
r
"
);
list
.
insert
(
list
.
end
(),
pos
.
begin
(),
pos
.
end
());
}
return
list
;
}
uint32
CS1_Parset
::
getStationIndex
(
const
string
&
aKey
)
const
{
int
pos
=
aKey
.
find
(
"_"
);
if
(
aKey
.
substr
(
pos
+
1
,
2
)
==
"us"
)
return
std
::
atoi
(
aKey
.
substr
(
aKey
.
size
()
-
1
,
1
).
c_str
());
else
if
(
aKey
.
substr
(
pos
+
1
,
6
)
==
"dipole"
)
{
if
(
aKey
.
size
()
<
14
)
return
std
::
atoi
(
aKey
.
substr
(
aKey
.
size
()
-
1
,
1
).
c_str
())
/
4
;
else
return
std
::
atoi
(
aKey
.
substr
(
aKey
.
size
()
-
2
,
2
).
c_str
())
/
4
;
}
cout
<<
"Index of "
<<
aKey
<<
"not found."
<<
endl
;
return
0
;
}
vector
<
double
>
CS1_Parset
::
refFreqs
()
const
{
vector
<
uint32
>
subbandIDs
=
getUint32Vector
(
"Observation.subbandList"
);
...
...
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