Skip to content
Snippets Groups Projects
Commit 2b99f30f authored by Ruud Overeem's avatar Ruud Overeem
Browse files

Bug 1000: Uses new Observation class with datamodel that support (multiple) pointings.

parent 880061f5
No related branches found
No related tags found
No related merge requests found
......@@ -268,9 +268,9 @@ GCFEvent::TResult ObsClaimer::preparePVSS_state (GCFEvent& event, GCFPortInterfa
os.clear();
writeVector(os, theObs.beams[i].beamlets);
beamletArr.push_back (new GCFPVString(os.str()));
angle1Arr.push_back (new GCFPVDouble(theObs.beams[i].angle1));
angle2Arr.push_back (new GCFPVDouble(theObs.beams[i].angle2));
dirTypesArr.push_back (new GCFPVString(theObs.beams[i].directionType));
angle1Arr.push_back (new GCFPVDouble(theObs.beams[i].pointings[0].angle1));
angle2Arr.push_back (new GCFPVDouble(theObs.beams[i].pointings[0].angle2));
dirTypesArr.push_back (new GCFPVString(theObs.beams[i].pointings[0].directionType));
}
// Finally we can write those value to PVSS as well.
......
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