Coverage for config/convertRepo.py : 100%

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.
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"))