source: MML/trunk/machine/SOLEIL/StorageRing/getrmn.m

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

To have a stable version on the server.

  • Property svn:executable set to *
File size: 942 bytes
Line 
1function [RMN, tout, DataTime, ErrorFlag] = getrmn(varargin)
2%GETDCCT - returns the beam current
3%  [RMN, tout, DataTime, ErrorFlag] = getdcct(t, InputFlags)
4%
5%  OUTPUTS
6%  1. RMN = storage ring electron beam current
7
8%  INPUTS
9%  1. 'Struct' will return a data structure
10%     'Numeric' will return numeric outputs {Defaul}
11%  2. 'Physics'  - Use physics  units (optional override of units)
12%     'Hardware' - Use hardware units (optional override of units)
13%  3. 'Online' - Get data online (optional override of the mode)
14%     'Model'  - Get data from the model (optional override of the mode)
15%     'Manual' - Get data manually (optional override of the mode)
16%
17%  NOTE
18%  1. This function is just an alias for getam('RMN', ...)
19
20%
21%  Written by Laurent S. Nadolski
22
23
24if nargout > 2
25    [RMN, tout, DataTime, ErrorFlag] = getpv('RMN', 'Monitor', [], varargin{:});
26else
27    [RMN, tout] = getpv('RMN', 'Monitor', [], varargin{:});
28end
29
Note: See TracBrowser for help on using the repository browser.