Commit d30b8921 authored by Nicolas Nunez Barreto's avatar Nicolas Nunez Barreto

agrego meds xdxd

parent a11ff84c
...@@ -20,6 +20,7 @@ MOTIONAL_FILES = """000013489-IR_Scan_withcal_optimized_andor ...@@ -20,6 +20,7 @@ MOTIONAL_FILES = """000013489-IR_Scan_withcal_optimized_andor
000013491-IR_Scan_withcal_optimized_andor 000013491-IR_Scan_withcal_optimized_andor
000013493-IR_Scan_withcal_optimized_andor 000013493-IR_Scan_withcal_optimized_andor
000013494-IR_Scan_withcal_optimized_andor 000013494-IR_Scan_withcal_optimized_andor
000013479-IR_Scan_withcal_optimized_andor
""" """
...@@ -62,18 +63,35 @@ for i, fname in enumerate(MOTIONAL_FILES.split()): ...@@ -62,18 +63,35 @@ for i, fname in enumerate(MOTIONAL_FILES.split()):
En cristal de 2 iones veo espectros cpt. En cristal de 2 iones veo espectros cpt.
""" """
medvec = [0,1,2,3,4] medvec = [5]
plt.figure() plt.figure()
ftrap = 22.1
for med in medvec: for med in medvec:
#CountsRois = [CountsRoi1[med], CountsRoi2[med]] CountsRois = [CountsRoi1[med], CountsRoi2[med]]
CountsRois = [CountsRoi2[med]] #CountsRois = [CountsRoi1[med]]
#CountsRois = [CountsRoi2[med]]
i=0 i=0
for counts in CountsRois: for counts in CountsRois:
plt.plot(IR1_Freqs[0][1:], [c for c in counts[1:]], '-o', markersize=2) plt.plot([2*f*1e-6 for f in IR1_Freqs[0][1:]], [c for c in counts[1:]], '-o', markersize=2)
i=i+1 i=i+1
plt.axvline(415.5)
plt.axvline(423)
plt.axvline(429)
plt.axvline(438.5)
plt.axvline(415.5+ftrap, color='red')
plt.axvline(423+ftrap, color='red')
plt.axvline(429+ftrap, color='red')
plt.axvline(438.5+ftrap, color='red')
plt.axvline(415.5-ftrap, color='red')
plt.axvline(423-ftrap, color='red')
plt.axvline(429-ftrap, color='red')
plt.axvline(438.5-ftrap, color='red')
plt.xlabel('Frecuencia') plt.xlabel('Frecuencia')
plt.ylabel('Cuentas ROI') plt.ylabel('Cuentas ROI')
#plt.xlim(0.05,0.23) #plt.xlim(0.05,0.23)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment