summaryrefslogtreecommitdiff
path: root/src/ngspiceSimulation
diff options
context:
space:
mode:
authorfahim2015-05-27 11:36:54 +0530
committerfahim2015-05-27 11:36:54 +0530
commitbf5cac5fb49b819d1e4dd703bb325ea3a3613482 (patch)
tree92ec964bea0b2500c355d090dbba01c482458420 /src/ngspiceSimulation
parentbca9871d3ba7b18738c8f326cf9511834679b555 (diff)
downloadeSim-bf5cac5fb49b819d1e4dd703bb325ea3a3613482.tar.gz
eSim-bf5cac5fb49b819d1e4dd703bb325ea3a3613482.tar.bz2
eSim-bf5cac5fb49b819d1e4dd703bb325ea3a3613482.zip
Subject: Removed unwanted comment and print statement
Description: Removed unwanted comment and print statement
Diffstat (limited to 'src/ngspiceSimulation')
-rw-r--r--src/ngspiceSimulation/NgspiceWidget.py4
-rw-r--r--src/ngspiceSimulation/pythonPlotting.py13
2 files changed, 4 insertions, 13 deletions
diff --git a/src/ngspiceSimulation/NgspiceWidget.py b/src/ngspiceSimulation/NgspiceWidget.py
index a3305a78..de56359d 100644
--- a/src/ngspiceSimulation/NgspiceWidget.py
+++ b/src/ngspiceSimulation/NgspiceWidget.py
@@ -19,9 +19,7 @@ class NgspiceWidget(QtGui.QWidget):
self.args = ['-into', str(self.terminal.winId()),'-hold','-e', self.command]
self.process.start('xterm', self.args)
- #Adding PID
- #self.obj_appconfig.procThread_list.append(self.process.pid())
-
+
diff --git a/src/ngspiceSimulation/pythonPlotting.py b/src/ngspiceSimulation/pythonPlotting.py
index 0bca22be..60665f96 100644
--- a/src/ngspiceSimulation/pythonPlotting.py
+++ b/src/ngspiceSimulation/pythonPlotting.py
@@ -45,12 +45,7 @@ class plotWindow(QtGui.QMainWindow):
self.obj_dataext.computeAxes()
self.a = self.obj_dataext.numVals()
-
- #Hard coded to be remove
- #self.a = [4,2]
- #self.plotType = [1,0]
-
-
+
self.chkbox=[]
########### Generating list of colors :
@@ -215,8 +210,7 @@ class plotWindow(QtGui.QMainWindow):
for i in a:
self.comboAll.append(self.obj_dataext.y[i])
- #print "ComboAll : ",self.comboAll
-
+
for i in range(len(a)):
if a[i] == len(self.obj_dataext.NBList):
@@ -395,8 +389,7 @@ class DataExtraction:
self.analysisInfo = f3.read()
self.analysisInfo = self.analysisInfo.split(" ")
- #print "Analysis :",analysisInfo
-
+
#Reading data file for voltage
with open(os.path.join(fpath,"plot_data_v.txt")) as f2:
self.voltData = f2.read()