diff --git a/PWGLF/Tasks/Resonances/kstarqa.cxx b/PWGLF/Tasks/Resonances/kstarqa.cxx index 91cc416aca4..c6a473ce360 100644 --- a/PWGLF/Tasks/Resonances/kstarqa.cxx +++ b/PWGLF/Tasks/Resonances/kstarqa.cxx @@ -132,7 +132,7 @@ struct Kstarqa { // Configurable cfgRCRFC{"cfgRCRFC", 0.8f, "Crossed Rows to Findable Clusters"}; // Configurable cfgITSChi2NCl{"cfgITSChi2NCl", 36.0, "ITS Chi2/NCl"}; // Configurable cfgTPCChi2NClMax{"cfgTPCChi2NClMax", 4.0, "TPC Chi2/NCl"}; - // Configurable cfgTPCChi2NClMin{"cfgTPCChi2NClMin", 0.0, "TPC Chi2/NCl"}; + // Configurable cfgTPCChi2NClMin{"cfgTPCChi2NClMin", 0.1, "TPC Chi2/NCl"}; Configurable hasITS{"hasITS", true, "Required ITS"}; Configurable isITSTPCRefit{"isITSTPCRefit", false, "Require ITS Refit"}; Configurable isApplyPtDepDCAxyCut{"isApplyPtDepDCAxyCut", false, "Apply pT dependent DCAxy cut"}; @@ -597,8 +597,7 @@ struct Kstarqa { return false; if (configGp.isITSTPCRefit) { - if (!(candidate.flags() & o2::aod::track::ITSrefit) || - !(candidate.flags() & o2::aod::track::TPCrefit)) { + if (!(o2::aod::track::ITSrefit && o2::aod::track::TPCrefit)) { return false; } }