Skip to content
Snippets Groups Projects
Commit 700a54aa authored by Björn Senfftleben's avatar Björn Senfftleben
Browse files

make dacs file a parameter

parent c85f63b8
No related merge requests found
...@@ -233,7 +233,7 @@ class Tempus(Device): ...@@ -233,7 +233,7 @@ class Tempus(Device):
# os.system(f'{self.CFG_DIR}/B3_timing_dacs.py') cannot be used, # os.system(f'{self.CFG_DIR}/B3_timing_dacs.py') cannot be used,
# as the script accesses the mytpx4 instance # as the script accesses the mytpx4 instance
await self.send_command( await self.send_command(
f"exec(open('{self.CFG_DIR}/B3_timing_dacs.py').read())") f"exec(open('{self.CFG_DIR}/{self.dacsFile.value}').read())")
await self.send_command( await self.send_command(
f"mytpx4.setDAC('DAC_Vthreshold', {self.vthreshold.value})") f"mytpx4.setDAC('DAC_Vthreshold', {self.vthreshold.value})")
await self.send_command( await self.send_command(
...@@ -338,6 +338,15 @@ class Tempus(Device): ...@@ -338,6 +338,15 @@ class Tempus(Device):
defaultValue=100, defaultValue=100,
allowedStates={State.INIT, State.ON}) allowedStates={State.INIT, State.ON})
@String(
displayedName="DACS py File",
defaultValue="B3_timing_dacs.py",
allowedStates={State.INIT, State.ON})
async def dacsFile(self, value):
self.dacsFile = value
# if self.state not in (State.UNKNOWN, State.ERROR):
# self.state = State.INIT # force re-initialization
@String( @String(
displayedName="Equalisation npy File", displayedName="Equalisation npy File",
defaultValue="B3_equalisation_HV100.npy", defaultValue="B3_equalisation_HV100.npy",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment