xVect = np.arange(0, nPtsDigi) * 0.2 #ns, sampling 5 GHz chanToPlot = 1 for i in range(10): fig, ax = plt.subplots() fig.set_size_inches(12, 5) wf = getWaveform(Idigi_742a, chanToPlot, i) ax.plot(xVect, wf, ls = ":", c = "tab:green") ax.grid() ax.set_xlabel("Time [ns]", fontsize = 14) ax.set_ylabel("[ADC]", fontsize = 14) ax.set_title(f"Chan. {chanToPlot} -- Ev. {i}", fontsize = 16) plt.show()
xVect = np.arange(0, nPtsDigi) * 0.2 #ns, sampling 5 GHz chanToPlot = 1 for i in range(10): fig, ax = plt.subplots() fig.set_size_inches(12, 5) wf = getWaveform(Idigi_742b, chanToPlot, i) ax.plot(xVect, wf, ls = ":", c = "tab:green") ax.grid() ax.set_xlabel("Time [ns]", fontsize = 14) ax.set_ylabel("[ADC]", fontsize = 14) ax.set_title(f"Chan. {chanToPlot} -- Ev. {i}", fontsize = 16) plt.show()