##// END OF EJS Templates
First beam is loaded by default after sending the beam file to the control modules.
First beam is loaded by default after sending the beam file to the control modules.

File last commit:

r161:162
r231:232
Show More
test6.py
19 lines | 395 B | text/x-python | PythonLexer
import threading
import datetime
txFile = list("-" for i in range(6))
print txFile
class ThreadClass(threading.Thread):
def run(self):
# now = datetime.datetime.now()
# print "%s says Hello World at time: %s" % (self.getName(), now)
txFile[int(self.getName())] = self.getName()
for i in range(6):
t = ThreadClass(name = str(i))
t.start()
print txFile