void DBtxt_AlgDSliceList_Far_FarBeam(void)
{
  AlgFactory &af = AlgFactory::GetInstance();
  AlgHandle alh = af.GetAlgHandle("AlgDSliceList_Far","FarBeam");
  AlgConfig &alg = alh.GetAlgConfig(); 

  alg.UnLockValues();
  alg.UnLockKeys();

  // Time gap between digits to form candidates slices.
  // Default value corresponds to 100 TDC ticks, the value
  // used by default for the far detector online trigger.
  
  // Thus, after doing this to IP spills,
  // you have data that looks just like FD 4/5 triggered data, but
  // with a perfect trigger.

  alg.Set("TimeGap",100. * 1.5625 * Munits::ns);

  alg.LockValues();
  alg.LockKeys();
}

