328 |
|
catch( std::exception& error ) |
329 |
|
{ |
330 |
|
// setTriggerThresholdsAsTightAsPossible() couldn't find thresholds so record |
331 |
< |
// a default for everything. |
331 |
> |
// -1 for everything. |
332 |
|
// Range based for loop gives me a warning because I don't use the thresholdName. |
333 |
< |
for( size_t index=0; index<thresholdNames.size(); ++index ) pProtobufEvent->add_threshold(100000); |
333 |
> |
for( size_t index=0; index<thresholdNames.size(); ++index ) pProtobufEvent->add_threshold(-1); |
334 |
|
} // end of try block that sets the trigger thresholds |
335 |
|
|
336 |
|
} // end of loop over triggers |