File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments