File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ struct v0selector {
9999 Configurable<float > cutAPOmegaDown3{" cutAPOmegaDown3" , 0.16 , " cutAPOmegaDown3" };
100100 Configurable<float > cutAlphaOmegaHigh{" cutAlphaOmegaHigh" , 0.358 , " cutAlphaOmegaHigh" };
101101 Configurable<float > cutAlphaOmegaLow{" cutAlphaOmegaLow" , 0 ., " cutAlphaOmegaLow" };
102+ Configurable<float > cutQTOmegaLowOuterArc{" cutQTOmegaLowOuterArc" , 0.14 , " cutQTOmegaLowOuterArc" };
102103 Configurable<float > cutMassOmegaHigh{" cutMassOmegaHigh" , 1.677 , " cutMassOmegaHigh" };
103104 Configurable<float > cutMassOmegaLow{" cutMassOmegaLow" , 1.667 , " cutMassOmegaLow" };
104105 Configurable<float > cutMassCascV0Low{" cutMassCascV0Low" , 1.110 , " cutMassCascV0Low" };
@@ -189,6 +190,10 @@ struct v0selector {
189190 return kUndef ;
190191 }
191192
193+ if (alpha > cutAPOmegaUp2 && qt < cutQTOmegaLowOuterArc) {
194+ return kUndef ;
195+ }
196+
192197 if (isAlphaPos) {
193198 return kOmega ;
194199 } else {
You can’t perform that action at this time.
0 commit comments