def process(self, _edObject=None):
     EDPluginControl.process(self)
     EDVerbose.DEBUG("EDPluginControlMatrixInvertFilev1_0.process")
     xsdin = XSDataInputReadMatrix()
     xsdin.setInputMatrixFile(self.getDataInput().getInputMatrixFile())
     self.__edPluginExecRead.setDataInput(xsdin)
     self.__edPluginExecRead.connectSUCCESS(self.doSuccessExecRead)
     self.__edPluginExecRead.connectFAILURE(self.doFailureExecRead)
     self.__edPluginExecRead.executeSynchronous()
 def testCheckParameters(self):
     xsDataInput = XSDataInputReadMatrix()
     xsDataInput.setInputMatrixFile(XSDataFile())
     edPluginExecMatrixRead = self.createPlugin()
     edPluginExecMatrixRead.setDataInput(xsDataInput)
     edPluginExecMatrixRead.checkParameters()