@@ -176,15 +176,22 @@ AUTO_SCALE = 0 # 0 / 1
176
176
#
177
177
# o BEST_FIT: output best-fit SPS model
178
178
#
179
+ # o BEST_FROM_SIM: use the median of the Monte Carlo simulation as
180
+ # best-fit instead of the model with the smallest chi squared on
181
+ # the original (unperturbed) photometry.
182
+ #
183
+ # o SAVE_SIM: save the best-fit parameters for each Monte Carlo
184
+ # simulation for all sources in the "best_fits" directory.
185
+ #
179
186
#-----------------------------------------------------------------------
180
187
181
188
OUTPUT_DIR = ''
182
189
OUTPUT_FILE = ''
183
190
N_SIM = 100
184
191
C_INTERVAL = 68 # 68 / 95 / 99 or [68,95] etc
185
- SAVE_SIM = 0 # 0 / 1
186
- BEST_FROM_SIM = 0 # 0 / 1
187
192
BEST_FIT = 0 # 0 / 1
193
+ BEST_FROM_SIM = 0 # 0 / 1
194
+ SAVE_SIM = 0 # 0 / 1
188
195
189
196
190
197
#--- CHOOSE STELLAR POPULATIONS LIBRARY --------------------------------
@@ -265,7 +272,9 @@ MY_SFH = ''
265
272
#
266
273
# o If a grid has already been made for a specific LIBRARY, RESOLUTION,
267
274
# IMF, tau, age, z, A_v, metallicity, and filter set and/or spectral
268
- # elements, the grid will be automatically read from the cache.
275
+ # elements, the grid will be automatically read from the cache unless
276
+ # the NO_CACHE option is set to 1. This option will also prevent the
277
+ # code from writing this cache in the first place.
269
278
#
270
279
# o NO_MAX_AGE: By default (0), ages that exceed the age of the universe
271
280
# are not allowed. However, when NO_MAX_AGE is put to 1 you can have
@@ -288,7 +297,7 @@ A_V_MIN = 0. # [mag]
288
297
A_V_MAX = 3. # [mag]
289
298
A_V_STEP = 0.1 # [mag]
290
299
METAL = [0.02] # [0.0096,0.019,0.03]
291
- NO_CACHE = 0
300
+ NO_CACHE = 0 # 0 / 1
292
301
293
302
294
303
#--- COSMOLOGY ---------------------------------------------------------
0 commit comments