-
Notifications
You must be signed in to change notification settings - Fork 4
/
test_sampling.yml
61 lines (51 loc) · 2.17 KB
/
test_sampling.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Python modules that are imported to find
# stage classes. Any stages imported in these
# modules are automatically detected and their names can
# be used below
modules: bbpower
# The launcher to use
# These are defined in bbpipe/sites
launcher: local
# The list of stages to run and the number of processors
# to use for each.
stages:
- name: BBCompSep
nprocess: 1
- name: BBPlotter
nprocess: 1
# Definitions of where to find inputs for the overall pipeline.
# Any input required by a pipeline stage that is not generated by
# a previous stage must be defined here. They are listed by tag.
inputs:
# This is the file containing the data power spectra,
# covariance and other metadata (window functions, bandpasses,
# beams etc.).
cells_coadded: ./test/test_out/cls_coadd.fits
# This contains a fiducial power spectrum for a model that
# roughly resembles the data. This is needed for the
# Hamimeche and Lewis (H&L) likelihood. If you're not using that,
# you can put garbage here.
cells_fiducial: ./test/test_out/cls_fid.fits
# This contains the noise power spectrum. Only needed for
# H&L.
cells_noise: ./test/test_out/cls_noise.fits
# Null power spectra. Not really needed if you only care about
# the likelihood part of the pipeline. Otherwise it should
# contain a set of power spectrum combinations that should
# be compatible with zero.
cells_null: ./test/test_out/cls_coadd.fits
# Power spectra computed by coadding all the different data
# splits (including auto-correlations). As above, ignore this
# if you only care about the likelihood part of the pipeline.
cells_coadded_total: ./test/test_out/cls_coadd.fits
# Overall configuration file describing the options for
# the different pipeline stages.
config: ./test/test_config_sampling.yml
# If all the outputs for a stage already exist then do not re-run that stage
resume: False
# Put all the output files in this directory:
output_dir: ./test/test_out
# Put the logs from the individual stages in this directory:
log_dir: ./test/test_out
# Put the log for the overall pipeline infrastructure in this file:
pipeline_log: ./test/test_out/log.txt