Revision c4ea5388fd94b4e790c94f3b53a870529fd570ab authored by Boud Roukema on 30 November 2020, 15:42:17 UTC, committed by Boud Roukema on 30 November 2020, 15:42:17 UTC
Step 8 in the previous edit description should
point out that the grep of VERIFIED should apply
to .build/tex/macros/verify.tex .

This commit processes the new parameters in
  `reproduce/analysis/make/verify.mk`.
1 parent e5b32ed
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