當前位置: 首頁>>代碼示例>>Python>>正文


Python Constants.FSS方法代碼示例

本文整理匯總了Python中constants.Constants.FSS方法的典型用法代碼示例。如果您正苦於以下問題:Python Constants.FSS方法的具體用法?Python Constants.FSS怎麽用?Python Constants.FSS使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在constants.Constants的用法示例。


在下文中一共展示了Constants.FSS方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: run_basis

# 需要導入模塊: from constants import Constants [as 別名]
# 或者: from constants.Constants import FSS [as 別名]
def run_basis(FSS):
	"""
		Runs crosscorrlation vs wave plartes experiment.
	"""
	
	print 'Running diag basis with FSS', FSS.astype('|S4').tostring()

	constants = Constants()
	constants.FSS = FSS
	experiment = Experiment(constants)
	
	experiment.bench.setHWP(np.pi/8, np.pi/8)
	experiment.bench.setLabMatrix('NBSNBS HWPHWP SS PBSPBS')
	
	experiment.run('basis')
	
	experiment.pcm.channel('D1D3').normalize(experiment.laser.pulse_width)
	experiment.pcm.channel('D1D4').normalize(experiment.laser.pulse_width)
	experiment.pcm.channel('D2D3').normalize(experiment.laser.pulse_width)
	experiment.pcm.channel('D2D4').normalize(experiment.laser.pulse_width)

	
	for key in experiment.pcm._channels:
		x = experiment.pcm._channels[key].bin_edges
		y = experiment.pcm._channels[key].counts
		save.savedata(x, y, name = 'diag' + '_' + key + '_' + FSS.astype('|S4').tostring(), dir = 'auto_g2_v_fss_dephase2.5e10secondaty0.18')

	g2 = experiment.pcm.channel('D1D3').g2
	g2_cross = experiment.pcm.channel('D1D4').g2

	return g2_cross
開發者ID:eoinmurray,項目名稱:icarus2,代碼行數:33,代碼來源:auto_g2_v_fss.py


注:本文中的constants.Constants.FSS方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。