-
Type:
Story
-
Status: Done (View Workflow)
-
Priority:
Normal
-
Resolution: Done
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
Currently the FiberTraceSet returned by butler.get("fiberTraces", ...) omits broken fibres, so e.g. for SuNSS it contains 251 not 254 entries. This means that it lines up neither with pfsConfig[pfsConfig.spectrograph == n] (using post-PIPE2D-770 syntax) nor with pfsArm/pfsMerged files.
Please fix this, and carry out an audit for any other data products that don't have an entry for every fibre.
In the short run, the "solution" is
pfsConfig = butler.get("pfsConfig", dataId) fiberProfiles = butler.get("fiberProfiles", dataId) fid0 = fiberProfiles.fiberId[0] for fid in set(pfsConfig.fiberId) - set(fiberProfiles.fiberId): fiberProfiles[fid] = fiberProfiles[fid0]
- relates to
-
PIPE2D-890 fiberProfileSet does not return the expected number of fibers
-
- Open
-