本文整理汇总了Python中seq.sequence函数的典型用法代码示例。如果您正苦于以下问题:Python sequence函数的具体用法?Python sequence怎么用?Python sequence使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了sequence函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: float
import math
import seq, wfm, gen, cnc, highfield_uvred, odt, andor
global report
report=gen.getreport()
#PARAMETERS
stepsize = float(report['SEQ']['stepsize'])
tof = float(report['ANDOR']['tof'])
exp = float(report['ANDOR']['exp'])
noatoms = float(report['ANDOR']['noatoms'])
#SEQUENCE
s=seq.sequence(stepsize)
s=gen.initial(s)
s.digichg('hfimg',1)
s.digichg('odt7595',0)
#Do CNC, UVMOT, and field ramps
s, toENDBFIELD = highfield_uvred.go_to_highfield(s)
# Add evaporation ramp to ODT
free = float(report['EVAP']['free'])
image= float(report['UVLS']['evapdt'])
buffer=10.0 #Time needed to re-latch the trigger for the AOUTS
if free < buffer + toENDBFIELD :
开发者ID:PedroMDuarte,项目名称:apparatus3-seq,代码行数:30,代码来源:UVRED_Lightshift.py
示例2:
import seq, wfm, gen, cnc, odt, andor, highfield_uvmot
report=gen.getreport()
#---GET SECTION CONTENTS
SEQ = gen.getsection('SEQ')
EVAP = gen.getsection('EVAP')
ANDOR = gen.getsection('ANDOR')
ODT = gen.getsection('ODT')
FB = gen.getsection('FESHBACH')
ZC = gen.getsection('ZEROCROSS')
LI = gen.getsection('LATTICEINT')
#---SEQUENCE
s=seq.sequence(SEQ.stepsize)
s=gen.initial(s)
#Get hfimg ready
s.digichg('hfimg',1)
#If using analoghfimg get it ready
if ANDOR.analoghfimg == 1:
s.digichg('analogimgttl',1)
s.digichg('odt7595',0)
# Do CNC, UVMOT, and field ramps
s, toENDBFIELD = highfield_uvmot.go_to_highfield(s)
开发者ID:brownfriend,项目名称:apparatus3-seq,代码行数:30,代码来源:Load_Lattice_Interacting.py
注:本文中的seq.sequence函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论