Update real event analysis authored by NV Krishnendu's avatar NV Krishnendu
...@@ -85,19 +85,15 @@ _This page is evolving and new changes need to be added_ ...@@ -85,19 +85,15 @@ _This page is evolving and new changes need to be added_
file_sym = os.path.join(src,event,'ks_sym','samples','posterior_samples.h5') file_sym = os.path.join(src,event,'ks_sym','samples','posterior_samples.h5')
file_pos = os.path.join(src,event,'ks_pos','samples','posterior_samples.h5') file_pos = os.path.join(src,event,'ks_pos','samples','posterior_samples.h5')
file_bbh = os.path.join(src,event,'bah','samples','posterior_samples.h5') file_bbh = os.path.join(src,event,'bah','samples','posterior_samples.h5')
final_name_sym = 'sim_{}_C01[or any specification]_sym_prior.h5'.format(event) final_name_sym = 'sim_{}_C01[or any specification]_sym_prior.h5'.format(event)
final_name_pos = 'sim_{}_C01[or any specification]_pos_prior.h5'.format(event) final_name_pos = 'sim_{}_C01[or any specification]_pos_prior.h5'.format(event)
final_name_bbh = 'sim_{}_C01[or any specification]_bbh_prior.h5'.format(event) final_name_bbh = 'sim_{}_C01[or any specification]_bbh_prior.h5'.format(event)
destination_sym = os.path.join(repo,event, final_name_sym) destination_sym = os.path.join(repo,event, final_name_sym)
destination_pos = os.path.join(repo, event,final_name_pos) destination_pos = os.path.join(repo, event,final_name_pos)
destination_bbh = os.path.join(repo, event,final_name_bbh) destination_bbh = os.path.join(repo, event,final_name_bbh)
commandLine_sym = 'cp {} {}'.format(file_sym, destination_sym ) commandLine_sym = 'cp {} {}'.format(file_sym, destination_sym )
commandLine_pos = 'cp {} {}'.format(file_bbh, destination_pos ) commandLine_pos = 'cp {} {}'.format(file_bbh, destination_pos )
commandLine_bbh = 'cp {} {}'.format(file_bbh, destination_bbh ) commandLine_bbh = 'cp {} {}'.format(file_bbh, destination_bbh )
os.system(commandLine_sym) os.system(commandLine_sym)
os.system(commandLine_pos) os.system(commandLine_pos)
os.system(commandLine_bbh) os.system(commandLine_bbh)
... ...
......