Skip to content

Commit 9da57e1

Browse files
author
Sawan Sawan
committed
added sel8 configurable, to remove it during MC checks
1 parent fe06647 commit 9da57e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PWGLF/Tasks/Resonances/kstarqa.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ struct Kstarqa {
7878
struct : ConfigurableGroup {
7979
// Configurables for event selections
8080
Configurable<bool> isINELgt0{"isINELgt0", true, "INEL>0 selection"};
81+
Configurable<bool> isSel8{"isSel8", false, "Event selection sel8"};
8182
Configurable<bool> isTriggerTVX{"isTriggerTVX", false, "TriggerTVX"};
8283
Configurable<bool> isGoodZvtxFT0vsPV{"isGoodZvtxFT0vsPV", false, "IsGoodZvtxFT0vsPV"};
8384
Configurable<bool> isApplyOccCut{"isApplyOccCut", true, "Apply occupancy cut"};
@@ -446,7 +447,7 @@ struct Kstarqa {
446447
if (fillHist)
447448
rEventSelection.fill(HIST("hEventCut"), 1);
448449

449-
if (!collision.sel8())
450+
if (selectionConfig.isSel8 && !collision.sel8())
450451
return false;
451452
if (fillHist)
452453
rEventSelection.fill(HIST("hEventCut"), 2);

0 commit comments

Comments
 (0)