source: MML/trunk/applications/orbit/lib/getbpmnames.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: 384 bytes
Line 
1%=============================================================
2function [varargout] = getbpmnames
3%=============================================================
4%Return BPM names in varargout{1}
5
6families={'BPMx'; 'BPMy'};
7
8for k=1:2
9  family=families{k};
10  bpm(k).name=getfamilydata(family,'CommonNames');   
11  bpm(k).z=getfamilydata(family,'Position');   
12end
13   
14varargout{1}=bpm;
Note: See TracBrowser for help on using the repository browser.