Skip to content
Snippets Groups Projects
Commit 7dfef50b authored by Whitney Armstrong's avatar Whitney Armstrong
Browse files

modified: THcHitList.cxx

parent 12a6cef3
No related branches found
No related tags found
No related merge requests found
...@@ -504,8 +504,11 @@ Int_t THcHitList::DecodeToHitList( const THaEvData& evdata, Bool_t suppresswarni ...@@ -504,8 +504,11 @@ Int_t THcHitList::DecodeToHitList( const THaEvData& evdata, Bool_t suppresswarni
map<Int_t, Int_t>::iterator it; map<Int_t, Int_t>::iterator it;
for(it=fTrigTimeShiftMap.begin(); it!=fTrigTimeShiftMap.end(); it++) { for(it=fTrigTimeShiftMap.begin(); it!=fTrigTimeShiftMap.end(); it++) {
if(it->second < -3 || it->second > 3) { if(it->second < -3 || it->second > 3) {
cout << "Big ADC Trigger Time Shift, ROC " << fTICrate << endl;
cout << it->first << " " << it->second << endl; _hit_logger->warn("Big ADC Trigger Time Shift, ROC {}", fTICrate);
_hit_logger->warn(" {} {}", it->first, it->second);
//cout << "Big ADC Trigger Time Shift, ROC " << fTICrate << endl;
//cout << it->first << " " << it->second << endl;
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment