Coverage for config/convertRepo.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v6.4, created at 2022-05-24 03:41 -0700

1# Config overrides for converting gen2 to gen3 repos. 

2 

3# For LSST data the raw file is associated with the raw_amp dataset type 

4config.rawDatasetType = "raw_amp" 

5 

6# LSST names its detectors differently in the registry 

7config.ccdKey = "detector" 

8 

9# Ignore these special dataset types 

10config.datasetIgnorePatterns.extend(["_raw", "raw_hdu", "raw_amp"]) 

11 

12import os 

13config.defineVisits.load(os.path.join(os.path.dirname(__file__), "defineVisits.py"))