Skip to content

Commit 640adca

Browse files
committed
add lower-value qT cut for Omega near to Xi location
1 parent 0346322 commit 640adca

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

PWGDQ/Tasks/v0selector.cxx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)