We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c413c4a commit 20b5dc4Copy full SHA for 20b5dc4
EventFiltering/PWGCF/CFFilterAll.cxx
@@ -904,6 +904,12 @@ struct CFFilterAll {
904
template <typename T>
905
bool checkTrack(T const& track, std::string trackName)
906
{
907
+ if (track.pt() < TrackSelections.momentum->get(trackName.c_str(), "PtMin")) {
908
+ return false;
909
+ }
910
+ if (track.pt() > TrackSelections.momentum->get(trackName.c_str(), "PtMax")) {
911
912
913
if (std::abs(track.eta()) > TrackSelections.trackProperties->get(trackName.c_str(), "AbsEtaMax")) {
914
return false;
915
}
0 commit comments