Skip to content

Commit 9ff65bb

Browse files
authored
Add high pt cut on mcgen
1 parent 62abacd commit 9ff65bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PWGHF/HFL/TableProducer/electronSelectionWithTpcEmcal.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ struct HfElectronSelectionWithTpcEmcal {
326326
if ((track.phi() < phiTrackEMCalMin || track.phi() > phiTrackEMCalMax) && (track.phi() < phiTrackDCalMin || track.phi() > phiTrackDCalMax)) {
327327
return false;
328328
}
329-
if (track.pt() < ptTrackMin) {
329+
if (track.pt() < ptTrackMin || track.pt() > ptTrackMax) {
330330
return false;
331331
}
332332
return true;

0 commit comments

Comments
 (0)