Skip to content
Snippets Groups Projects
Commit e7049b16 authored by (INACTIVE) Marcel Bajdel (new marcel.bajdel)'s avatar (INACTIVE) Marcel Bajdel (new marcel.bajdel) :rocket:
Browse files

add dir to the beamline.py

parent 76220f0c
No related branches found
No related tags found
No related merge requests found
......@@ -99,14 +99,17 @@ import asyncio
from beamlinetools.devices.genNodeClass import Reactor_cell, Gas_dosing
from pprint import pprint
# relative path to directory where generated Module should be stored
genCodeDir = "beamlinetools/devices"
# # Connect to Gas Dosing SEC Node and generate ophyd device trees
gas_d = SECoP_Node_Device.create('localhost','10800',RE.loop)
# # Connect to Reactor Cell SEC Node and generate ophyd device tree
reactor_c = SECoP_Node_Device.create('localhost','10801',RE.loop)
gas_d.class_from_instance()
reactor_c.class_from_instance()
gas_d.class_from_instance(genCodeDir)
reactor_c.class_from_instance(genCodeDir)
reactor_c:Reactor_cell = reactor_c
gas_d:Gas_dosing = gas_d
\ No newline at end of file
gas_d:Gas_dosing = gas_d
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