Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-42287: Simulated ComCam instrument model for ops-rehearsal-3 #498

Merged
merged 6 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions data/input/comCamSim/butler.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
datastore:
cls: lsst.daf.butler.datastores.fileDatastore.FileDatastore
records:
table: file_datastore_records
root: <butlerRoot>
registry:
db: sqlite:///<butlerRoot>/gen3.sqlite3
managers:
attributes: lsst.daf.butler.registry.attributes.DefaultButlerAttributeManager
collections: lsst.daf.butler.registry.collections.synthIntKey.SynthIntKeyCollectionManager
datasets: lsst.daf.butler.registry.datasets.byDimensions.ByDimensionsDatasetRecordStorageManagerUUID
datastores: lsst.daf.butler.registry.bridge.monolithic.MonolithicDatastoreRegistryBridgeManager
dimensions: lsst.daf.butler.registry.dimensions.static.StaticDimensionRecordStorageManager
opaque: lsst.daf.butler.registry.opaque.ByNameOpaqueTableStorageManager
Binary file added data/input/comCamSim/gen3.sqlite3
Binary file not shown.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions policy/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
/ucd.yaml
/ts3.yaml
/comCam.yaml
/comCamSim.yaml
2 changes: 1 addition & 1 deletion policy/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ libpathstr = lsst.sconsUtils.utils.libraryLoaderEnvironment()
# the shebang
python = "{} python".format(libpathstr)

for camera in ["latiss", "lsstCam", "imsim", "phosim", "ts8", "ucd", "ts3", "comCam"]:
for camera in ["latiss", "lsstCam", "imsim", "phosim", "ts8", "ucd", "ts3", "comCam", "comCamSim"]:
# Invoke the bin.src variant so that we do not depend on the shebang
# target having been run
commandInst = env.Command(f"{camera}.yaml", "",
Expand Down