##// END OF EJS Templates
UltimaEdicionde GUI
Alexander Valdez -
r249:745dc19d8466
parent child
Show More
@@ -97,6 +97,7 class MainWindow(QMainWindow, Ui_MainWindow):
97 97 def setParam(self):
98 98 self.dataPathTxt.setText('C:\data')
99 99 self.numberChannelopVol.setEnabled(False)
100 self.lineHeighProfileTxtopVol.setEnabled(False)
100 101 self.numberIntegration.setEnabled(False)
101 102 self.valuenFFTPointOpSpec.setEnabled(False)
102 103
@@ -406,6 +407,7 class MainWindow(QMainWindow, Ui_MainWindow):
406 407 Slot documentation goes here.
407 408 """
408 409 if p0==2:
410 self.lineHeighProfileTxtopVol.setEnabled(True)
409 411 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
410 412 opObj10=upProcessSelect.addOperation(name='selectHeights')
411 413 print opObj10.id
@@ -461,8 +463,9 class MainWindow(QMainWindow, Ui_MainWindow):
461 463 for i in self.operObjList:
462 464 if i.name=='selectHeights' :
463 465 value=self.lineHeighProfileTxtopVol.text()
464 i.addParameter(name='minHei', value='90', format='float')
465 i.addParameter(name='maxHei', value='180', format='float')
466 valueList=value.split(',')
467 i.addParameter(name='minHei', value=value[0], format='float')
468 i.addParameter(name='maxHei', value=value[1], format='float')
466 469
467 470 print "height"
468 471 if self.coherentIntegrationCEB.isChecked():
@@ -479,10 +482,6 class MainWindow(QMainWindow, Ui_MainWindow):
479 482 """
480 483 if p0==2:
481 484 self.valuenFFTPointOpSpec.setEnabled(True)
482 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
483 opObj10=upProcessSelect.addOperation(name='nFFTPoints')
484 print opObj10.id
485 self.operObjList.append(opObj10)
486 485 print " nFFTPoint"
487 486 if p0==0:
488 487 print " deshabilitado"
1 NO CONTENT: modified file
General Comments 0
You need to be logged in to leave comments. Login now