Skip to content

Commit

Permalink
DPL Analysis: make sure additional AOD origins are not skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
aalkin authored and andreasmolander committed Apr 12, 2024
1 parent a14bccc commit 4b2d2c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Framework/Core/src/CommonDataProcessors.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
#include "Framework/RateLimiter.h"
#include "Framework/Plugins.h"
#include "Framework/DeviceSpec.h"
#include "WorkflowHelpers.h"
#include <Monitoring/Monitoring.h>

#include "TFile.h"
Expand Down Expand Up @@ -370,8 +371,7 @@ DataProcessorSpec
}

// skip non-AOD refs
if (!DataSpecUtils::partialMatch(*ref.spec, header::DataOrigin("AOD")) &&
!DataSpecUtils::partialMatch(*ref.spec, header::DataOrigin("DYN"))) {
if (!DataSpecUtils::partialMatch(*ref.spec, writableAODOrigins)) {
continue;
}
startTime = DataRefUtils::getHeader<DataProcessingHeader*>(ref)->startTime;
Expand Down

0 comments on commit 4b2d2c1

Please sign in to comment.