Skip to content

Commit

Permalink
Add more verbosity.
Browse files Browse the repository at this point in the history
  • Loading branch information
pslocum committed Feb 9, 2024
1 parent 01bcd13 commit 8292549
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Source/Kassiopeia/LMCCyclotronRadiationExtractor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,11 @@ namespace locust
{
// If the Locust sample index has not advanced yet, keep checking it.
tTriggerConfirm += 1;
LPROG(lmclog,"tTriggerConfirm index = " << tTriggerConfirm);
if ( ( tTriggerConfirm > fInterface->fTriggerConfirm - 3) && ( fSampleIndex < fInterface->fFastRecordLength ) )
{
LPROG(lmclog,"Checking the digitizer synchronization, at fast sample " << fSampleIndex);
LPROG(lmclog,"Checking the digitizer synchronization, tTriggerConfirm index = " << tTriggerConfirm);
LPROG(lmclog,"Checking the digitizer synchronization, at fast sample = " << fSampleIndex);
std::this_thread::sleep_for(std::chrono::milliseconds(10000));
if ( !(fSampleIndex < fInterface->fSampleIndex) )
{
Expand Down

0 comments on commit 8292549

Please sign in to comment.