Coverage for config/convertRepo.py: 100%
5 statements
« prev ^ index » next coverage.py v7.1.0, created at 2023-02-05 18:52 -0800
« prev ^ index » next coverage.py v7.1.0, created at 2023-02-05 18:52 -0800
1# Config overrides for converting gen2 to gen3 repos.
3# For LSST data the raw file is associated with the raw_amp dataset type
4config.rawDatasetType = "raw_amp"
6# LSST names its detectors differently in the registry
7config.ccdKey = "detector"
9# Ignore these special dataset types
10config.datasetIgnorePatterns.extend(["_raw", "raw_hdu", "raw_amp"])
12import os
13config.defineVisits.load(os.path.join(os.path.dirname(__file__), "defineVisits.py"))