Skip to content
Snippets Groups Projects
Commit 9b38019f authored by Chad Hanna's avatar Chad Hanna
Browse files

gstlal_ll_inspiral_daily_page: fix misplaced verbose statements

parent e7e70921
No related branches found
No related tags found
No related merge requests found
......@@ -160,7 +160,7 @@ if __name__ == '__main__':
progressbar = ProgressBar("Merge noninjection files", len(noninj_files_to_merge) + len(seg_files))
for f in noninj_files_to_merge + seg_files:
subprocess.check_call(["ligolw_sqlite", "--database", "--verbose", "%s" % noninjdb, "%s" % f])
subprocess.check_call(["ligolw_sqlite", "--verbose", "--database", "%s" % noninjdb, "%s" % f])
# Do not cluster! the online analysis doesn't do a global clustering stage!!
try:
subprocess.check_call(["lalapps_run_sqlite", "--sql-file", simplify_file, "%s" % noninjdb])
......@@ -172,7 +172,7 @@ if __name__ == '__main__':
for injection_file in inj_file_bins:
progressbar = ProgressBar("Merge injection files", len(inj_files_to_merge[injection_file]) + len(seg_files))
for f in inj_files_to_merge[injection_file] + seg_files:
subprocess.check_call(["ligolw_sqlite", "--database", "--verbose", "%s" % injdb[injection_file], "%s" % f])
subprocess.check_call(["ligolw_sqlite", "--verbose", "--database", "%s" % injdb[injection_file], "%s" % f])
# Do not cluster! the online analysis doesn't do a global clustering stage!!
try:
subprocess.check_call(["lalapps_run_sqlite", "--sql-file", simplify_file, "%s" % injdb[injection_file]])
......@@ -183,13 +183,13 @@ if __name__ == '__main__':
# Find injections
progressbar = ProgressBar("Find injections", 4)
subprocess.check_call(["ligolw_sqlite", "--database", "--verbose", "%s" % injdb[injection_file], "%s" % injection_file])
subprocess.check_call(["ligolw_sqlite", "--verbose", "--database", "%s" % injdb[injection_file], "%s" % injection_file])
progressbar.increment()
subprocess.check_call(["ligolw_sqlite", "--database", "--verbose", "%s" % injdb[injection_file], "--extract", "%s.xml" % injdb[injection_file]])
subprocess.check_call(["ligolw_sqlite", "--verbose", "--database", "%s" % injdb[injection_file], "--extract", "%s.xml" % injdb[injection_file]])
progressbar.increment()
subprocess.check_call(["ligolw_inspinjfind", "--verbose", "%s.xml" % injdb[injection_file]])
progressbar.increment()
subprocess.check_call(["ligolw_sqlite", "--database", "--verbose", "%s" % injdb[injection_file], "--replace", "%s.xml" % injdb[injection_file]])
subprocess.check_call(["ligolw_sqlite", "--verbose", "--database", "%s" % injdb[injection_file], "--replace", "%s.xml" % injdb[injection_file]])
progressbar.increment()
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment