Fix typo in analyzed file collection

This commit is contained in:
Gordon McCann 2023-01-16 11:58:19 -05:00
parent a264eea63c
commit e9c50331f7

View File

@ -130,9 +130,11 @@ namespace EventBuilder {
std::vector<std::string> list;
std::string temp;
for(int run=runMin; run<=runMax; run++)
{
temp = GetAnalyzedRun(run);
if(!temp.empty())
list.push_back(temp);
}
return list;
}