@@ -132,7 +132,7 @@ struct HfDataCreatorCharmResoReduced {
132132 Configurable<int > selectionFlagDplus{" selectionFlagDplus" , 7 , " Selection Flag for D" };
133133 Configurable<bool > selectionFlagDstarToD0Pi{" selectionFlagDstarToD0Pi" , true , " Selection Flag for D* decay to D0 & Pi" };
134134 Configurable<int > selectionFlagD0{" selectionFlagD0" , 1 , " Selection Flag for D0" };
135- Configurable<int > selectionFlagD0bar{ " selectionFlagD0bar " , 1 , " Selection Flag for D0bar" };
135+ Configurable<int > selectionFlagD0Bar{ " selectionFlagD0Bar " , 1 , " Selection Flag for D0bar" };
136136 } cfgDmesCuts;
137137
138138 // selection V0
@@ -247,7 +247,7 @@ struct HfDataCreatorCharmResoReduced {
247247
248248 Filter filterSelectDplus = (aod::hf_sel_candidate_dplus::isSelDplusToPiKPi >= cfgDmesCuts.selectionFlagDplus);
249249 Filter filterSelectedCandDstar = (aod::hf_sel_candidate_dstar::isSelDstarToD0Pi == cfgDmesCuts.selectionFlagDstarToD0Pi);
250- Filter filterSelectD0Candidates = (aod::hf_sel_candidate_d0::isSelD0 >= cfgDmesCuts.selectionFlagD0 || aod::hf_sel_candidate_d0::isSelD0bar >= cfgDmesCuts.selectionFlagD0bar );
250+ Filter filterSelectD0Candidates = (aod::hf_sel_candidate_d0::isSelD0 >= cfgDmesCuts.selectionFlagD0 || aod::hf_sel_candidate_d0::isSelD0bar >= cfgDmesCuts.selectionFlagD0Bar );
251251
252252 Preslice<CandsDplusFiltered> candsDplusPerCollision = aod::hf_cand::collisionId;
253253 Preslice<CandsDplusFilteredWithMl> candsDplusPerCollisionWithMl = aod::hf_cand::collisionId;
@@ -1271,10 +1271,10 @@ struct HfDataCreatorCharmResoReduced {
12711271 }
12721272 } else if constexpr (dType == DType::D0) {
12731273 uint8_t selFlagD0 = {BIT (D0Sel::selectedD0) | BIT (D0Sel::selectedD0Bar)};
1274- if (! candD.isSelD0 () < cfgDmesCuts.selectionFlagD0 ){
1274+ if (candD.isSelD0 () < cfgDmesCuts.selectionFlagD0 ){
12751275 CLRBIT (selFlagD0, D0Sel::selectedD0);
12761276 }
1277- if (! candD.isSelD0Bar () < cfgDmesCuts.selectionFlagD0Bar ){
1277+ if (candD.isSelD0bar () < cfgDmesCuts.selectionFlagD0Bar ){
12781278 CLRBIT (selFlagD0, D0Sel::selectedD0Bar);
12791279 }
12801280 hfCandD2Pr (prongIdsD[0 ], prongIdsD[1 ],
0 commit comments