Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions PWGLF/Tasks/Resonances/kstarqa.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ struct Kstarqa {
// Configurable<float> cfgRCRFC{"cfgRCRFC", 0.8f, "Crossed Rows to Findable Clusters"};
// Configurable<float> cfgITSChi2NCl{"cfgITSChi2NCl", 36.0, "ITS Chi2/NCl"};
// Configurable<float> cfgTPCChi2NClMax{"cfgTPCChi2NClMax", 4.0, "TPC Chi2/NCl"};
// Configurable<float> cfgTPCChi2NClMin{"cfgTPCChi2NClMin", 0.0, "TPC Chi2/NCl"};
// Configurable<float> cfgTPCChi2NClMin{"cfgTPCChi2NClMin", 0.1, "TPC Chi2/NCl"};
Configurable<bool> hasITS{"hasITS", true, "Required ITS"};
Configurable<bool> isITSTPCRefit{"isITSTPCRefit", false, "Require ITS Refit"};
Configurable<bool> isApplyPtDepDCAxyCut{"isApplyPtDepDCAxyCut", false, "Apply pT dependent DCAxy cut"};
Expand Down Expand Up @@ -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;
}
}
Expand Down
Loading