|
@@ -2002,10 +2002,12 @@ class GMRDataProcessor(SNMRDataProcessor):
|
2002
|
2002
|
self.samp /= dec
|
2003
|
2003
|
self.dt = 1./self.samp
|
2004
|
2004
|
|
2005
|
|
- if truncate:
|
2006
|
|
- itrunc = (int)( 1e-3*truncate*self.samp )
|
2007
|
2005
|
iFID = 0
|
2008
|
2006
|
for pulse in self.DATADICT["PULSES"]:
|
|
2007
|
+ RSTIMES = self.DATADICT[pulse]["TIMES"][::dec]
|
|
2008
|
+ if truncate:
|
|
2009
|
+ itrunc = (int)( 1e-3*truncate*self.samp )
|
|
2010
|
+ RSTIMES = RSTIMES[0:itrunc]
|
2009
|
2011
|
for ipm in range(self.DATADICT["nPulseMoments"]):
|
2010
|
2012
|
for istack in self.DATADICT["stacks"]:
|
2011
|
2013
|
if plot:
|
|
@@ -2014,16 +2016,18 @@ class GMRDataProcessor(SNMRDataProcessor):
|
2014
|
2016
|
|
2015
|
2017
|
ndi = np.shape(self.DATADICT[pulse][ichan][ipm][istack])[0]%dec
|
2016
|
2018
|
if ndi:
|
2017
|
|
- [self.DATADICT[pulse][ichan][ipm][istack], RSTIMES] = signal.resample(self.DATADICT[pulse][ichan][ipm][istack][0:-ndi],\
|
2018
|
|
- len(self.DATADICT[pulse][ichan][ipm][istack][0:-ndi])//dec,\
|
2019
|
|
- self.DATADICT[pulse]["TIMES"][0:-ndi], window='hamm')
|
|
2019
|
+
|
|
2020
|
+
|
|
2021
|
+
|
|
2022
|
+ self.DATADICT[pulse][ichan][ipm][istack] = signal.decimate(self.DATADICT[pulse][ichan][ipm][istack], dec, n=None, ftype='iir', zero_phase=True)
|
2020
|
2023
|
else:
|
2021
|
|
- [self.DATADICT[pulse][ichan][ipm][istack], RSTIMES] = signal.resample(self.DATADICT[pulse][ichan][ipm][istack],\
|
2022
|
|
- len(self.DATADICT[pulse][ichan][ipm][istack])//dec,\
|
2023
|
|
- self.DATADICT[pulse]["TIMES"], window='hamm')
|
|
2024
|
+
|
|
2025
|
+
|
|
2026
|
+
|
|
2027
|
+ self.DATADICT[pulse][ichan][ipm][istack] = signal.decimate(self.DATADICT[pulse][ichan][ipm][istack], dec, n=None, ftype='iir', zero_phase=True)
|
2024
|
2028
|
if truncate:
|
2025
|
2029
|
self.DATADICT[pulse][ichan][ipm][istack] = self.DATADICT[pulse][ichan][ipm][istack][0:itrunc]
|
2026
|
|
- RSTIMES = RSTIMES[0:itrunc]
|
|
2030
|
+
|
2027
|
2031
|
if plot:
|
2028
|
2032
|
for ichan in self.DATADICT[pulse]["chan"]:
|
2029
|
2033
|
canvas.ax2.plot( RSTIMES, 1e9*self.DATADICT[pulse][ichan][ipm][istack], \
|