Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The base class of all LATC component objects (such as LATC_LAT, LATC_TEM, LATC_AFE). LATCComponent objects have sets of LATCComponents and sets of LATCRegisters. These sets may be empty. All LATCComponent objects define the following methods:

Code Block


{code:python}
name()  Returns the component's name (a string)

...


components() Returns a dict of LATCComponent objects that are under this component (may be empty).  Example:  lat.components().keys() returns ['AEM', 'TEM', 'GEM'

...


nComponents() Returns the length of the components() dict

...


registers() Returns a dict of LATCRegister objects

...

code
 

 

LATCComponentDict

 

LATCRegister

...