|
@@ -528,7 +528,9 @@ class ApplicationWindow(QtWidgets.QMainWindow):
|
528
|
528
|
INFO["transFreq"] = self.RAWDataProc.transFreq
|
529
|
529
|
INFO["headerstr"] = str(self.headerstr)
|
530
|
530
|
INFO["log"] = yaml.dump( self.YamlNode )
|
531
|
|
-
|
|
531
|
+
|
|
532
|
+ print ("YAML NODE", yaml.dump( self.YamlNode ) )
|
|
533
|
+
|
532
|
534
|
self.RAWDataProc.DATADICT["INFO"] = INFO
|
533
|
535
|
|
534
|
536
|
pickle.dump(self.RAWDataProc.DATADICT, save)
|
|
@@ -581,20 +583,20 @@ class ApplicationWindow(QtWidgets.QMainWindow):
|
581
|
583
|
self.RAWDataProc.dt = 1./self.RAWDataProc.samp
|
582
|
584
|
|
583
|
585
|
self.dataChan = self.RAWDataProc.DATADICT[ self.RAWDataProc.DATADICT["PULSES"][0] ]["chan"]
|
584
|
|
-
|
585
|
|
- try:
|
586
|
|
- self.logText = self.RAWDataProc.DATADICT["INFO"]["log"]
|
587
|
|
-
|
|
586
|
+
|
|
587
|
+
|
588
|
588
|
|
589
|
589
|
|
590
|
590
|
|
591
|
591
|
|
592
|
592
|
|
593
|
593
|
|
594
|
|
-
|
|
594
|
+
|
|
595
|
+ self.logText = self.RAWDataProc.DATADICT["INFO"]["log"]
|
|
596
|
+ self.YamlNode = yaml.load( self.logText )
|
595
|
597
|
|
596
|
|
- except KeyError:
|
597
|
|
- pass
|
|
598
|
+
|
|
599
|
+
|
598
|
600
|
|
599
|
601
|
if "Loaded" not in self.YamlNode.Processing.keys():
|
600
|
602
|
self.YamlNode.Processing["Loaded"] = []
|