2023-04-14 22:05:48 +00:00
|
|
|
# Copyright (C) 2022 Richard Stiskalek
|
|
|
|
# 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 3 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.
|
|
|
|
"""A script to calculate the auto-2PCF of CSiBORG catalogues."""
|
|
|
|
from argparse import ArgumentParser
|
|
|
|
from copy import deepcopy
|
|
|
|
from datetime import datetime
|
2023-04-18 09:02:36 +00:00
|
|
|
from warnings import warn
|
|
|
|
|
2023-04-14 22:05:48 +00:00
|
|
|
import joblib
|
2023-04-18 09:02:36 +00:00
|
|
|
import numpy
|
2023-04-14 22:05:48 +00:00
|
|
|
import yaml
|
2023-04-18 09:02:36 +00:00
|
|
|
from mpi4py import MPI
|
2023-04-26 23:18:30 +00:00
|
|
|
from taskmaster import master_process, worker_process
|
2023-04-18 09:02:36 +00:00
|
|
|
|
2023-04-14 22:05:48 +00:00
|
|
|
try:
|
|
|
|
import csiborgtools
|
|
|
|
except ModuleNotFoundError:
|
|
|
|
import sys
|
2023-04-19 14:39:35 +00:00
|
|
|
|
2023-04-14 22:05:48 +00:00
|
|
|
sys.path.append("../")
|
|
|
|
import csiborgtools
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# MPI and arguments #
|
|
|
|
###############################################################################
|
|
|
|
comm = MPI.COMM_WORLD
|
|
|
|
rank = comm.Get_rank()
|
|
|
|
nproc = comm.Get_size()
|
|
|
|
|
|
|
|
parser = ArgumentParser()
|
|
|
|
parser.add_argument("--runs", type=str, nargs="+")
|
|
|
|
args = parser.parse_args()
|
2023-04-19 14:39:35 +00:00
|
|
|
with open("../scripts/tpcf_auto.yml", "r") as file:
|
2023-04-14 22:05:48 +00:00
|
|
|
config = yaml.safe_load(file)
|
|
|
|
|
|
|
|
Rmax = 155 / 0.705 # Mpc (h = 0.705) high resolution region radius
|
|
|
|
paths = csiborgtools.read.CSiBORGPaths()
|
2023-05-09 15:18:01 +00:00
|
|
|
ics = paths.get_ics()
|
2023-04-14 22:05:48 +00:00
|
|
|
tpcf = csiborgtools.clustering.Mock2PCF()
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Analysis #
|
|
|
|
###############################################################################
|
|
|
|
|
2023-04-18 09:02:36 +00:00
|
|
|
|
2023-04-14 22:05:48 +00:00
|
|
|
def read_single(selection, cat):
|
|
|
|
"""Positions for single catalogue auto-correlation."""
|
|
|
|
mmask = numpy.ones(len(cat), dtype=bool)
|
|
|
|
pos = cat.positions(False)
|
|
|
|
# Primary selection
|
|
|
|
psel = selection["primary"]
|
|
|
|
pmin, pmax = psel.get("min", None), psel.get("max", None)
|
|
|
|
if pmin is not None:
|
2023-04-19 14:39:35 +00:00
|
|
|
mmask &= cat[psel["name"]] >= pmin
|
2023-04-14 22:05:48 +00:00
|
|
|
if pmax is not None:
|
2023-04-19 14:39:35 +00:00
|
|
|
mmask &= cat[psel["name"]] < pmax
|
2023-04-14 22:05:48 +00:00
|
|
|
pos = pos[mmask, ...]
|
|
|
|
|
|
|
|
# Secondary selection
|
|
|
|
if "secondary" not in selection:
|
|
|
|
return pos
|
|
|
|
smask = numpy.ones(pos.shape[0], dtype=bool)
|
|
|
|
ssel = selection["secondary"]
|
|
|
|
smin, smax = ssel.get("min", None), ssel.get("max", None)
|
|
|
|
prop = cat[ssel["name"]][mmask]
|
|
|
|
if ssel.get("toperm", False):
|
|
|
|
prop = numpy.random.permutation(prop)
|
|
|
|
if ssel.get("marked", True):
|
|
|
|
x = cat[psel["name"]][mmask]
|
|
|
|
prop = csiborgtools.clustering.normalised_marks(
|
2023-04-19 14:39:35 +00:00
|
|
|
x, prop, nbins=config["nbins_marks"]
|
|
|
|
)
|
2023-04-14 22:05:48 +00:00
|
|
|
|
|
|
|
if smin is not None:
|
2023-04-19 14:39:35 +00:00
|
|
|
smask &= prop >= smin
|
2023-04-14 22:05:48 +00:00
|
|
|
if smax is not None:
|
2023-04-19 14:39:35 +00:00
|
|
|
smask &= prop < smax
|
2023-04-14 22:05:48 +00:00
|
|
|
|
|
|
|
return pos[smask, ...]
|
|
|
|
|
2023-04-18 09:02:36 +00:00
|
|
|
|
2023-04-14 22:05:48 +00:00
|
|
|
def do_auto(run, cat, ic):
|
|
|
|
_config = config.get(run, None)
|
|
|
|
if _config is None:
|
2023-04-18 09:02:36 +00:00
|
|
|
warn("No configuration for run {}.".format(run), stacklevel=1)
|
2023-04-14 22:05:48 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
rvs_gen = csiborgtools.clustering.RVSinsphere(Rmax)
|
2023-04-19 14:39:35 +00:00
|
|
|
bins = numpy.logspace(
|
|
|
|
numpy.log10(config["rpmin"]),
|
|
|
|
numpy.log10(config["rpmax"]),
|
|
|
|
config["nrpbins"] + 1,
|
|
|
|
)
|
2023-04-14 22:05:48 +00:00
|
|
|
pos = read_single(_config, cat)
|
|
|
|
nrandom = int(config["randmult"] * pos.shape[0])
|
|
|
|
rp, wp = tpcf(pos, rvs_gen, nrandom, bins)
|
|
|
|
|
2023-04-18 09:02:36 +00:00
|
|
|
joblib.dump({"rp": rp, "wp": wp}, paths.tpcfauto_path(run, ic))
|
2023-04-14 22:05:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
def do_runs(ic):
|
2023-04-18 09:02:36 +00:00
|
|
|
cat = csiborgtools.read.ClumpsCatalogue(ic, paths, maxdist=Rmax)
|
2023-04-14 22:05:48 +00:00
|
|
|
for run in args.runs:
|
|
|
|
do_auto(run, cat, ic)
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# MPI task delegation #
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
|
|
|
|
if nproc > 1:
|
|
|
|
if rank == 0:
|
|
|
|
tasks = deepcopy(ics)
|
|
|
|
master_process(tasks, comm, verbose=True)
|
|
|
|
else:
|
|
|
|
worker_process(do_runs, comm, verbose=False)
|
|
|
|
else:
|
|
|
|
tasks = deepcopy(ics)
|
|
|
|
for task in tasks:
|
|
|
|
print("{}: completing task `{}`.".format(datetime.now(), task))
|
|
|
|
do_runs(task)
|
|
|
|
comm.Barrier()
|
|
|
|
|
|
|
|
|
|
|
|
if rank == 0:
|
|
|
|
print("{}: all finished.".format(datetime.now()))
|
2023-04-19 14:39:35 +00:00
|
|
|
quit() # Force quit the script
|