Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion EventFilter/Utilities/src/FedRawDataInputSource.cc
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ void FedRawDataInputSource::readSupervisor() {
//look at last LS file on disk to start from that lumisection (only within first 100 LS)
unsigned int lsToStart = daqDirector_->getLumisectionToStart();

for (unsigned int nextLS = lsToStart; nextLS <= ls; nextLS++) {
for (unsigned int nextLS = std::min(lsToStart, ls); nextLS <= ls; nextLS++) {
std::unique_ptr<InputFile> inf(new InputFile(evf::EvFDaqDirector::newLumi, nextLS));
fileQueue_.push(std::move(inf));
}
Expand Down