From 15feb3d5166d509216e2bb13a6cc866e91f995ab Mon Sep 17 00:00:00 2001 From: "jihee.kim" <jihee.kim@anl.gov> Date: Fri, 13 Aug 2021 17:51:56 -0500 Subject: [PATCH] debugging --- benchmarks/imaging_ecal/scripts/draw_cluster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/imaging_ecal/scripts/draw_cluster.py b/benchmarks/imaging_ecal/scripts/draw_cluster.py index a2925f2b..f810b6a9 100644 --- a/benchmarks/imaging_ecal/scripts/draw_cluster.py +++ b/benchmarks/imaging_ecal/scripts/draw_cluster.py @@ -238,7 +238,7 @@ if __name__ == '__main__': bins=(np.arange(*eta_rg, step=args.topo_size/1000.), np.arange(*phi_rg, step=args.topo_size)), cmap=cmap, cmin=0., pc_kw=dict(alpha=0.8, edgecolor='k')) # draw true decaying particle position - if len(dfdecaymcp) > 0: + if len(dftemp) > 0: ax.scatter(dfdecaymcp['eta'].values, dfdecaymcp['phi'].values, marker='x', color='red', s=22**2, linewidth=5.0) ax.set_ylabel(r'$\phi$ (mrad)', fontsize=32) -- GitLab