Steps

Step 1

First file to be edited is model_nameListFACETProf.m.

Add a line to the model_nameListFACETProf.m file to define the name associated with the PV (and location, server, trigger, etc) e.g:

'CHER',             'CMOS:LI20:3506',   '',                'S20 sCMOS',    'cpu-li20-pm06',    'TRIG:LI20:PM06:0:TCTL',    'ACSW:LI20:NW06:2';...

Step 2

Second file to be edited is profmon_gui.m and add a line

handles.sector.F2_ELEC.PVLists={...
	'CAMR:LT10:500', ...
	...
	...
	'CMOS:LI20:3506'};

Step 3

If there is a new SIOC, also edit F2CamCheck.m

function add_SIOCs(obj)

	obj.sioc_list = {...
					 ...
					'cpu-li20-pm06', 	'SIOC:LI20:PM06'};
  • No labels