Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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 

12config.curatedCalibrations.extend(["defects", "qe_curve"]) 

13 

14import os 

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