You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Common/TableProducer/eventSelection.cxx
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ struct BcSelectionTask {
99
99
if (metadataInfo.isRun3()) {
100
100
doprocessRun3.value = true;
101
101
} else {
102
-
doprocessRun2.value = false;
102
+
doprocessRun2.value = true;
103
103
}
104
104
}
105
105
@@ -583,7 +583,7 @@ struct EventSelectionTask {
583
583
if (metadataInfo.isRun3()) {
584
584
doprocessRun3.value = true;
585
585
} else {
586
-
doprocessRun2.value = false;
586
+
doprocessRun2.value = true;
587
587
}
588
588
}
589
589
if (isMC == -1) {
@@ -1184,10 +1184,12 @@ struct LumiTask {
1184
1184
1185
1185
voidinit(InitContext&)
1186
1186
{
1187
-
if (metadataInfo.isFullyDefined() && !doprocessRun3) { // Check if the metadata is initialized (only if not forced from the workflow configuration)
1187
+
if (metadataInfo.isFullyDefined() && !doprocessRun3 && !doprocessRun3) { // Check if the metadata is initialized (only if not forced from the workflow configuration)
1188
1188
LOG(info) << "Autosetting the processing mode (Run2 or Run3) based on metadata";
0 commit comments