blob: c6be96711fee7954ed166da54cdae37c804c074c (
plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Configurations for "fg21sim"
# -*- mode: conf -*-
#
# Syntax: `ConfigObj`, https://github.com/DiffSK/configobj
#
# There are various configuration options that specify the input data
# and/or templates required by the simulations, the properties of the input
# data, the output products, as well as some parameters affecting the
# simulation behaviors.
#
# This file contains the options corresponding the extragalactic emission
# components, which currently includes the following components:
# - clusters
#
# NOTE:
# - The input templates for simulations should be HEALPix full-sky maps.
# - The input catalog should be in CSV format.
[extragalactic]
# Emissions from the clusters of galaxies
[[clusters]]
# The clusters catalog derived from the Hubble Volume Project (CSV file)
catalog = string(default=None)
# Output the effective/inuse clusters catalog data (CSV file)
catalog_outfile = string(default=None)
# The fraction that a cluster hosts a radio halo
halo_fraction = float(default=None)
# Resolution (unit: arcmin) for simulating each cluster, which are finally
# mapped to the HEALPix map of Nside specified in "[common]" section.
resolution = float(default=0.5)
# Filename prefix for this component
prefix = string(default="egcluster")
# Whether save this component to disk
save = boolean(default=True)
# Output directory to save the simulated results
output_dir = string(default=None)
# Extragalactic point sources
[[pointsources]]
# Whether save this point source catelogue to disk
save = boolean(default=True)
# Output directory to save the simulated catelogues
output_dir = string(default="PS_tables")
# PS components to be simulated
pscomponents=string_list(default=list())
# Resolution [arcmin]
resolution=float(default=0.6)
# Number of each type of point source
# Star forming
[[[starforming]]]
# Number of samples
numps = integer(default=1000)
# Prefix
prefix = string(default="SF")
[[[starbursting]]]
# Number of samples
numps = integer(default=1000)
# Prefix
prefix = string(default="SB")
[[[radioquiet]]]
# Number of samples
numps = integer(default=1000)
# Prefix
prefix = string(default="RQ")
[[[FRI]]]
# Number of samples
numps = integer(default=1000)
# Prefix
prefix = string(default="FRI")
[[[FRII]]]
# Number of samples
numps = integer(default=1000)
# Prefix
prefix = string(default="FRII")
|