@@ -327,9 +327,9 @@ struct BJetTreeCreator {
327327 registry.add (" h_trk_phi" , " trk_phi;#it{#phi};Entries" , {HistType::kTH1F , {{200 , 0 ., o2::constants::math::TwoPI}}});
328328 registry.add (" h_trk_charge" , " trk_charge;#it{q};Entries" , {HistType::kTH1F , {{3 , -1.5 , 1.5 }}});
329329 registry.add (" h_trk_dcaxy" , " trk_dcaxy;#it{DCA}_{xy} (cm);Entries" , {HistType::kTH1F , {{200 , -0.1 , 0.1 }}});
330- registry.add (" h_trk_dcaxyz " , " trk_dcaxyz;#it{DCA}_{xyz } (cm);Entries" , {HistType::kTH1F , {{200 , -0.1 , 0.1 }}});
330+ registry.add (" h_trk_dcaz " , " trk_dcaxyz;#it{DCA}_{z } (cm);Entries" , {HistType::kTH1F , {{200 , -0.1 , 0.1 }}});
331331 registry.add (" h_trk_sigmadcaxy" , " trk_sigmadcaxy;#it{#sigma}_{#it{DCA}_{xy}} (cm);Entries" , {HistType::kTH1F , {{200 , 0 ., 0.1 }}});
332- registry.add (" h_trk_sigmadcaxyz " , " trk_sigmadcaxyz;#it{#sigma}_{#it{DCA}_{xyz }} (cm);Entries" , {HistType::kTH1F , {{200 , 0 ., 0.1 }}});
332+ registry.add (" h_trk_sigmadcaz " , " trk_sigmadcaxyz;#it{#sigma}_{#it{DCA}_{z }} (cm);Entries" , {HistType::kTH1F , {{200 , 0 ., 0.1 }}});
333333 registry.add (" h_trk_itsncls" , " trk_itsncls;ITS NCls;Entries" , {HistType::kTH1F , {{10 , 0 ., 10 .}}});
334334 registry.add (" h_trk_tpcncls" , " trk_tpcncls;TPC NCls (Found);Entries" , {HistType::kTH1F , {{200 , 0 ., 200 .}}});
335335 registry.add (" h_trk_tpcncrs" , " trk_tpcncrs;TPC NCrossedRows;Entries" , {HistType::kTH1F , {{200 , 0 ., 200 .}}});
@@ -529,9 +529,9 @@ struct BJetTreeCreator {
529529 registry.fill (HIST (" h_trk_phi" ), origConstit.phi (), eventweight);
530530 registry.fill (HIST (" h_trk_charge" ), constituent.sign (), eventweight);
531531 registry.fill (HIST (" h_trk_dcaxy" ), std::abs (constituent.dcaXY ()) * sign, eventweight);
532- registry.fill (HIST (" h_trk_dcaxyz " ), std::abs (constituent.dcaXYZ ()) * sign, eventweight);
532+ registry.fill (HIST (" h_trk_dcaz " ), std::abs (constituent.dcaZ ()) * sign, eventweight);
533533 registry.fill (HIST (" h_trk_sigmadcaxy" ), constituent.sigmadcaXY (), eventweight);
534- registry.fill (HIST (" h_trk_sigmadcaxyz " ), constituent.sigmadcaXYZ (), eventweight);
534+ registry.fill (HIST (" h_trk_sigmadcaz " ), constituent.sigmadcaZ (), eventweight);
535535 registry.fill (HIST (" h_trk_itsncls" ), origConstit.itsNCls (), eventweight);
536536 registry.fill (HIST (" h_trk_tpcncls" ), origConstit.tpcNClsFound (), eventweight);
537537 registry.fill (HIST (" h_trk_tpcncrs" ), origConstit.tpcNClsCrossedRows (), eventweight);
0 commit comments