-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SINQ: Added setup for mobile andor CCD camera and added startup setting
polariser Change-Id: Ic73f1c3b9b67698069424f1dccba2df2d6bef1ec Reviewed-on: https://forge.frm2.tum.de/review/c/frm2/nicos/nicos/+/35003 Reviewed-by: Jens Krueger <[email protected]> Tested-by: Jenkins Automated Tests <[email protected]>
- Loading branch information
smathis
authored and
Jens Krueger
committed
Nov 27, 2024
1 parent
32441f8
commit 46c4cf2
Showing
2 changed files
with
55 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
description = 'Setup for the ANDOR CCD camera at AMOR using the CCDWWW server without counter box' | ||
|
||
excludes = ['detector', 'detector_mon'] | ||
|
||
devices = dict( | ||
ccdwww_connector = device('nicos_sinq.boa.devices.ccdwww.CCDWWWConnector', | ||
description = 'Connector for CCDWWW', | ||
baseurl = 'http://mpc2704:8080/ccd', | ||
base64auth = 'xxx', | ||
byteorder = 'big', | ||
comdelay = 1., | ||
comtries = 5, | ||
), | ||
ccdwww = device('nicos_sinq.boa.devices.ccdwww.AndorCCD', | ||
description = 'CCDWWW image channel', | ||
iscontroller = True, | ||
connector = 'ccdwww_connector', | ||
shape = (1024, 1024), | ||
pollinterval = None, | ||
maxage = 30, | ||
), | ||
ccd_cooler = device('nicos_sinq.boa.devices.ccdwww.CCDCooler', | ||
description = 'CCD sensor cooler', | ||
connector = 'ccdwww_connector', | ||
unit = 'state', | ||
pollinterval = None, | ||
maxage = 30, | ||
fmtstr = '%s' | ||
), | ||
cooler_temperature = device('nicos.devices.generic.paramdev.ReadonlyParamDevice', | ||
description = 'Actual temperature reading', | ||
device = 'ccd_cooler', | ||
parameter = 'temperature', | ||
), | ||
andorccd_det = device('nicos.devices.generic.Detector', | ||
description = 'Dummy detector to encapsulate ccdwww', | ||
monitors = [ | ||
'ccdwww', | ||
], | ||
timers = [ | ||
'ccdwww', | ||
], | ||
images = [ | ||
'ccdwww', | ||
], | ||
), | ||
) | ||
|
||
startupcode = ''' | ||
SetDetectors(andorccd_det) | ||
''' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters