finesse.paths.OpticalPath¶
Overview
- class finesse.paths.OpticalPath(path)[source]¶
Bases:
objectRepresents a path traversing through optical connections of a
Modelinstance.The underlying data stored by instances of this class are lists of two-element tuples containing optical nodes and the components that they connect into. This list is formatted as [(from_node, to_comp)] where from_node is an
OpticalNodeinstance and to_comp can be any sub-class instance ofConnector; from_node is then an input node to to_comp.A handle to the underlying list can be obtained through accessing the property
OpticalPath.data. This is not required for iterating through the path entries however, as this class provides iterator access itself.- Parameters
path : list
A list of 2-tuples containing the path data; first element stores the
OpticalNode, second element stores the component this node feeds into.
Properties
The path data with only the component sequence. |
|
A handle to the underlying path data. |
|
The length of the optical path. |
|
The path data with only the |
|
The spaces in the optical path. |