Skip to content

Commit

Permalink
partial plan@
Browse files Browse the repository at this point in the history
  • Loading branch information
stan-dot committed Jul 22, 2024
1 parent 96a5b31 commit d8d02b7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ classifiers = [
"Programming Language :: Python :: 3.11",
]
description = "visible light experiments at the ViSR mini-beamline"
dependencies = [] # Add project dependencies here, e.g. ["click", "numpy"]
dependencies = [
"dls_dodal @ git+https://github.com/DiamondLightSource/dodal.git@directory_provider",
"ophyd_async @ git+https://github.com/bluesky/ophyd-async",
]
dynamic = ["version"]
license.file = "LICENSE"
readme = "README.md"
Expand Down
25 changes: 25 additions & 0 deletions src/visr/plans/one_plan.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from functools import partial
from pathlib import Path
from typing import Any, Dict, Optional

import bluesky.preprocessors as bpp
from bluesky.preprocessors import finalize_decorator
from dls_bluesky_core.core import MsgGenerator, inject
from dodal.devices.linkam3 import Linkam3
from dodal.devices.tetramm import free_tetramm
from ophyd_async.core import (
HardwareTriggeredFlyable,
SameTriggerDetectorGroupLogic,
StandardDetector,
)
from ophyd_async.panda import PandA


def one_plan() -> MsgGenerator:
"""
A plan that does one thing.
long description
"""
dets = []
plan_args = []
# yield from

0 comments on commit d8d02b7

Please sign in to comment.