EUROPEAN
SYNCHROTRON
RADIATION
FACILITY
INSTALLATION EUROPEENNE DE RAYONNEMENT SYNCHROTRON
 TANGO Programmer's Guide
Tango Naming Conventions:
	 
	
	Commands and Attributes:
	
		Between clients and servers, they are case unsensitive.
		But by convention it is recommended to build it by appending all words
		starting with capital letter.
		(i.e. ReadValues,  StartCounter, .......)
		
		Commands will be executed in a method where words will
		 be splited by underscore char.
		(i.e. read_values,  start_counter, .......)
		Attributes will be read or write in a method where attribute name
		is preceded by read or write key.
		(i.e. read_Counter,  write_CounterLimits, .......)
		
			NOTE: the method read_attr_hardware(vector &attr_list)
			will be called before the above method.
		
	 
	
 	Class and Device Properties:
	
		They are case sensitive:
		By convention it is recommended to build it by appending all words 
		starting with capital letter.
		(i.e. DefaultValue,  ReadDeviceName, .......)