Skip to content
Snippets Groups Projects
Commit 5364bc78 authored by Pepping's avatar Pepping
Browse files

Beautified the output

parent 765269e2
Branches
Tags
No related merge requests found
...@@ -136,9 +136,6 @@ if __name__ == "__main__": ...@@ -136,9 +136,6 @@ if __name__ == "__main__":
nodeData.append(data) nodeData.append(data)
dataList.append(nodeData) dataList.append(nodeData)
# for i in dataList:
# print i
inputData = [] inputData = []
in_h = 0 in_h = 0
for h in tc.nodeNrs: for h in tc.nodeNrs:
...@@ -184,13 +181,14 @@ if __name__ == "__main__": ...@@ -184,13 +181,14 @@ if __name__ == "__main__":
# Verify data # Verify data
# #
############################################################################### ###############################################################################
print "Real:" tc.append_log(0, 'The Real output ')
for i in db_out_re: for i in db_out_re:
print i tc.append_log(0, '%s' % str(i))
print ""
print "Imaginary:" tc.append_log(3, '')
tc.append_log(0, 'The Imaginary output ')
for i in db_out_im: for i in db_out_im:
print i tc.append_log(0, '%s' % str(i))
bsn.read_bsn_monitor(0) bsn.read_bsn_monitor(0)
bsn.read_bsn_monitor(1) bsn.read_bsn_monitor(1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment