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
8af9be5d
Commit
8af9be5d
authored
12 years ago
by
Ruud Overeem
Browse files
Options
Downloads
Patches
Plain Diff
Task #1418: Writing start and stoptime in a different format.
parent
73989d6d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
MAC/APL/MainCU/src/MACScheduler/ObsClaimer.cc
+2
-2
2 additions, 2 deletions
MAC/APL/MainCU/src/MACScheduler/ObsClaimer.cc
with
2 additions
and
2 deletions
MAC/APL/MainCU/src/MACScheduler/ObsClaimer.cc
+
2
−
2
View file @
8af9be5d
...
...
@@ -237,8 +237,8 @@ GCFEvent::TResult ObsClaimer::preparePVSS_state (GCFEvent& event, GCFPortInterfa
RTDBPropertySet
*
theObsPS
=
itsCurrentObs
->
second
->
propSet
;
theObsPS
->
setValue
(
PN_OBS_RUN_STATE
,
GCFPVString
(
""
),
0.0
,
false
);
theObsPS
->
setValue
(
PN_OBS_START_TIME
,
GCFPVString
(
to_
simple
_string
(
from_time_t
(
theObs
.
startTime
))),
0.0
,
false
);
theObsPS
->
setValue
(
PN_OBS_STOP_TIME
,
GCFPVString
(
to_
simple
_string
(
from_time_t
(
theObs
.
stopTime
))),
0.0
,
false
);
theObsPS
->
setValue
(
PN_OBS_START_TIME
,
GCFPVString
(
to_
iso_extended
_string
(
from_time_t
(
theObs
.
startTime
))),
0.0
,
false
);
theObsPS
->
setValue
(
PN_OBS_STOP_TIME
,
GCFPVString
(
to_
iso_extended
_string
(
from_time_t
(
theObs
.
stopTime
))),
0.0
,
false
);
theObsPS
->
setValue
(
PN_OBS_BAND_FILTER
,
GCFPVString
(
theObs
.
filter
),
0.0
,
false
);
theObsPS
->
setValue
(
PN_OBS_NYQUISTZONE
,
GCFPVInteger
(
theObs
.
nyquistZone
),
0.0
,
false
);
theObsPS
->
setValue
(
PN_OBS_ANTENNA_ARRAY
,
GCFPVString
(
theObs
.
antennaArray
),
0.0
,
false
);
...
...
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