Fixed rotation of the noise map and of the image plot in colz function

This commit is contained in:
bergamaschi 2024-04-26 17:51:20 +02:00
parent ec5494ebd6
commit b43d4bff15
2 changed files with 4 additions and 3 deletions

View File

@ -142,7 +142,7 @@ def plot_colz(hist2d, vmax=-1, vmin=0):
if vmin>vmax: if vmin>vmax:
vmin=0 vmin=0
fig1, axs1 = plt.subplots() fig1, axs1 = plt.subplots()
vv=axs1.imshow(hist2d,origin='upper',cmap=plt.cm.gray,vmax=vmax,vmin=vmin, interpolation='none' ) vv=axs1.imshow(np.transpose(hist2d),origin='upper',cmap=plt.cm.gray,vmax=vmax,vmin=vmin, interpolation='none' )
fig1.colorbar(vv, ax=axs1) fig1.colorbar(vv, ax=axs1)
fig1.show() fig1.show()

View File

@ -125,7 +125,8 @@ size_t read_clusters_with_cut(FILE *fp, size_t n_clusters, Cluster *buf,
tot1 = ptr->data[4]; tot1 = ptr->data[4];
analyze_cluster(*ptr, &t2max, &tot3, NULL, NULL, analyze_cluster(*ptr, &t2max, &tot3, NULL, NULL,
NULL, NULL, NULL); NULL, NULL, NULL);
noise = noise_map[ptr->y * nx + ptr->x]; //noise = noise_map[ptr->y * nx + ptr->x];
noise = noise_map[ptr->y + ny * ptr->x];
if (tot1 > noise && t2max > 2 * noise && if (tot1 > noise && t2max > 2 * noise &&
tot3 > 3 * noise) { tot3 > 3 * noise) {
; ;