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

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

Initial import--MML version from SOLEIL@2013

File size: 174 bytes
Line 
1function Test = ismca
2%ISMCA - Is MCA being used as the control connection?
3%
4
5
6if isempty(findstr(lower(which('getpvonline')), 'mca'))
7    Test = 0;
8else
9    Test = 1;
10end
11
Note: See TracBrowser for help on using the repository browser.