Skip to content

Commit ce6133c

Browse files
authored
PWGEM/PhotonMeson: remove unnecessary histograms (#6279)
1 parent ebbfaa2 commit ce6133c

1 file changed

Lines changed: 0 additions & 16 deletions

File tree

PWGEM/PhotonMeson/Tasks/dalitzEEQC.cxx

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -217,11 +217,6 @@ struct DalitzEEQC {
217217
fRegistry.add("Pair/same/hMvsPhiV_uls", "m_{ee} vs. #varphi_{V};#varphi (rad.);m_{ee} (GeV/c^{2})", kTH2F, {{90, 0, M_PI}, {100, 0.0f, 0.1f}}, false);
218218
fRegistry.addClone("Pair/same/hMvsPhiV_uls", "Pair/same/hMvsPhiV_lspp");
219219
fRegistry.addClone("Pair/same/hMvsPhiV_uls", "Pair/same/hMvsPhiV_lsmm");
220-
221-
fRegistry.add("Pair/same/hDeltaPhivsPhiV_uls", "#varphi_{ee} vs. #varphi_{V};#varphi (rad.);#varphi_{ee} (rad.)", kTH2F, {{90, 0, M_PI}, {200, -0.1, 0.1}}, false);
222-
fRegistry.addClone("Pair/same/hDeltaPhivsPhiV_uls", "Pair/same/hDeltaPhivsPhiV_lspp");
223-
fRegistry.addClone("Pair/same/hDeltaPhivsPhiV_uls", "Pair/same/hDeltaPhivsPhiV_lsmm");
224-
225220
fRegistry.addClone("Pair/same/", "Pair/mix/");
226221

227222
fRegistry.add("Track/hPt", "pT;p_{T} (GeV/c)", kTH1F, {{1000, 0.0f, 10}}, false);
@@ -395,27 +390,16 @@ struct DalitzEEQC {
395390
float dca_t2_3d = t2.dca3DinSigma();
396391
float dca_ee_3d = std::sqrt((dca_t1_3d * dca_t1_3d + dca_t2_3d * dca_t2_3d) / 2.);
397392
float phiv = getPhivPair(t1.px(), t1.py(), t1.pz(), t2.px(), t2.py(), t2.pz(), t1.sign(), t2.sign(), collision.bz());
398-
float dphi = t1.phi() - t2.phi();
399393

400394
if (t1.sign() * t2.sign() < 0) { // ULS
401395
fRegistry.fill(HIST("Pair/") + HIST(event_pair_types[ev_id]) + HIST("hs_uls"), v12.M(), v12.Pt(), dca_ee_3d);
402396
fRegistry.fill(HIST("Pair/") + HIST(event_pair_types[ev_id]) + HIST("hMvsPhiV_uls"), phiv, v12.M());
403-
if (v12.M() < 0.03) {
404-
fRegistry.fill(HIST("Pair/") + HIST(event_pair_types[ev_id]) + HIST("hDeltaPhivsPhiV_uls"), phiv, dphi);
405-
}
406-
407397
} else if (t1.sign() > 0 && t2.sign() > 0) { // LS++
408398
fRegistry.fill(HIST("Pair/") + HIST(event_pair_types[ev_id]) + HIST("hs_lspp"), v12.M(), v12.Pt(), dca_ee_3d);
409399
fRegistry.fill(HIST("Pair/") + HIST(event_pair_types[ev_id]) + HIST("hMvsPhiV_lspp"), phiv, v12.M());
410-
if (v12.M() < 0.03) {
411-
fRegistry.fill(HIST("Pair/") + HIST(event_pair_types[ev_id]) + HIST("hDeltaPhivsPhiV_lspp"), phiv, dphi);
412-
}
413400
} else if (t1.sign() < 0 && t2.sign() < 0) { // LS--
414401
fRegistry.fill(HIST("Pair/") + HIST(event_pair_types[ev_id]) + HIST("hs_lsmm"), v12.M(), v12.Pt(), dca_ee_3d);
415402
fRegistry.fill(HIST("Pair/") + HIST(event_pair_types[ev_id]) + HIST("hMvsPhiV_lsmm"), phiv, v12.M());
416-
if (v12.M() < 0.03) {
417-
fRegistry.fill(HIST("Pair/") + HIST(event_pair_types[ev_id]) + HIST("hDeltaPhivsPhiV_lsmm"), phiv, dphi);
418-
}
419403
}
420404

421405
// store tracks for event mixing without double counting

0 commit comments

Comments
 (0)