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

BugID: 826

CS1Hack.
Saving the name of the observation parsetfile so that it can be passed to
the python script we call during the creation of the parametersubsets.
parent e01ac5de
No related branches found
No related tags found
No related merge requests found
...@@ -111,6 +111,9 @@ private: ...@@ -111,6 +111,9 @@ private:
ProcRuler itsProcRuler; // Starts/stops all AP's ProcRuler itsProcRuler; // Starts/stops all AP's
uint16 itsNrOfProcs; // Nr of processes to manage. uint16 itsNrOfProcs; // Nr of processes to manage.
// TODO: REMOVE THIS CS1 HACK
string itsObsPSfilename; // name of observation parameterset.
}; };
// @} addgroup // @} addgroup
......
...@@ -263,7 +263,8 @@ void ApplController::createParSubsets() ...@@ -263,7 +263,8 @@ void ApplController::createParSubsets()
// by a python script, for final LOFAR we need to do this in SAS. // by a python script, for final LOFAR we need to do this in SAS.
if (procPrefix == "InputAppl.Transpose") { if (procPrefix == "InputAppl.Transpose") {
LOG_DEBUG("CS1_SPECIAL: calling prepare_CS1_InputSection.py"); LOG_DEBUG("CS1_SPECIAL: calling prepare_CS1_InputSection.py");
nrProcs = system("/opt/lofar/bin/prepare_CS1_InputSection.py")/256; string command("/opt/lofar/bin/prepare_CS1_InputSection.py --parsetfile " + itsObsPSfilename);
nrProcs = system(command.c_str())/256;
LOG_DEBUG_STR("nrOfProcesses calculated by script = " << nrProcs); LOG_DEBUG_STR("nrOfProcesses calculated by script = " << nrProcs);
} }
...@@ -438,6 +439,9 @@ void ApplController::startCmdState() ...@@ -438,6 +439,9 @@ void ApplController::startCmdState()
case StateInitController: case StateInitController:
// read in the Application Parameter file // read in the Application Parameter file
itsObsParamSet->adoptFile(itsCurACMsg->getOptions());// May throw itsObsParamSet->adoptFile(itsCurACMsg->getOptions());// May throw
// CS1_HACK save name of parameterfile
itsObsPSfilename = itsCurACMsg->getOptions();
LOG_DEBUG_STR("Observation parsetfilename=" << itsObsPSfilename);
// StateEngine needs to know the timeout values for the states // StateEngine needs to know the timeout values for the states
itsStateEngine->init(itsObsParamSet); itsStateEngine->init(itsObsParamSet);
itsStateEngine->ready(); // report this state is ready. itsStateEngine->ready(); // report this state is ready.
...@@ -454,7 +458,7 @@ void ApplController::startCmdState() ...@@ -454,7 +458,7 @@ void ApplController::startCmdState()
// the incomming acks decide the result of the start action // the incomming acks decide the result of the start action
break; break;
case StateKillAppl: case StateKillAppl:
sleep (10); // give procs some extra time sleep (5); // give procs some extra time
itsProcRuler.stopAll(); itsProcRuler.stopAll();
itsStateEngine->ready(); // report this state is ready. itsStateEngine->ready(); // report this state is ready.
break; break;
......
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