Revision 667ffc4b29390a698e61bf5081e94fa93cadb7ca authored by Boud Roukema on 30 November 2020, 02:40:23 UTC, committed by Boud Roukema on 30 November 2020, 02:40:23 UTC
This commit proposes a fix for referee specific comment 10 and
major comment 3.  The term LSBG is removed from Section
3.1. Comparisons with the Bootes and SDSS void surveys
are added to Section 3.3.
1 parent 9fcccc6
Raw File
FAQ
Q1: I get strange errors of inexistent haloes or trees. Why?

A1: Try doing a clean of the post-simulation pipeline,

./project make clean-post-simulation

or of the full pipeline. In principle,

./project make clean-pipeline

should clean out all the files that might be problematic.  Try removing
other temporary built files in the .build/ subdirectories with cosmological
calculations, which in order are:

n-body-init/
haloes/
galaxies/
mergertrees/
voids/


Q2: The .mk files carry out calculations that I think
are unnecessary since they have already been done. Why?

A2: You can understand the exact reasoning used by 'make'
if you add the --debug option to your ./project command,
e.g.

./project make create-galaxies --debug

But best store all output in a log file, e.g.

(./project make create-galaxies --debug 2>&1) | tee mylogfile.1

See also Q1/A1.
back to top