Skip to content
Snippets Groups Projects
Commit 63ece3fe authored by Leo Tsukada's avatar Leo Tsukada
Browse files

gstlal_inspiral_add_p_of_ifos_given_horizon : enable to parallerize jobs for...

gstlal_inspiral_add_p_of_ifos_given_horizon :  enable to parallerize jobs for different Deff ratio bins
parent 16e85983
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
#
# Copyright (C) 2019 Leo Tsukada
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
import sys
from gstlal.stats import inspiral_extrinsics
# Read in and combine all of the input files
instruments = "".join(sorted(sys.argv[1].split(",")))
files = sys.argv[2:]
PofI = inspiral_extrinsics.p_of_instruments_given_horizons.from_hdf5(files[0], files[1:])
PofI.to_hdf5("%s_p_of_instruments_given_H_d.h5" % instruments)
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