run_sim.py 2.73 KB
Newer Older
1
from ObservationSim.ObservationSim import Observation
2
from ObservationSim._util import parse_args, make_run_dirs, generate_pointing_list
3
4
import os
import yaml
5
import shutil
6
7
8
9

import gc
gc.enable()

Fang Yuedong's avatar
Fang Yuedong committed
10
def run_sim(Catalog):
11
12
    """
    Main method for simulation call.
13
14
15
16
17
18
19
20
21

    Parameters
    ----------
    Catalog : Class
        a catalog class which is inherited from ObservationSim.MockObject.CatalogBase 
    
    Returns
    ----------
        None
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
    """
    args = parse_args()
    if args.config_dir is None:
        args.config_dir = ''
    args.config_dir = os.path.abspath(args.config_dir)
    args.config_file = os.path.join(args.config_dir, args.config_file)
    with open(args.config_file, "r") as stream:
        try:
            config = yaml.safe_load(stream)
            for key, value in config.items():
                print (key + " : " + str(value))
        except yaml.YAMLError as exc:
            print(exc)

    # Overwrite the data and working directories
    # if they are specified by the command line inputs
    if args.data_dir is not None:
        config['data_dir'] = args.data_dir
    if args.work_dir is not None:
        config['work_dir'] = args.work_dir

43
44
45
46
47
48
    # Some default values
    if "bias_16channel" not in config:
        config["bias_16channel"] = False
    if "gain_16channel" not in config:
        config["gain_16channel"] = False

49
    # Generate lists pointings based on the input pointing list (or default 
50
51
    # pointing RA, DEC) and "config["obs_setting"]["run_pointings"]".
    # "config['obs_setting']['np_cal']"" is the number of CAL pointings which will be 
52
    # appended to the front.
53
    # NOTE: the implementation of gerenating time_stamps is temporary.
54
    pointing_list = generate_pointing_list(config=config, pointing_filename=config['pointing_file'], data_dir=config['pointing_dir'])
55
56

    # Make the main output directories
57
58
    run_dir = make_run_dirs(work_dir=config['work_dir'], run_name=config['run_name'], pointing_list=pointing_list)
    shutil.copy(args.config_file, run_dir)
59
60
61
62
63
64

    # Initialize the simulation
    obs = Observation(config=config, Catalog=Catalog, work_dir=config['work_dir'], data_dir=config['data_dir'])
    
    # Run simulation
    obs.runExposure_MPI_PointingList(
65
        pointing_list=pointing_list,
66
67
68
69
        use_mpi=config["run_option"]["use_mpi"],
        chips=config["obs_setting"]["run_chips"])

if __name__=='__main__':
70
71
72
73
    # To run with the example input catalog
    # from Catalog.Catalog_example import Catalog_example
    # run_sim(Catalog=Catalog_example)
    
74
75
76
77
78
79
80
    # # To run cycle-3 simulation
    # from Catalog.C3Catalog import C3Catalog
    # run_sim(Catalog=C3Catalog)

    # To run calibration field NGP simulation
    from Catalog.NGPCatalog import NGPCatalog
    run_sim(Catalog=NGPCatalog)