source: MML/trunk/mml/setpathsps.m @ 4

Last change on this file since 4 was 4, checked in by zhangj, 10 years ago

Initial import--MML version from SOLEIL@2013

File size: 517 bytes
Line 
1function [MachineName, SubMachineName, LinkFlag, MMLROOT] = setpathnsps(LinkFlag)
2%SETPATHSPS - Initializes the Matlab Middle Layer (MML) for SPS
3%  [MachineName, SubMachineName, OnlineLinkMethod, MMLROOT] = setpathsps(OnlineLinkMethod)
4%
5%  INPUTS
6%  1. OnlineLinkMethod - 'MCA', 'LabCA', SCA
7%
8%  Written by Greg Portmann
9
10
11Machine = 'SPS';
12
13
14% Input parsing
15if nargin < 1
16    LinkFlag = 'OPC';
17end
18
19
20[MachineName, SubMachineName, LinkFlag, MMLROOT] = setpathmml(Machine, 'StorageRing', 'StorageRing', LinkFlag);
21
22
Note: See TracBrowser for help on using the repository browser.