FACT++  1.0
void ConnectionDimDrive::UpdateSource ( const Time t,
const array< double, 5 > &  arr,
const string &  name = "" 
)
inlinevirtual

Reimplemented from ConnectionDrive.

Definition at line 1489 of file drivectrl.cc.

1490  {
1491  vector<char> dat(5*sizeof(double)+31, 0);
1492  memcpy(dat.data(), arr.data(), 5*sizeof(double));
1493  strncpy(dat.data()+5*sizeof(double), name.c_str(), 30);
1494 
1495  fQueueSource.emplace(t, dat, true);
1496  }
Queue< tuple< Time, vector< char >, bool > > fQueueSource
Definition: drivectrl.cc:1411