File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,6 @@ struct QAHistograms {
9090 std::shared_ptr<TH2> TPChisto;
9191 std::shared_ptr<TH2> TOFhisto;
9292
93- Filter signFilter = o2::aod::singletrackselector::sign == _sign;
9493 Filter pFilter = o2::aod::singletrackselector::p > _min_P&& o2::aod::singletrackselector::p < _max_P;
9594 Filter etaFilter = nabs(o2::aod::singletrackselector::eta) < _eta;
9695
@@ -198,7 +197,8 @@ struct QAHistograms {
198197 }
199198
200199 for (const auto & track : tracks) {
201-
200+ if (track.sign () != _sign)
201+ continue ;
202202 if (_removeSameBunchPileup && !track.template singleCollSel_as <ColsType>().isNoSameBunchPileup ())
203203 continue ;
204204 if (_requestGoodZvtxFT0vsPV && !track.template singleCollSel_as <ColsType>().isGoodZvtxFT0vsPV ())
You can’t perform that action at this time.
0 commit comments