FACT++  1.0
void ConnectionDimDrive::UpdateSource ( const Time t,
const string &  name,
bool  tracking 
)
inlinevirtual

Reimplemented from ConnectionDrive.

Definition at line 1481 of file drivectrl.cc.

1482  {
1483  vector<char> dat(5*sizeof(double)+31, 0);
1484  strncpy(dat.data()+5*sizeof(double), name.c_str(), 30);
1485 
1486  fQueueSource.emplace(t, dat, tracking);
1487  }
Queue< tuple< Time, vector< char >, bool > > fQueueSource
Definition: drivectrl.cc:1411