159 |
|
|
160 |
|
fout.close() |
161 |
|
|
162 |
+ |
if arguments.standAlone: |
163 |
+ |
#process tex files to make pdf files |
164 |
+ |
command = "pdflatex -interaction=batchmode -output-directory=./%s %s > /dev/null" % (condor_dir,outputFile) |
165 |
+ |
os.system(command) |
166 |
+ |
os.system(command) |
167 |
+ |
#os.system("rm %s" % outputFile) |
168 |
+ |
os.system("rm %saux" % (outputFile.rstrip("tex"))) |
169 |
+ |
os.system("rm %slog" % (outputFile.rstrip("tex"))) |
170 |
+ |
print "Finished writing cutFlow to " + outputFile + " and compiling pdf" |
171 |
+ |
|
172 |
+ |
|
173 |
+ |
|