void DBtxt_AlgDigitList_nocalib(void)
{

// This file must be named "DBtxt_AlgDigitList_nocalib.C"
// to set the "nocalib" parameters for Algorithm "AlgDigitList".
// This file can become a DB cascader override "text file" when
// the default AlgConfig tables appear in the offline database

// Get the AlgConfig object
   AlgFactory &af = AlgFactory::GetInstance();
   AlgHandle ah = af.GetAlgHandle("AlgDigitList", "nocalib");
   AlgConfig &acd = ah.GetAlgConfig();

// Set the AlgConfig parameters
   acd.UnLockValues();
   acd.Set("DigitAlgorithm", "AlgDigit");
   acd.Set("DigitAlgConfig", "nocalib");

   acd.LockValues();
   acd.LockKeys();
}
