source: MML/trunk/applications/orbit/lib/getcornames.m

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

Initial import--MML version from SOLEIL@2013

File size: 379 bytes
Line 
1%=============================================================
2function [varargout] = getcornames
3%=============================================================
4%Return COR names in varargout{1}
5
6families={'HCM'; 'VCM'};
7
8for k=1:2
9  family=families{k};
10  cor(k).name=getfamilydata(family,'CommonNames');   
11  cor(k).z=getfamilydata(family,'Position');   
12end
13
14varargout{1}=cor;
Note: See TracBrowser for help on using the repository browser.