fixed bug where zobov wasn't getting correct nmber of threads; fixed and now hard-coded to 2 parallel threads

This commit is contained in:
P.M. Sutter 2012-11-15 06:47:06 -06:00
parent 443b4bdeec
commit 6868a026f5
2 changed files with 64 additions and 2 deletions

View file

@ -200,8 +200,8 @@ def launchZobov(sample, binPath, zobovDir=None, logDir=None, continueRun=None):
numThreads = 2
cmd = "%s/vozinit %s 0.1 1.0 %g %s %g %s %s %s >& %s" % \
(binPath, datafile, numThreads, \
"_"+sampleName, sample.numSubDivisions, \
(binPath, datafile, sample.numSubDivisions, \
"_"+sampleName, numThreads, \
binPath, zobovDir, maskIndex, logFile)
os.system(cmd)