FACT++  1.0
int StateMachineMCP::Execute ( )
inlineprivatevirtual

Is called continously to execute actions in the current state.

This is what the state machine is doing in a certain state continously. In an idle state this might just be doing nothing.

In the tracking state of the drive system this might be sending new command values to the drive based on its current position.

The current state of the state machine can be accessed by GetCurrentState()

Returns
Usually it should just return the current state. However, sometimes execution might lead to a new state, e.g. when a hardware error is detected. In this case a new state can be returned to put the state machine into a different state. Note, that the function is responsible of doing all actions connected with the state change itself. If not overwritten it returns the current status.

Reimplemented from StateMachineImp.

Definition at line 314 of file mcp.cc.

References MCP::State::kConfigured, FTM::State::kConfigured1, MCP::State::kConfiguring1, MCP::State::kConfiguring2, MCP::State::kConfiguring3, RateControl::State::kConnected, MCP::State::kIdle, RateControl::State::kSettingGlobalThreshold, MCP::State::kTakingData, MCP::State::kTriggerOn, FTM::State::kTriggerOn, Dim::SendCommandNB(), and DimState::state().

315  {
316  // ========================================================
317 
319  {
322 
323  Dim::SendCommandNB("FTM_CONTROL/CONFIGURE", fRunType);
324  Message("Configuring Trigger (FTM)");
325 
328  }
329 
330  // --------------------------------------------------------
331 
333  {
335  fDimLog.state()<30 || fDimLog.state()>0xff ||
338 
339  // For calibration, ratecontrol will globally set all threshold
340  // to make sure that does not interfer with the configuration,
341  // it is only done when the ftm reports Configured
342  Dim::SendCommandNB("RATE_CONTROL/CALIBRATE_RUN", fRunType);
343  Message("Starting Rate Control");
344 
345  ConfigureFAD();
346 
347  fFadTimeout = Time();
348 
351  }
352 
353  // --------------------------------------------------------
354 
356  {
357  /*
358  // If everything is configured but the FADs
359  // we run into a timeout and some FAD need to be reset
360  // then we start an automatic crate reset
361  if (fDimFTM.state() == FTM::State::kConfigured &&
362  fDimFAD.state() != FAD::State::kConfigured &&
363  //fDimRC.state() > RateControl::State::kSettingGlobalThreshold &&
364  fFadTimeout+boost::posix_time::seconds(15)<Time() &&
365  count(fFadNeedsReset.begin(), fFadNeedsReset.end(), true)>0)
366  {
367  Update(MCP::State::kCrateReset0);
368  return MCP::State::kCrateReset0;
369  }
370  */
371  // If something is not yet properly configured: keep state
376 
377  // Note that before the trigger is started, the ratecontrol
378  // must not be InProgress. In rare cases there is interference.
379  Dim::SendCommandNB("FTM_CONTROL/START_TRIGGER");
380  Message("Starting Trigger (FTM)");
381 
384  }
385 
386  // --------------------------------------------------------
387 
389  {
392 
394  return MCP::State::kTriggerOn;
395  }
396 
397  // --------------------------------------------------------
398 
400  {
402  {
404  return MCP::State::kIdle;
405  }
406 
407  if (fDimFAD.state() != FAD::State::kRunInProgress)
408  return MCP::State::kTriggerOn;
409 
412  }
413 
414  // --------------------------------------------------------
415 
417  {
418  if (/*fDimFTM.state()==FTM::State::kTriggerOn &&*/
419  fDimFAD.state()==FAD::State::kRunInProgress)
421 
423  return MCP::State::kIdle;
424  }
425 
426  // ========================================================
427  /*
428  if (GetCurrentState()==MCP::State::kCrateReset0)
429  {
430  static const struct Data { int32_t id; char on; } __attribute__((__packed__)) d = { -1, 0 };
431 
432  Dim::SendCommandNB("FTM_CONTROL/ENABLE_FTU", &d, sizeof(Data));
433 
434  fFadCratesForReset = fFadNeedsReset;
435  fFadBoardsForConnection = fFadConnected;
436 
437  for (int c=0; c<4; c++)
438  if (fFadNeedsReset[c])
439  for (int b=0; b<10; b++)
440  Dim::SendCommandNB("FAD_CONTROL/DISCONNECT", uint16_t(c*10+b));
441 
442  fNumReset++;
443 
444  Update(MCP::State::kCrateReset1);
445  return MCP::State::kCrateReset1;
446  }
447 
448  // --------------------------------------------------------
449 
450  if (GetCurrentState()==MCP::State::kCrateReset1)
451  {
452  if (fNumConnectedFtu>0 || count(fFadNeedsReset.begin(), fFadNeedsReset.end(), true)>0)
453  return MCP::State::kCrateReset1;
454 
455  for (int i=0; i<4; i++)
456  if (fFadCratesForReset[i])
457  Dim::SendCommandNB("FAD_CONTROL/RESET_CRATE", uint16_t(i));
458 
459  fFadTimeout = Time();
460 
461  Update(MCP::State::kCrateReset2);
462  return MCP::State::kCrateReset2;
463  }
464 
465  // --------------------------------------------------------
466 
467  if (GetCurrentState()==MCP::State::kCrateReset2)
468  {
469  if (fFadTimeout+boost::posix_time::seconds(45)>Time())
470  return MCP::State::kCrateReset2;
471 
472  static const struct Data { int32_t id; char on; } __attribute__((__packed__)) d = { -1, 1 };
473 
474  Dim::SendCommandNB("FTM_CONTROL/ENABLE_FTU", &d, sizeof(Data));
475 
476  for (int c=0; c<4; c++)
477  if (fFadCratesForReset[c])
478  for (int b=0; b<10; b++)
479  if (fFadBoardsForConnection[c*10+b])
480  Dim::SendCommandNB("FAD_CONTROL/CONNECT", uint16_t(c*10+b));
481 
482  Update(MCP::State::kCrateReset3);
483  return MCP::State::kCrateReset3;
484  }
485 
486  // --------------------------------------------------------
487 
488  if (GetCurrentState()==MCP::State::kCrateReset3)
489  {
490  if (fNumConnectedFtu<40 || fFadBoardsForConnection!=fFadConnected)
491  return MCP::State::kCrateReset3;
492 
493  if (count(fFadNeedsReset.begin(), fFadNeedsReset.end(), true)>0 && fNumReset<6)
494  {
495  Update(MCP::State::kCrateReset0);
496  return MCP::State::kCrateReset0;
497  }
498 
499  // restart configuration
500  Update(MCP::State::kConfiguring1);
501  return MCP::State::kConfiguring1;
502  }
503  */
504  // ========================================================
505 
506  return GetCurrentState();
507  }
int GetCurrentState() const
return the current state of the machine
string fRunType
Definition: mcp.cc:182
Adds some functionality to boost::posix_time::ptime for our needs.
Definition: Time.h:30
DimDescribedState fDimFTM
Definition: mcp.cc:46
const int32_t & state() const
Definition: DimState.h:80
Time fFadTimeout
Definition: mcp.cc:53
DimDescribedState fDimFAD
Definition: mcp.cc:47
void Update(int newstate)
Definition: mcp.cc:270
void SendCommandNB(const std::string &command)
Definition: Dim.h:30
void ConfigureFAD()
Definition: mcp.cc:279
DimDescribedState fDimLog
Definition: mcp.cc:48
int Message(const std::string &str)
Definition: MessageImp.h:46
DimDescribedState fDimRC
Definition: mcp.cc:49

+ Here is the call graph for this function: