Skip to content

Tao

pytao.Tao

Tao(init='', so_lib='', *, plot='tao', beam_file=None, beam_init_position_file=None, building_wall_file=None, command='', data_file=None, debug=False, disable_smooth_line_calc=False, external_plotting=False, geometry='', hook_init_file=None, init_file=None, lattice_file=None, log_startup=False, no_stopping=False, noinit=False, noplot=False, nostartup=False, no_rad_int=False, plot_file=None, prompt_color='', reverse=False, rf_on=False, quiet=False, slice_lattice='', start_branch_at='', startup_file=None, symbol_import=False, var_file=None)

Bases: TaoCore

Communicate with Tao using ctypes.

Parameters:

Name Type Description Default
init str

Initialization string for Tao. Same as the tao command-line, including "-init" and such. Shell variables in init strings will be expanded by Tao. For example, an init string containing $HOME would be replaced by your home directory.

''
so_lib str

Path to the Tao shared library. Auto-detected if not specified.

''
plot (str, bool)

Use pytao's plotting mechanism with matplotlib or bokeh, if available. If True, pytao will pick an appropriate plotting backend. If False or "tao", Tao plotting will be used. (Default) If "mpl", the pytao matplotlib plotting backend will be selected. If "bokeh", the pytao Bokeh plotting backend will be selected.

'tao'
beam_file str or Path

File containing the tao_beam_init namelist.

None
beam_init_position_file Path or str

File containing initial particle positions.

None
building_wall_file str or Path

Define the building tunnel wall

None
command str

Commands to run after startup file commands

''
data_file str or Path

Define data for plotting and optimization

None
debug bool

Debug mode for Wizards

False
disable_smooth_line_calc bool

Disable the smooth line calc used in plotting

False
external_plotting bool

Tells Tao that plotting is done externally to Tao.

False
geometry "wxh" or (width, height) tuple

Plot window geometry (pixels)

''
hook_init_file pathlib.Path or str

Init file for hook routines (Default = tao_hook.init)

None
init_file str or Path

Tao init file

None
lattice_file str or Path

Bmad lattice file

None
log_startup bool

Write startup debugging info

False
no_stopping bool

For debugging : Prevents Tao from exiting on errors

False
noinit bool

Do not use Tao init file.

False
noplot bool

Do not open a plotting window

False
nostartup bool

Do not open a startup command file

False
no_rad_int bool

Do not do any radiation integrals calculations.

False
plot_file str or Path

Plotting initialization file

None
prompt_color str

Set color of prompt string. Default is blue.

''
reverse bool

Reverse lattice element order?

False
rf_on bool

Use "--rf_on" to turn off RF (default is now RF on)

False
quiet bool

Suppress terminal output when running a command file?

False
slice_lattice str

Discards elements from lattice that are not in the list

''
start_branch_at str

Start lattice branch at element.

''
startup_file str or Path

Commands to run after parsing Tao init file

None
symbol_import bool

Import symbols defined in lattice files(s)?

False
var_file str or Path

Define variables for plotting and optimization

None

Attributes:

Name Type Description
plot_backend_name str or None

Plotting backend name, if using pytao plotting. None indicates that internal Tao plotting is to be used. Changing the backend may require reinitialization to enable external plotting.

init_output list of str

Tao initialization output, recorded when the Tao object first initializes. Subsequent calls to init() will override this variable.

Source code in pytao/interface_commands.py
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
@override
def __init__(
    self,
    init: str = "",
    so_lib: str = "",
    *,
    plot: Union[str, bool] = "tao",
    beam_file: Optional[AnyPath] = None,
    beam_init_position_file: Optional[AnyPath] = None,
    building_wall_file: Optional[AnyPath] = None,
    command: str = "",
    data_file: Optional[AnyPath] = None,
    debug: bool = False,
    disable_smooth_line_calc: bool = False,
    external_plotting: bool = False,
    geometry: Union[str, Tuple[int, int]] = "",
    hook_init_file: Optional[AnyPath] = None,
    init_file: Optional[AnyPath] = None,
    lattice_file: Optional[AnyPath] = None,
    log_startup: bool = False,
    no_stopping: bool = False,
    noinit: bool = False,
    noplot: bool = False,
    nostartup: bool = False,
    no_rad_int: bool = False,
    plot_file: Optional[AnyPath] = None,
    prompt_color: str = "",
    reverse: bool = False,
    rf_on: bool = False,
    quiet: bool = False,
    slice_lattice: str = "",
    start_branch_at: str = "",
    startup_file: Optional[AnyPath] = None,
    symbol_import: bool = False,
    var_file: Optional[AnyPath] = None,
):
    self._init_shared_library(so_lib=so_lib)
    self.plot_backend_name = None
    self._graph_managers = {}
    self._tao_version_checked = False
    # NOTE: do not call super() here - we handle the init arguments on our
    # own.
    # super().__init__(init="", so_lib=so_lib)
    self.init(
        cmd=init,
        plot=plot,
        beam_file=beam_file,
        beam_init_position_file=beam_init_position_file,
        building_wall_file=building_wall_file,
        command=command,
        data_file=data_file,
        debug=debug,
        disable_smooth_line_calc=disable_smooth_line_calc,
        external_plotting=external_plotting,
        geometry=geometry,
        hook_init_file=hook_init_file,
        init_file=init_file,
        lattice_file=lattice_file,
        log_startup=log_startup,
        no_stopping=no_stopping,
        noinit=noinit,
        noplot=noplot,
        nostartup=nostartup,
        no_rad_int=no_rad_int,
        plot_file=plot_file,
        prompt_color=prompt_color,
        reverse=reverse,
        rf_on=rf_on,
        quiet=quiet,
        slice_lattice=slice_lattice,
        start_branch_at=start_branch_at,
        startup_file=startup_file,
        symbol_import=symbol_import,
        var_file=var_file,
    )
    try:
        self.register_cell_magic()
    except NameError:
        # Not in IPython
        pass
    except Exception:
        logger.debug("Failed to register cell magic", exc_info=True)

Attributes

pytao.Tao.bokeh property
bokeh

Get the Bokeh graph manager.

pytao.Tao.matplotlib property
matplotlib

Get the Matplotlib graph manager.

pytao.Tao.plot_manager property
plot_manager

The currently-configured plot graph manager.

This can be configured at initialization time by specifying plot="mpl", for example. This may also be reconfigured by changing the attribute plot_backend_name.

Functions

pytao.Tao.beam
beam(ix_branch, *, ix_uni='', verbose=False, as_dict=True, raises=True)

Output beam parameters that are not in the beam_init structure.

Parameters:

Name Type Description Default
ix_uni optional
''
ix_branch ''
required

Returns:

Type Description
string_list
Notes

Command syntax: pipe beam {ix_uni}@{ix_branch}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe. {ix_branch} is a lattice branch index. Defaults to s%global%default_branch.

Note: To set beam_init parameters use the "set beam" command.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/csr_beam_tracking/tao.init args: ix_uni: 1 ix_branch: 0

Source code in pytao/interface_commands.py
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
def beam(self, ix_branch, *, ix_uni="", verbose=False, as_dict=True, raises=True):
    """

    Output beam parameters that are not in the beam_init structure.

    Parameters
    ----------
    ix_uni : optional
    ix_branch : ""

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe beam {ix_uni}@{ix_branch}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {ix_branch} is a lattice branch index. Defaults to s%global%default_branch.

    Note: To set beam_init parameters use the "set beam" command.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/csr_beam_tracking/tao.init
     args:
       ix_uni: 1
       ix_branch: 0

    """
    cmd = f"pipe beam {ix_uni}@{ix_branch}"
    if verbose:
        print(cmd)
    return self.__execute(cmd, as_dict, raises, method_name="beam", cmd_type="string_list")
pytao.Tao.beam_init
beam_init(ix_branch, *, ix_uni='', verbose=False, as_dict=True, raises=True)

Output beam_init parameters.

Parameters:

Name Type Description Default
ix_uni optional
''
ix_branch ''
required

Returns:

Type Description
string_list
Notes

Command syntax: pipe beam_init {ix_uni}@{ix_branch}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe. {ix_branch} is a lattice branch index. Defaults to s%global%default_branch.

Note: To set beam_init parameters use the "set beam_init" command

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/csr_beam_tracking/tao.init args: ix_uni: 1 ix_branch: 0

Source code in pytao/interface_commands.py
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
def beam_init(self, ix_branch, *, ix_uni="", verbose=False, as_dict=True, raises=True):
    """

    Output beam_init parameters.

    Parameters
    ----------
    ix_uni : optional
    ix_branch : ""

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe beam_init {ix_uni}@{ix_branch}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {ix_branch} is a lattice branch index. Defaults to s%global%default_branch.

    Note: To set beam_init parameters use the "set beam_init" command

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/csr_beam_tracking/tao.init
     args:
       ix_uni: 1
       ix_branch: 0

    """
    cmd = f"pipe beam_init {ix_uni}@{ix_branch}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="beam_init", cmd_type="string_list"
    )
pytao.Tao.bmad_com
bmad_com(*, verbose=False, as_dict=True, raises=True)

Output bmad_com structure components.

Returns:

Type Description
string_list
Notes

Command syntax: pipe bmad_com

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args:

Source code in pytao/interface_commands.py
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
def bmad_com(self, *, verbose=False, as_dict=True, raises=True):
    """

    Output bmad_com structure components.

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe bmad_com

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:

    """
    cmd = "pipe bmad_com"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="bmad_com", cmd_type="string_list"
    )
pytao.Tao.branch1
branch1(ix_uni, ix_branch, *, verbose=False, as_dict=True, raises=True)

Output lattice branch information for a particular lattice branch.

Parameters:

Name Type Description Default
ix_uni ''
required
ix_branch ''
required

Returns:

Type Description
string_list
Notes

Command syntax: pipe branch1 {ix_uni}@{ix_branch}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe. {ix_branch} is a lattice branch index. Defaults to s%global%default_branch.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ix_uni: 1 ix_branch: 0

Source code in pytao/interface_commands.py
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
def branch1(self, ix_uni, ix_branch, *, verbose=False, as_dict=True, raises=True):
    """

    Output lattice branch information for a particular lattice branch.

    Parameters
    ----------
    ix_uni : ""
    ix_branch : ""

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe branch1 {ix_uni}@{ix_branch}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {ix_branch} is a lattice branch index. Defaults to s%global%default_branch.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ix_uni: 1
       ix_branch: 0

    """
    cmd = f"pipe branch1 {ix_uni}@{ix_branch}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="branch1", cmd_type="string_list"
    )
pytao.Tao.building_wall_graph
building_wall_graph(graph, *, verbose=False, as_dict=True, raises=True)

Output (x, y) points for drawing the building wall for a particular graph.

Parameters:

Name Type Description Default
graph
required

Returns:

Type Description
list of dicts
Notes

Command syntax: pipe building_wall_graph {graph}

Where: {graph} is a plot region graph name.

Note: The graph defines the coordinate system for the (x, y) points.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_wall args: graph: floor_plan.g

Source code in pytao/interface_commands.py
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
def building_wall_graph(self, graph, *, verbose=False, as_dict=True, raises=True):
    """

    Output (x, y) points for drawing the building wall for a particular graph.

    Parameters
    ----------
    graph

    Returns
    -------
    list of dicts

    Notes
    -----
    Command syntax:
      pipe building_wall_graph {graph}

    Where:
      {graph} is a plot region graph name.

    Note: The graph defines the coordinate system for the (x, y) points.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_wall
     args:
       graph: floor_plan.g

    """
    cmd = f"pipe building_wall_graph {graph}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="building_wall_graph", cmd_type="string_list"
    )
pytao.Tao.building_wall_list
building_wall_list(*, ix_section='', verbose=False, as_dict=True, raises=True)

Output List of building wall sections or section points

Parameters:

Name Type Description Default
ix_section optional
''

Returns:

Type Description
list of dicts
Notes

Command syntax: pipe building_wall_list {ix_section}

Where: {ix_section} is a building wall section index.

If {ix_section} is not present, a list of building wall sections is given. If {ix_section} is present, a list of section points is given.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_wall args: ix_section:

Example: 2 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_wall args: ix_section: 1

Source code in pytao/interface_commands.py
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
def building_wall_list(self, *, ix_section="", verbose=False, as_dict=True, raises=True):
    """

    Output List of building wall sections or section points

    Parameters
    ----------
    ix_section : optional

    Returns
    -------
    list of dicts

    Notes
    -----
    Command syntax:
      pipe building_wall_list {ix_section}

    Where:
      {ix_section} is a building wall section index.

    If {ix_section} is not present, a list of building wall sections is given.
    If {ix_section} is present, a list of section points is given.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_wall
     args:
       ix_section:

    Example: 2
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_wall
     args:
       ix_section: 1

    """
    cmd = f"pipe building_wall_list {ix_section}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="building_wall_list", cmd_type="string_list"
    )
pytao.Tao.building_wall_point
building_wall_point(ix_section, ix_point, z, x, radius, z_center, x_center, *, verbose=False, as_dict=True, raises=True)

add or delete a building wall point

Parameters:

Name Type Description Default
ix_section
required
ix_point
required
z
required
x
required
radius
required
z_center
required
x_center
required

Returns:

Type Description
None
Notes

Command syntax: pipe building_wall_point {ix_section}^^{ix_point}^^{z}^^{x}^^{radius}^^{z_center}^^{x_center}

Where: {ix_section} -- Section index. {ix_point} -- Point index. Points of higher indexes will be moved up if adding a point and down if deleting. {z}, etc... -- See tao_building_wall_point_struct components. -- If {z} is set to "delete" then delete the point.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_wall args: ix_section: 1 ix_point: 1 z: 0 x: 0 radius: 0 z_center: 0 x_center: 0

Source code in pytao/interface_commands.py
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
def building_wall_point(
    self,
    ix_section,
    ix_point,
    z,
    x,
    radius,
    z_center,
    x_center,
    *,
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    add or delete a building wall point

    Parameters
    ----------
    ix_section
    ix_point
    z
    x
    radius
    z_center
    x_center

    Returns
    -------
    None

    Notes
    -----
    Command syntax:
      pipe building_wall_point {ix_section}^^{ix_point}^^{z}^^{x}^^{radius}^^{z_center}^^{x_center}

    Where:
      {ix_section}    -- Section index.
      {ix_point}      -- Point index. Points of higher indexes will be moved up
                           if adding a point and down if deleting.
      {z}, etc...     -- See tao_building_wall_point_struct components.
                      -- If {z} is set to "delete" then delete the point.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_wall
     args:
       ix_section: 1
       ix_point: 1
       z: 0
       x: 0
       radius: 0
       z_center: 0
       x_center: 0

    """
    cmd = f"pipe building_wall_point {ix_section}^^{ix_point}^^{z}^^{x}^^{radius}^^{z_center}^^{x_center}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="building_wall_point", cmd_type="None"
    )
pytao.Tao.building_wall_section
building_wall_section(ix_section, sec_name, sec_constraint, *, verbose=False, as_dict=True, raises=True)

Add or delete a building wall section

Parameters:

Name Type Description Default
ix_section
required
sec_name
required
sec_constraint
required

Returns:

Type Description
None
Notes

Command syntax: pipe building_wall_section {ix_section}^^{sec_name}^^{sec_constraint}

Where: {ix_section} -- Section index. Sections with higher indexes will be moved up if adding a section and down if deleting. {sec_name} -- Section name. {sec_constraint} -- A section constraint name or "delete". Must be one of: delete -- Delete section. Anything else will add the section. none left_side right_side

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ix_section: 1 sec_name: test sec_constraint: none

Source code in pytao/interface_commands.py
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
def building_wall_section(
    self, ix_section, sec_name, sec_constraint, *, verbose=False, as_dict=True, raises=True
):
    """

    Add or delete a building wall section

    Parameters
    ----------
    ix_section
    sec_name
    sec_constraint

    Returns
    -------
    None

    Notes
    -----
    Command syntax:
      pipe building_wall_section {ix_section}^^{sec_name}^^{sec_constraint}

    Where:
      {ix_section}      -- Section index. Sections with higher indexes will be
                             moved up if adding a section and down if deleting.
      {sec_name}        -- Section name.
      {sec_constraint}  -- A section constraint name or "delete". Must be one of:
          delete          -- Delete section. Anything else will add the section.
          none
          left_side
          right_side

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ix_section: 1
       sec_name: test
       sec_constraint: none

    """
    cmd = f"pipe building_wall_section {ix_section}^^{sec_name}^^{sec_constraint}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="building_wall_section", cmd_type="None"
    )
pytao.Tao.bunch1
bunch1(ele_id, coordinate, *, which='model', ix_bunch='1', verbose=False, as_dict=True, raises=True)

Outputs Bunch parameters at the exit end of a given lattice element.

Parameters:

Name Type Description Default
ele_id
required
coordinate
required
which default=model
'model'
ix_bunch default=1
'1'

Returns:

Type Description
real_array

if coordinate in ['x', 'px', 'y', 'py', 'z', 'pz', 's', 't', 'charge', 'p0c']

integer_array

if coordinate in ['state', 'ix_ele']

Notes

Command syntax: pipe bunch1 {ele_id}|{which} {ix_bunch} {coordinate}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design" {ix_bunch} is the bunch index. {coordinate} is one of: x, px, y, py, z, pz, "s", "t", "charge", "p0c", "state", "ix_ele"

For example, if {coordinate} = "px", the phase space px coordinate of each particle of the bunch is displayed. The "state" of a particle is an integer. A value of 1 means alive and any other value means the particle has been lost.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/csr_beam_tracking/tao.init args: ele_id: end coordinate: x which: model ix_bunch: 1

Source code in pytao/interface_commands.py
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
def bunch1(
    self,
    ele_id,
    coordinate,
    *,
    which="model",
    ix_bunch="1",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Outputs Bunch parameters at the exit end of a given lattice element.

    Parameters
    ----------
    ele_id
    coordinate
    which : default=model
    ix_bunch : default=1

    Returns
    -------
    real_array
        if coordinate in ['x', 'px', 'y', 'py', 'z', 'pz', 's', 't', 'charge', 'p0c']
    integer_array
        if coordinate in ['state', 'ix_ele']

    Notes
    -----
    Command syntax:
      pipe bunch1 {ele_id}|{which} {ix_bunch} {coordinate}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"
      {ix_bunch} is the bunch index.
      {coordinate} is one of: x, px, y, py, z, pz, "s", "t", "charge", "p0c", "state", "ix_ele"

    For example, if {coordinate} = "px", the phase space px coordinate of each particle
    of the bunch is displayed. The "state" of a particle is an integer. A value of 1 means
    alive and any other value means the particle has been lost.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/csr_beam_tracking/tao.init
     args:
       ele_id: end
       coordinate: x
       which: model
       ix_bunch: 1

    """
    cmd = f"pipe bunch1 {ele_id}|{which} {ix_bunch} {coordinate}"
    if verbose:
        print(cmd)
    if coordinate in ["x", "px", "y", "py", "z", "pz", "s", "t", "charge", "p0c"]:
        return self.__execute(
            cmd, as_dict, raises, method_name="bunch1", cmd_type="real_array"
        )
    if coordinate in ["state", "ix_ele"]:
        return self.__execute(
            cmd, as_dict, raises, method_name="bunch1", cmd_type="integer_array"
        )
pytao.Tao.bunch_comb
bunch_comb(who, *, ix_uni='', ix_branch='', ix_bunch='1', flags='-array_out', verbose=False, as_dict=True, raises=True)

Outputs bunch parameters at a comb point. Also see the "write bunch_comb" and "show bunch -comb" commands.

Parameters:

Name Type Description Default
who
required
ix_uni optional
''
ix_branch optional
''
ix_bunch default=1
'1'
flags default=-array_out
'-array_out'

Returns:

Type Description
string_list

if '-array_out' not in flags

real_array

if '-array_out' in flags

Notes

Command syntax: pipe bunch_comb {flags} {who} {ix_uni}@{ix_branch} {ix_bunch}

Where: {flags} are optional switches: -array_out : If present, the output will be available in the tao_c_interface_com%c_real. {ix_uni} is a universe index. Defaults to s%global%default_universe. {ix_branch} is a branch index. Defaults to s%global%default_branch. {ix_bunch} is the bunch index. Defaults to 1. {who} is one of: x, px, y, py, z, pz, t, s, spin.x, spin.y, spin.z, p0c, beta -- centroid x.Q, y.Q, z.Q, a.Q, b.Q, c.Q where Q is one of: beta, alpha, gamma, phi, eta, etap, sigma, sigma_p, emit, norm_emit sigma.IJ where I, J in range [1,6] rel_min.I, rel_max.I where I in range [1,6] charge_live, n_particle_live, n_particle_lost_in_ele, ix_ele

Note: If ix_uni or ix_branch is present, "@" must be present.

Example: pipe bunch_comb py 2@1 1

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/csr_beam_tracking/tao.init args: who: x.beta

Source code in pytao/interface_commands.py
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
def bunch_comb(
    self,
    who,
    *,
    ix_uni="",
    ix_branch="",
    ix_bunch="1",
    flags="-array_out",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Outputs bunch parameters at a comb point.
    Also see the "write bunch_comb" and "show bunch -comb" commands.

    Parameters
    ----------
    who
    ix_uni : optional
    ix_branch : optional
    ix_bunch : default=1
    flags : default=-array_out

    Returns
    -------
    string_list
        if '-array_out' not in flags
    real_array
        if '-array_out' in flags

    Notes
    -----
    Command syntax:
      pipe bunch_comb {flags} {who} {ix_uni}@{ix_branch} {ix_bunch}

    Where:
      {flags} are optional switches:
          -array_out : If present, the output will be available in the tao_c_interface_com%c_real.
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {ix_branch} is a branch index. Defaults to s%global%default_branch.
      {ix_bunch} is the bunch index. Defaults to 1.
      {who} is one of:
          x, px, y, py, z, pz, t, s, spin.x, spin.y, spin.z, p0c, beta     -- centroid
          x.Q, y.Q, z.Q, a.Q, b.Q, c.Q where Q is one of: beta, alpha, gamma, phi, eta, etap,
                                                                    sigma, sigma_p, emit, norm_emit
        sigma.IJ where I, J in range [1,6]
        rel_min.I, rel_max.I where I in range [1,6]
        charge_live, n_particle_live, n_particle_lost_in_ele, ix_ele

      Note: If ix_uni or ix_branch is present, "@" must be present.

    Example:
      pipe bunch_comb py 2@1 1

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/csr_beam_tracking/tao.init
     args:
       who: x.beta

    """
    cmd = f"pipe bunch_comb {flags} {who} {ix_uni}@{ix_branch} {ix_bunch}"
    if verbose:
        print(cmd)
    if "-array_out" not in flags:
        return self.__execute(
            cmd, as_dict, raises, method_name="bunch_comb", cmd_type="string_list"
        )
    if "-array_out" in flags:
        return self.__execute(
            cmd, as_dict, raises, method_name="bunch_comb", cmd_type="real_array"
        )
pytao.Tao.bunch_data
bunch_data(ele_id, *, which='model', ix_bunch=1, verbose=False)

Returns bunch data in openPMD-beamphysics format/notation.

Notes

Note that Tao's 'write beam' will also write a proper h5 file in this format.

Expected usage: data = bunch_data(tao, 'end') from pmd_beamphysics import ParticleGroup P = ParicleGroup(data=data)

Returns:

Name Type Description
data dict

dict of arrays, with keys 'x', 'px', 'y', 'py', 't', 'pz', 'status', 'weight', 'z', 'species'

Examples:

Example: 1 init: $ACC_ROOT_DIR/tao/examples/csr_beam_tracking/tao.init args: ele_id: end which: model ix_bunch: 1

Source code in pytao/interface_commands.py
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
def bunch_data(self, ele_id, *, which="model", ix_bunch=1, verbose=False):
    """
    Returns bunch data in openPMD-beamphysics format/notation.

    Notes
    -----
    Note that Tao's 'write beam' will also write a proper h5 file in this format.

    Expected usage:
        data = bunch_data(tao, 'end')
        from pmd_beamphysics import ParticleGroup
        P = ParicleGroup(data=data)


    Returns
    -------
    data : dict
        dict of arrays, with keys 'x', 'px', 'y', 'py', 't', 'pz',
        'status', 'weight', 'z', 'species'


    Examples
    --------
    Example: 1
    init: $ACC_ROOT_DIR/tao/examples/csr_beam_tracking/tao.init
    args:
    ele_id: end
    which: model
    ix_bunch: 1

    """

    # Get species
    stats = self.bunch_params(ele_id, which=which, verbose=verbose)
    species = stats["species"]

    dat = {}
    for coordinate in ["x", "px", "y", "py", "t", "pz", "p0c", "charge", "state"]:
        dat[coordinate] = self.bunch1(
            ele_id,
            coordinate=coordinate,
            which=which,
            ix_bunch=ix_bunch,
            verbose=verbose,
        )

    # Remove normalizations
    p0c = dat.pop("p0c")

    dat["status"] = dat.pop("state")
    dat["weight"] = dat.pop("charge")

    # px from Bmad is px/p0c
    # pz from Bmad is delta = p/p0c -1.
    # pz = sqrt( (delta+1)**2 -px**2 -py**2)*p0c
    dat["pz"] = np.sqrt((dat["pz"] + 1) ** 2 - dat["px"] ** 2 - dat["py"] ** 2) * p0c
    dat["px"] = dat["px"] * p0c
    dat["py"] = dat["py"] * p0c

    # z = 0 by definition
    dat["z"] = np.full(len(dat["x"]), 0)

    dat["species"] = species.lower()

    return dat
pytao.Tao.bunch_params
bunch_params(ele_id, *, which='model', verbose=False, as_dict=True, raises=True)

Outputs bunch parameters at the exit end of a given lattice element.

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe bunch_params {ele_id}|{which}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design"

Example: pipe bunch_params end|model ! parameters at model lattice element named "end".

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/csr_beam_tracking/tao.init args: ele_id: end which: model

Source code in pytao/interface_commands.py
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
def bunch_params(self, ele_id, *, which="model", verbose=False, as_dict=True, raises=True):
    """

    Outputs bunch parameters at the exit end of a given lattice element.

    Parameters
    ----------
    ele_id
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe bunch_params {ele_id}|{which}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"

    Example:
      pipe bunch_params end|model  ! parameters at model lattice element named "end".

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/csr_beam_tracking/tao.init
     args:
       ele_id: end
       which: model

    """
    cmd = f"pipe bunch_params {ele_id}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="bunch_params", cmd_type="string_list"
    )
pytao.Tao.cmds
cmds(cmds, suppress_lattice_calc=True, suppress_plotting=True, raises=True)

Runs a list of commands, optionally suppressing lattice calculations and plotting updates.

Parameters:

Name Type Description Default
cmds list of str

List of string commands.

required
suppress_lattice_calc bool

Suppress lattice calc when applying the commands.

True
suppress_plotting

Suppress plotting when applying commands.

True
raises bool

Raise an exception of [ERROR or [FATAL is detected in the output.

True

Returns:

Type Description
list

Results corresponding to the commands

Source code in pytao/interface_commands.py
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
def cmds(self, cmds, suppress_lattice_calc=True, suppress_plotting=True, raises=True):
    """
    Runs a list of commands, optionally suppressing lattice calculations
    and plotting updates.

    Parameters
    ----------
    cmds : list of str
        List of string commands.
    suppress_lattice_calc : bool, default=True
        Suppress lattice calc when applying the commands.
    suppress_plotting  : bool, default=True
        Suppress plotting when applying commands.
    raises : bool, default=True
        Raise an exception of [ERROR or [FATAL is detected in the output.

    Returns
    -------
    list
        Results corresponding to the commands

    """
    # Get globals to detect plotting
    g = self.tao_global()
    ploton, laton = g["plot_on"], g["lattice_calc_on"]

    if suppress_plotting and ploton:
        self.cmd("set global plot_on = F")
    if suppress_lattice_calc and laton:
        self.cmd("set global lattice_calc_on = F")

    # Actually apply commands
    results = []
    for cmd in cmds:
        res = self.cmd(cmd, raises=raises)
        results.append(res)

    if suppress_plotting and ploton:
        self.cmd("set global plot_on = T")
    if suppress_lattice_calc and laton:
        self.cmd("set global lattice_calc_on = T")

    return results
pytao.Tao.constraints
constraints(who, *, verbose=False, as_dict=True, raises=True)

Output optimization data and variable parameters that contribute to the merit function.

Parameters:

Name Type Description Default
who
required

Returns:

Type Description
list of dicts

The keys depend on "data" or "var"

Notes

Command syntax: pipe constraints {who}

Where: {who} is one of: "data" or "var"

Data constraints output is: data name constraint type evaluation element name start element name end/reference element name measured value ref value (only relavent if global%opt_with_ref = T) model value base value (only relavent if global%opt_with_base = T) weight merit value location where merit is evaluated (if there is a range) Var constraints output is: var name Associated varible attribute meas value ref value (only relavent if global%opt_with_ref = T) model value base value (only relavent if global%opt_with_base = T) weight merit value dmerit/dvar

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: who: data

Example: 2 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: who:var

Source code in pytao/interface_commands.py
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
def constraints(self, who, *, verbose=False, as_dict=True, raises=True):
    """

    Output optimization data and variable parameters that contribute to the merit function.

    Parameters
    ----------
    who

    Returns
    -------
    list of dicts
        The keys depend on "data" or "var"

    Notes
    -----
    Command syntax:
      pipe constraints {who}

    Where:
      {who} is one of: "data" or "var"

    Data constraints output is:
      data name
      constraint type
      evaluation element name
      start element name
      end/reference element name
      measured value
      ref value (only relavent if global%opt_with_ref = T)
      model value
      base value (only relavent if global%opt_with_base = T)
      weight
      merit value
      location where merit is evaluated (if there is a range)
    Var constraints output is:
      var name
      Associated varible attribute
      meas value
      ref value (only relavent if global%opt_with_ref = T)
      model value
      base value (only relavent if global%opt_with_base = T)
      weight
      merit value
      dmerit/dvar

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       who: data

    Example: 2
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       who:var

    """
    cmd = f"pipe constraints {who}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="constraints", cmd_type="string_list"
    )
pytao.Tao.da_aperture
da_aperture(*, ix_uni='', verbose=False, as_dict=True, raises=True)

Output dynamic aperture data

Parameters:

Name Type Description Default
ix_uni optional
''

Returns:

Type Description
string_list
Notes

Command syntax: pipe da_aperture {ix_uni}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe.

Source code in pytao/interface_commands.py
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
def da_aperture(self, *, ix_uni="", verbose=False, as_dict=True, raises=True):
    """

    Output dynamic aperture data

    Parameters
    ----------
    ix_uni : optional

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe da_aperture {ix_uni}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.

    """
    cmd = f"pipe da_aperture {ix_uni}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="da_aperture", cmd_type="string_list"
    )
pytao.Tao.da_params
da_params(*, ix_uni='', verbose=False, as_dict=True, raises=True)

Output dynamic aperture input parameters

Parameters:

Name Type Description Default
ix_uni optional
''

Returns:

Type Description
string_list
Notes

Command syntax: pipe da_params {ix_uni}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe.

Source code in pytao/interface_commands.py
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
def da_params(self, *, ix_uni="", verbose=False, as_dict=True, raises=True):
    """

    Output dynamic aperture input parameters

    Parameters
    ----------
    ix_uni : optional

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe da_params {ix_uni}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.

    """
    cmd = f"pipe da_params {ix_uni}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="da_params", cmd_type="string_list"
    )
pytao.Tao.data
data(d2_name, d1_name, *, ix_uni='', dat_index='1', verbose=False, as_dict=True, raises=True)

Output Individual datum parameters.

Parameters:

Name Type Description Default
d2_name
required
d1_name
required
ix_uni optional
''
dat_index default=1
'1'

Returns:

Type Description
string_list
Notes

Command syntax: pipe data {ix_uni}@{d2_name}.{d1_name}[{dat_index}]

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe. {d2_name} is the name of the d2_data structure the datum is in. {d1_datum} is the name of the d1_data structure the datum is in. {dat_index} is the index of the datum.

Use the "pipe data-d1" command to get detailed info on a specific d1 array.

Example: pipe data 1@orbit.x[10]

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: ix_uni: d2_name: twiss d1_name: end dat_index: 1

Example: 2 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: ix_uni: 1 d2_name: twiss d1_name: end dat_index: 1

Source code in pytao/interface_commands.py
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
def data(
    self,
    d2_name,
    d1_name,
    *,
    ix_uni="",
    dat_index="1",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Output Individual datum parameters.

    Parameters
    ----------
    d2_name
    d1_name
    ix_uni : optional
    dat_index : default=1

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe data {ix_uni}@{d2_name}.{d1_name}[{dat_index}]

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {d2_name} is the name of the d2_data structure the datum is in.
      {d1_datum} is the name of the d1_data structure the datum is in.
      {dat_index} is the index of the datum.

    Use the "pipe data-d1" command to get detailed info on a specific d1 array.

    Example:
      pipe data 1@orbit.x[10]

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       ix_uni:
       d2_name: twiss
       d1_name: end
       dat_index: 1

    Example: 2
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       ix_uni: 1
       d2_name: twiss
       d1_name: end
       dat_index: 1

    """
    cmd = f"pipe data {ix_uni}@{d2_name}.{d1_name}[{dat_index}]"
    if verbose:
        print(cmd)
    return self.__execute(cmd, as_dict, raises, method_name="data", cmd_type="string_list")
pytao.Tao.data_d1_array
data_d1_array(d2_datum, *, ix_uni='', verbose=False, as_dict=True, raises=True)

Output list of d1 arrays for a given data_d2.

Parameters:

Name Type Description Default
d2_datum
required
ix_uni optional
''

Returns:

Type Description
list of dicts
Notes

Command syntax: pipe data_d1_array {d2_datum}

{d2_datum} should be of the form {ix_uni}@{d2_datum_name}

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: ix_uni: 1 d2_datum: twiss

Source code in pytao/interface_commands.py
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
def data_d1_array(self, d2_datum, *, ix_uni="", verbose=False, as_dict=True, raises=True):
    """

    Output list of d1 arrays for a given data_d2.

    Parameters
    ----------
    d2_datum
    ix_uni : optional

    Returns
    -------
    list of dicts

    Notes
    -----
    Command syntax:
      pipe data_d1_array {d2_datum}

    {d2_datum} should be of the form
      {ix_uni}@{d2_datum_name}

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       ix_uni: 1
       d2_datum: twiss

    """
    cmd = f"pipe data_d1_array {d2_datum}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="data_d1_array", cmd_type="string_list"
    )
pytao.Tao.data_d2
data_d2(d2_name, *, ix_uni='', verbose=False, as_dict=True, raises=True)

Output information on a d2_datum.

Parameters:

Name Type Description Default
d2_name
required
ix_uni optional
''

Returns:

Type Description
string_list
Notes

Command syntax: pipe data_d2 {ix_uni}@{d2_name}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe. {d2_name} is the name of the d2_data structure.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: ix_uni: 1 d2_name: twiss

Source code in pytao/interface_commands.py
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
def data_d2(self, d2_name, *, ix_uni="", verbose=False, as_dict=True, raises=True):
    """

    Output information on a d2_datum.

    Parameters
    ----------
    d2_name
    ix_uni : optional

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe data_d2 {ix_uni}@{d2_name}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {d2_name} is the name of the d2_data structure.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       ix_uni: 1
       d2_name: twiss

    """
    cmd = f"pipe data_d2 {ix_uni}@{d2_name}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="data_d2", cmd_type="string_list"
    )
pytao.Tao.data_d2_array
data_d2_array(ix_uni, *, verbose=False, as_dict=True, raises=True)

Output data d2 info for a given universe.

Parameters:

Name Type Description Default
ix_uni
required

Returns:

Type Description
list of str
Notes

Command syntax: pipe data_d2_array {ix_uni}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe.

Example: pipe data_d2_array 1

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ix_uni : 1

Source code in pytao/interface_commands.py
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
def data_d2_array(self, ix_uni, *, verbose=False, as_dict=True, raises=True):
    """

    Output data d2 info for a given universe.

    Parameters
    ----------
    ix_uni

    Returns
    -------
    list of str

    Notes
    -----
    Command syntax:
      pipe data_d2_array {ix_uni}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.

    Example:
      pipe data_d2_array 1

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ix_uni : 1

    """
    cmd = f"pipe data_d2_array {ix_uni}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="data_d2_array", cmd_type="string_list"
    )
pytao.Tao.data_d2_create
data_d2_create(d2_name, n_d1_data, d_data_arrays_name_min_max, *, ix_uni='', verbose=False, as_dict=True, raises=True)

Create a d2 data structure along with associated d1 and data arrays.

Parameters:

Name Type Description Default
d2_name
required
n_d1_data
required
d_data_arrays_name_min_max
required
ix_uni optional
''

Returns:

Type Description
None
Notes

Command syntax: pipe data_d2_create {ix_uni}@{d2_name}^^{n_d1_data}^^{d_data_arrays_name_min_max}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe. {d2_name} is the name of the d2_data structure to create. {n_d1_data} is the number of associated d1 data structures. {d_data_arrays_name_min_max} has the form {name1}^^{lower_bound1}^^{upper_bound1}^^....^^{nameN}^^{lower_boundN}^^{upper_boundN} where {name} is the data array name and {lower_bound} and {upper_bound} are the bounds of the array.

Example: pipe data_d2_create 2@orbit^^2^^x^^0^^45^^y^^1^^47 This example creates a d2 data structure called "orbit" with two d1 structures called "x" and "y".

The "x" d1 structure has an associated data array with indexes in the range [0, 45]. The "y" d1 structure has an associated data arrray with indexes in the range [1, 47].

Use the "set data" command to set created datum parameters.

Note: When setting multiple data parameters, temporarily toggle s%global%lattice_calc_on to False ("set global lattice_calc_on = F") to prevent Tao trying to evaluate the partially created datum and generating unwanted error messages.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: ix_uni: 1 d2_name: orbit n_d1_data: 2 d_data_arrays_name_min_max: x^^0^^45^^y^^1^^47

Source code in pytao/interface_commands.py
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
def data_d2_create(
    self,
    d2_name,
    n_d1_data,
    d_data_arrays_name_min_max,
    *,
    ix_uni="",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Create a d2 data structure along with associated d1 and data arrays.

    Parameters
    ----------
    d2_name
    n_d1_data
    d_data_arrays_name_min_max
    ix_uni : optional

    Returns
    -------
    None

    Notes
    -----
    Command syntax:
      pipe data_d2_create {ix_uni}@{d2_name}^^{n_d1_data}^^{d_data_arrays_name_min_max}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {d2_name} is the name of the d2_data structure to create.
      {n_d1_data} is the number of associated d1 data structures.
      {d_data_arrays_name_min_max} has the form
        {name1}^^{lower_bound1}^^{upper_bound1}^^....^^{nameN}^^{lower_boundN}^^{upper_boundN}
      where {name} is the data array name and {lower_bound} and {upper_bound} are the bounds of the array.

    Example:
      pipe data_d2_create 2@orbit^^2^^x^^0^^45^^y^^1^^47
    This example creates a d2 data structure called "orbit" with
    two d1 structures called "x" and "y".

    The "x" d1 structure has an associated data array with indexes in the range [0, 45].
    The "y" d1 structure has an associated data arrray with indexes in the range [1, 47].

    Use the "set data" command to set created datum parameters.

    Note: When setting multiple data parameters,
          temporarily toggle s%global%lattice_calc_on to False
      ("set global lattice_calc_on = F") to prevent Tao trying to
          evaluate the partially created datum and generating unwanted error messages.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       ix_uni: 1
       d2_name: orbit
       n_d1_data: 2
       d_data_arrays_name_min_max: x^^0^^45^^y^^1^^47

    """
    cmd = f"pipe data_d2_create {ix_uni}@{d2_name}^^{n_d1_data}^^{d_data_arrays_name_min_max}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="data_d2_create", cmd_type="None"
    )
pytao.Tao.data_d2_destroy
data_d2_destroy(d2_name, *, ix_uni='', verbose=False, as_dict=True, raises=True)

Destroy a d2 data structure along with associated d1 and data arrays.

Parameters:

Name Type Description Default
d2_name
required
ix_uni optional
''

Returns:

Type Description
None
Notes

Command syntax: pipe data_d2_destroy {ix_uni}@{d2_name}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe. {d2_name} is the name of the d2_data structure to destroy.

Example: pipe data_d2_destroy 2@orbit This destroys the orbit d2_data structure in universe 2.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: d2_name: orbit

Source code in pytao/interface_commands.py
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
def data_d2_destroy(self, d2_name, *, ix_uni="", verbose=False, as_dict=True, raises=True):
    """

    Destroy a d2 data structure along with associated d1 and data arrays.

    Parameters
    ----------
    d2_name
    ix_uni : optional

    Returns
    -------
    None

    Notes
    -----
    Command syntax:
      pipe data_d2_destroy {ix_uni}@{d2_name}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {d2_name} is the name of the d2_data structure to destroy.

    Example:
      pipe data_d2_destroy 2@orbit
    This destroys the orbit d2_data structure in universe 2.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       d2_name: orbit

    """
    cmd = f"pipe data_d2_destroy {ix_uni}@{d2_name}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="data_d2_destroy", cmd_type="None"
    )
pytao.Tao.data_d_array
data_d_array(d2_name, d1_name, *, ix_uni='', verbose=False, as_dict=True, raises=True)

Output list of datums for a given d1_data structure.

Parameters:

Name Type Description Default
d2_name
required
d1_name
required
ix_uni optional
''

Returns:

Name Type Description
datums list of dicts

Each dict has keys: 'ix_d1', 'data_type', 'merit_type', 'ele_ref_name', 'ele_start_name', 'ele_name', 'meas_value', 'model_value', 'design_value', 'useit_opt', 'useit_plot', 'good_user', 'weight', 'exists'

Notes

Command syntax: pipe data_d_array {ix_uni}@{d2_name}.{d1_name}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe. {d2_name} is the name of the containing d2_data structure. {d1_name} is the name of the d1_data structure containing the array of datums.

Example: pipe data_d_array 1@orbit.x

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: ix_uni: 1 d2_name: twiss d1_name: end

Source code in pytao/interface_commands.py
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
def data_d_array(
    self, d2_name, d1_name, *, ix_uni="", verbose=False, as_dict=True, raises=True
):
    """

    Output list of datums for a given d1_data structure.

    Parameters
    ----------
    d2_name
    d1_name
    ix_uni : optional

    Returns
    -------
    datums: list of dicts
        Each dict has keys:
        'ix_d1', 'data_type', 'merit_type',
        'ele_ref_name', 'ele_start_name', 'ele_name',
        'meas_value', 'model_value', 'design_value',
        'useit_opt', 'useit_plot', 'good_user',
        'weight', 'exists'

    Notes
    -----
    Command syntax:
      pipe data_d_array {ix_uni}@{d2_name}.{d1_name}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {d2_name} is the name of the containing d2_data structure.
      {d1_name} is the name of the d1_data structure containing the array of datums.

    Example:
      pipe data_d_array 1@orbit.x

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       ix_uni: 1
       d2_name: twiss
       d1_name: end

    """
    cmd = f"pipe data_d_array {ix_uni}@{d2_name}.{d1_name}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="data_d_array", cmd_type="string_list"
    )
pytao.Tao.data_parameter
data_parameter(data_array, parameter, *, verbose=False, as_dict=True, raises=True)

Output an array of values for a particular datum parameter for a given array of datums,

Parameters:

Name Type Description Default
data_array
required
parameter
required

Returns:

Type Description
list of dict
Notes

Command syntax: pipe data_parameter {data_array} {parameter}

{parameter} may be any tao_data_struct parameter. Example: pipe data_parameter orbit.x model_value

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: data_array: twiss.end parameter: model_value

Source code in pytao/interface_commands.py
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
def data_parameter(
    self, data_array, parameter, *, verbose=False, as_dict=True, raises=True
):
    """

    Output an array of values for a particular datum parameter for a given array of datums,

    Parameters
    ----------
    data_array
    parameter

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe data_parameter {data_array} {parameter}

    {parameter} may be any tao_data_struct parameter.
    Example:
      pipe data_parameter orbit.x model_value

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       data_array: twiss.end
       parameter: model_value

    """
    cmd = f"pipe data_parameter {data_array} {parameter}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="data_parameter", cmd_type="string_list"
    )
pytao.Tao.data_set_design_value
data_set_design_value(*, verbose=False, as_dict=True, raises=True)

Set the design (and base & model) values for all datums.

Returns:

Type Description
None
Notes

Command syntax: pipe data_set_design_value

Example: pipe data_set_design_value

Note: Use the "data_d2_create" and "datum_create" first to create datums.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args:

Source code in pytao/interface_commands.py
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
def data_set_design_value(self, *, verbose=False, as_dict=True, raises=True):
    """

    Set the design (and base & model) values for all datums.

    Returns
    -------
    None

    Notes
    -----
    Command syntax:
      pipe data_set_design_value

    Example:
      pipe data_set_design_value

    Note: Use the "data_d2_create" and "datum_create" first to create datums.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:

    """
    cmd = "pipe data_set_design_value"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="data_set_design_value", cmd_type="None"
    )
pytao.Tao.datum_create
datum_create(datum_name, data_type, *, ele_ref_name='', ele_start_name='', ele_name='', merit_type='', meas='0', good_meas='F', ref='0', good_ref='F', weight='0', good_user='T', data_source='lat', eval_point='END', s_offset='0', ix_bunch='0', invalid_value='0', spin_axis_n0_1='', spin_axis_n0_2='', spin_axis_n0_3='', spin_axis_l_1='', spin_axis_l_2='', spin_axis_l_3='', verbose=False, as_dict=True, raises=True)

Create a datum.

Parameters:

Name Type Description Default
datum_name
required
data_type
required
ele_ref_name optional
''
ele_start_name optional
''
ele_name optional
''
merit_type optional
''
meas default=0
'0'
good_meas default=F
'F'
ref default=0
'0'
good_ref default=F
'F'
weight default=0
'0'
good_user default=T
'T'
data_source default=lat
'lat'
eval_point default=END
'END'
s_offset default=0
'0'
ix_bunch default=0
'0'
invalid_value default=0
'0'
spin_axis
required
spin_axis
required
spin_axis
required
spin_axis
required
spin_axis
required
spin_axis
required

Returns:

Type Description
string_list
Notes

Command syntax: pipe datum_create {datum_name}^^{data_type}^^{ele_ref_name}^^{ele_start_name}^^ {ele_name}^^{merit_type}^^{meas}^^{good_meas}^^{ref}^^ {good_ref}^^{weight}^^{good_user}^^{data_source}^^ {eval_point}^^{s_offset}^^{ix_bunch}^^{invalid_value}^^ {spin_axis%n0(1)}^^{spin_axis%n0(2)}^^{spin_axis%n0(3)}^^ {spin_axis%l(1)}^^{spin_axis%l(2)}^^{spin_axis%l(3)}

Note: The 3 values for spin_axis%n0, as a group, are optional. Also the 3 values for spin_axis%l are, as a group, optional. Note: Use the "data_d2_create" first to create a d2 structure with associated d1 arrays. Note: After creating all your datums, use the "data_set_design_value" routine to set the design (and model) values.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: datum_name: twiss.end[6] data_type: beta.y ele_ref_name: ele_start_name: ele_name: P1 merit_type: target meas: 0 good_meas: T ref: 0 good_ref: T weight: 0.3 good_user: T data_source: lat eval_point: END s_offset: 0 ix_bunch: 1 invalid_value: 0

Source code in pytao/interface_commands.py
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
def datum_create(
    self,
    datum_name,
    data_type,
    *,
    ele_ref_name="",
    ele_start_name="",
    ele_name="",
    merit_type="",
    meas="0",
    good_meas="F",
    ref="0",
    good_ref="F",
    weight="0",
    good_user="T",
    data_source="lat",
    eval_point="END",
    s_offset="0",
    ix_bunch="0",
    invalid_value="0",
    spin_axis_n0_1="",
    spin_axis_n0_2="",
    spin_axis_n0_3="",
    spin_axis_l_1="",
    spin_axis_l_2="",
    spin_axis_l_3="",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Create a datum.

    Parameters
    ----------
    datum_name          ! EG: orb.x[3]
    data_type           ! EG: orbit.x
    ele_ref_name : optional
    ele_start_name : optional
    ele_name : optional
    merit_type : optional
    meas : default=0
    good_meas : default=F
    ref : default=0
    good_ref : default=F
    weight : default=0
    good_user : default=T
    data_source : default=lat
    eval_point : default=END
    s_offset : default=0
    ix_bunch : default=0
    invalid_value : default=0
    spin_axis%n0(1) : optional
    spin_axis%n0(2) : optional
    spin_axis%n0(3) : optional
    spin_axis%l(1) : optional
    spin_axis%l(2) : optional
    spin_axis%l(3) : optional

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe datum_create {datum_name}^^{data_type}^^{ele_ref_name}^^{ele_start_name}^^
                          {ele_name}^^{merit_type}^^{meas}^^{good_meas}^^{ref}^^
                          {good_ref}^^{weight}^^{good_user}^^{data_source}^^
                          {eval_point}^^{s_offset}^^{ix_bunch}^^{invalid_value}^^
                          {spin_axis%n0(1)}^^{spin_axis%n0(2)}^^{spin_axis%n0(3)}^^
                          {spin_axis%l(1)}^^{spin_axis%l(2)}^^{spin_axis%l(3)}

    Note: The 3 values for spin_axis%n0, as a group, are optional.
          Also the 3 values for spin_axis%l are, as a group, optional.
    Note: Use the "data_d2_create" first to create a d2 structure with associated d1 arrays.
    Note: After creating all your datums, use the "data_set_design_value" routine to
          set the design (and model) values.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       datum_name: twiss.end[6]
       data_type: beta.y
       ele_ref_name:
       ele_start_name:
       ele_name: P1
       merit_type: target
       meas: 0
       good_meas: T
       ref: 0
       good_ref: T
       weight: 0.3
       good_user: T
       data_source: lat
       eval_point: END
       s_offset: 0
       ix_bunch: 1
       invalid_value: 0

    """
    cmd = f"pipe datum_create {datum_name}^^{data_type}^^{ele_ref_name}^^{ele_start_name}^^{ele_name}^^{merit_type}^^{meas}^^{good_meas}^^{ref}^^{good_ref}^^{weight}^^{good_user}^^{data_source}^^{eval_point}^^{s_offset}^^{ix_bunch}^^{invalid_value}^^{spin_axis_n0_1}^^{spin_axis_n0_2}^^{spin_axis_n0_3}^^{spin_axis_l_1}^^{spin_axis_l_2}^^{spin_axis_l_3}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="datum_create", cmd_type="string_list"
    )
pytao.Tao.datum_has_ele
datum_has_ele(datum_type, *, verbose=False, as_dict=True, raises=True)

Output whether a datum type has an associated lattice element

Parameters:

Name Type Description Default
datum_type
required

Returns:

Type Description
str or None

"no", "yes", "maybe", "provisional"

Notes

Command syntax: pipe datum_has_ele {datum_type}

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: datum_type: twiss.end

Source code in pytao/interface_commands.py
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
def datum_has_ele(self, datum_type, *, verbose=False, as_dict=True, raises=True):
    """

    Output whether a datum type has an associated lattice element

    Parameters
    ----------
    datum_type

    Returns
    -------
    str or None
        "no", "yes", "maybe", "provisional"

    Notes
    -----
    Command syntax:
      pipe datum_has_ele {datum_type}

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       datum_type: twiss.end

    """
    cmd = f"pipe datum_has_ele {datum_type}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="datum_has_ele", cmd_type="string_list"
    )
pytao.Tao.derivative
derivative(*, verbose=False, as_dict=True, raises=True)

Output optimization derivatives

Returns:

Name Type Description
out dict

Dictionary with keys corresponding to universe indexes (int), with dModel_dVar as the value: np.ndarray with shape (n_data, n_var)

Notes

Command syntax: pipe derivative

Note: To save time, this command will not recalculate derivatives. Use the "derivative" command beforehand to recalcuate if needed.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args:

Source code in pytao/interface_commands.py
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
def derivative(self, *, verbose=False, as_dict=True, raises=True):
    """

    Output optimization derivatives

    Returns
    -------
    out : dict
        Dictionary with keys corresponding to universe indexes (int),
        with dModel_dVar as the value:
            np.ndarray with shape (n_data, n_var)

    Notes
    -----
    Command syntax:
      pipe derivative

    Note: To save time, this command will not recalculate derivatives.
    Use the "derivative" command beforehand to recalcuate if needed.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:

    """
    cmd = "pipe derivative"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="derivative", cmd_type="string_list"
    )
pytao.Tao.ele_ac_kicker
ele_ac_kicker(ele_id, *, which='model', verbose=False, as_dict=True, raises=True)

Output element ac_kicker parameters

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe ele:ac_kicker {ele_id}|{which}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design"

Example: pipe ele:ac_kicker 3@1>>7|model This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele_id: 1@0>>1 which: model

Source code in pytao/interface_commands.py
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
def ele_ac_kicker(
    self, ele_id, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output element ac_kicker parameters

    Parameters
    ----------
    ele_id
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ele:ac_kicker {ele_id}|{which}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"

    Example:
      pipe ele:ac_kicker 3@1>>7|model
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
      ele_id: 1@0>>1
      which: model

    """
    cmd = f"pipe ele:ac_kicker {ele_id}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_ac_kicker", cmd_type="string_list"
    )
pytao.Tao.ele_cartesian_map
ele_cartesian_map(ele_id, index, who, *, which='model', verbose=False, as_dict=True, raises=True)

Output element cartesian_map parameters

Parameters:

Name Type Description Default
ele_id
required
index
required
who
required
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe ele:cartesian_map {ele_id}|{which} {index} {who}

Where: {ele_id} is an element name or index {which} is one of: "model", "base" or "design" {index} is the index number in the ele%cartesian_map(:) array {who} is one of: "base", or "terms"

Example: pipe ele:cartesian_map 3@1>>7|model 2 base This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_em_field args: ele_id: 1@0>>1 which: model index: 1 who: base

Source code in pytao/interface_commands.py
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
def ele_cartesian_map(
    self, ele_id, index, who, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output element cartesian_map parameters

    Parameters
    ----------
    ele_id
    index
    who
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ele:cartesian_map {ele_id}|{which} {index} {who}

    Where:
      {ele_id} is an element name or index
      {which} is one of: "model", "base" or "design"
      {index} is the index number in the ele%cartesian_map(:) array
      {who} is one of: "base", or "terms"

    Example:
      pipe ele:cartesian_map 3@1>>7|model 2 base
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_em_field
     args:
      ele_id: 1@0>>1
      which: model
      index: 1
      who: base

    """
    cmd = f"pipe ele:cartesian_map {ele_id}|{which} {index} {who}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_cartesian_map", cmd_type="string_list"
    )
pytao.Tao.ele_chamber_wall
ele_chamber_wall(ele_id, index, who, *, which='model', verbose=False, as_dict=True, raises=True)

Output element beam chamber wall parameters

Parameters:

Name Type Description Default
ele_id
required
index
required
who
required
which default=model
'model'

Returns:

Type Description
list of dict
Notes

Command syntax: pipe ele:chamber_wall {ele_id}|{which} {index} {who}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design" {index} is index of the wall. {who} is one of: "x" ! Return min/max in horizontal plane "y" ! Return min/max in vertical plane

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_wall3d args: ele_id: 1@0>>1 which: model index: 1 who: x

Source code in pytao/interface_commands.py
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
def ele_chamber_wall(
    self, ele_id, index, who, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output element beam chamber wall parameters

    Parameters
    ----------
    ele_id
    index
    who
    which : default=model

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe ele:chamber_wall {ele_id}|{which} {index} {who}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"
      {index} is index of the wall.
      {who} is one of:
        "x"       ! Return min/max in horizontal plane
        "y"       ! Return min/max in vertical plane

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_wall3d
     args:
      ele_id: 1@0>>1
      which: model
      index: 1
      who: x

    """
    cmd = f"pipe ele:chamber_wall {ele_id}|{which} {index} {who}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_chamber_wall", cmd_type="string_list"
    )
pytao.Tao.ele_control_var
ele_control_var(ele_id, *, which='model', verbose=False, as_dict=True, raises=True)

Output list of element control variables. Used for group, overlay and ramper type elements.

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'

Returns:

Type Description
dict of attributes and values
Notes

Command syntax: pipe ele:control_var {ele_id}|{which}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design"

Example: pipe ele:control_var 3@1>>7|model This gives control info on element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele_id: 1@0>>873 which: model

Source code in pytao/interface_commands.py
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
def ele_control_var(
    self, ele_id, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output list of element control variables.
    Used for group, overlay and ramper type elements.

    Parameters
    ----------
    ele_id
    which : default=model

    Returns
    -------
    dict of attributes and values

    Notes
    -----
    Command syntax:
      pipe ele:control_var {ele_id}|{which}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"

    Example:
      pipe ele:control_var 3@1>>7|model
    This gives control info on element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
      ele_id: 1@0>>873
      which: model

    """
    cmd = f"pipe ele:control_var {ele_id}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_control_var", cmd_type="string_list"
    )
pytao.Tao.ele_cylindrical_map
ele_cylindrical_map(ele_id, index, who, *, which='model', verbose=False, as_dict=True, raises=True)

Output element cylindrical_map

Parameters:

Name Type Description Default
ele_id
required
index
required
who
required
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe ele:cylindrical_map {ele_id}|{which} {index} {who}

Where {ele_id} is an element name or index. {which} is one of: "model", "base" or "design" {index} is the index number in the ele%cylindrical_map(:) array {who} is one of: "base", or "terms"

Example: pipe ele:cylindrical_map 3@1>>7|model 2 base This gives map #2 of element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_em_field args: ele_id: 1@0>>5 which: model index: 1 who: base

Source code in pytao/interface_commands.py
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
def ele_cylindrical_map(
    self, ele_id, index, who, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output element cylindrical_map

    Parameters
    ----------
    ele_id
    index
    who
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ele:cylindrical_map {ele_id}|{which} {index} {who}

    Where
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"
      {index} is the index number in the ele%cylindrical_map(:) array
      {who} is one of: "base", or "terms"

    Example:
      pipe ele:cylindrical_map 3@1>>7|model 2 base
    This gives map #2 of element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_em_field
     args:
      ele_id: 1@0>>5
      which: model
      index: 1
      who: base

    """
    cmd = f"pipe ele:cylindrical_map {ele_id}|{which} {index} {who}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_cylindrical_map", cmd_type="string_list"
    )
pytao.Tao.ele_elec_multipoles
ele_elec_multipoles(ele_id, *, which='model', verbose=False, as_dict=True, raises=True)

Output element electric multipoles

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'

Returns:

Type Description
dict
Notes

Command syntax: pipe ele:elec_multipoles {ele_id}|{which}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design"

Example: pipe ele:elec_multipoles 3@1>>7|model This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele_id: 1@0>>1 which: model

Source code in pytao/interface_commands.py
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
def ele_elec_multipoles(
    self, ele_id, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output element electric multipoles

    Parameters
    ----------
    ele_id
    which : default=model

    Returns
    -------
    dict

    Notes
    -----
    Command syntax:
      pipe ele:elec_multipoles {ele_id}|{which}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"

    Example:
      pipe ele:elec_multipoles 3@1>>7|model
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
      ele_id: 1@0>>1
      which: model

    """
    cmd = f"pipe ele:elec_multipoles {ele_id}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_elec_multipoles", cmd_type="string_list"
    )
pytao.Tao.ele_floor
ele_floor(ele_id, *, which='model', where='end', verbose=False, as_dict=True, raises=True)

Output element floor coordinates. The output gives four lines. "Reference" is without element misalignments and "Actual" is with misalignments. The lines with "-W" give the W matrix. The exception is that if ele is a multipass_lord, there will be 4*N lines where N is the number of slaves.

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'
where default=end
'end'

Returns:

Type Description
string_list
Notes

Command syntax: pipe ele:floor {ele_id}|{which} {where}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design" {where} is an optional argument which, if present, is one of beginning ! Upstream end center ! Middle of element. Surface of element for photonic reflecting elements (crystal, mirror). end ! Downstream end (default)

Example: pipe ele:floor 3@1>>7|model This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele_id: 1@0>>1 which: model where:

Example: 2 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele_id: 1@0>>1 which: model where: center

Source code in pytao/interface_commands.py
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
def ele_floor(
    self, ele_id, *, which="model", where="end", verbose=False, as_dict=True, raises=True
):
    """

    Output element floor coordinates. The output gives four lines. "Reference" is
    without element misalignments and "Actual" is with misalignments. The lines with "-W"
    give the W matrix. The exception is that if ele is a multipass_lord, there will be 4*N
    lines where N is the number of slaves.

    Parameters
    ----------
    ele_id
    which : default=model
    where : default=end

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ele:floor {ele_id}|{which} {where}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"
      {where} is an optional argument which, if present, is one of
        beginning  ! Upstream end
        center     ! Middle of element. Surface of element for photonic reflecting elements (crystal, mirror).
        end        ! Downstream end (default)

    Example:
      pipe ele:floor 3@1>>7|model
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
      ele_id: 1@0>>1
      which: model
      where:

    Example: 2
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
      ele_id: 1@0>>1
      which: model
      where: center

    """
    cmd = f"pipe ele:floor {ele_id}|{which} {where}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_floor", cmd_type="string_list"
    )
pytao.Tao.ele_gen_attribs
ele_gen_attribs(ele_id, *, which='model', verbose=False, as_dict=True, raises=True)

Output element general attributes

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe ele:gen_attribs {ele_id}|{which}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design"

Example: pipe ele:gen_attribs 3@1>>7|model This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele_id: 1@0>>1 which: model

Source code in pytao/interface_commands.py
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
def ele_gen_attribs(
    self, ele_id, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output element general attributes

    Parameters
    ----------
    ele_id
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ele:gen_attribs {ele_id}|{which}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"

    Example:
      pipe ele:gen_attribs 3@1>>7|model
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
      ele_id: 1@0>>1
      which: model

    """
    cmd = f"pipe ele:gen_attribs {ele_id}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_gen_attribs", cmd_type="string_list"
    )
pytao.Tao.ele_gen_grad_map
ele_gen_grad_map(ele_id, index, who, *, which='model', verbose=False, as_dict=True, raises=True)

Output element gen_grad_map

Parameters:

Name Type Description Default
ele_id
required
index
required
who
required
which default=model
'model'

Returns:

Type Description
dict or list of dict

"derivs" mode will be a list of dictionaries. Normal mode will be a single dictionary.

Notes

Command syntax: pipe ele:gen_grad_map {ele_id}|{which} {index} {who}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design" {index} is the index number in the ele%gen_grad_map(:) array {who} is one of: "base", or "derivs".

Example: pipe ele:gen_grad_map 3@1>>7|model 2 base This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_em_field args: ele_id: 1@0>>9 which: model index: 1 who: derivs

Source code in pytao/interface_commands.py
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
def ele_gen_grad_map(
    self, ele_id, index, who, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output element gen_grad_map

    Parameters
    ----------
    ele_id
    index
    who
    which : default=model

    Returns
    -------
    dict or list of dict
        "derivs" mode will be a list of dictionaries.
        Normal mode will be a single dictionary.

    Notes
    -----
    Command syntax:
      pipe ele:gen_grad_map {ele_id}|{which} {index} {who}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"
      {index} is the index number in the ele%gen_grad_map(:) array
      {who} is one of: "base", or "derivs".

    Example:
      pipe ele:gen_grad_map 3@1>>7|model 2 base
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_em_field
     args:
      ele_id: 1@0>>9
      which: model
      index: 1
      who: derivs

    """
    cmd = f"pipe ele:gen_grad_map {ele_id}|{which} {index} {who}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_gen_grad_map", cmd_type="string_list"
    )
pytao.Tao.ele_grid_field
ele_grid_field(ele_id, index, who, *, which='model', verbose=False, as_dict=True, raises=True)

Output element grid_field

Parameters:

Name Type Description Default
ele_id
required
index
required
who
required
which default=model
'model'

Returns:

Type Description
dict or list of dict

"points" mode will be a list of dictionaries. Normal mode will be a single dictionary.

Notes

Command syntax: pipe ele:grid_field {ele_id}|{which} {index} {who}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design" {index} is the index number in the ele%grid_field(:) array. {who} is one of: "base", or "points"

Example: pipe ele:grid_field 3@1>>7|model 2 base This gives grid #2 of element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_grid args: ele_id: 1@0>>1 which: model index: 1 who: base

Source code in pytao/interface_commands.py
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
def ele_grid_field(
    self, ele_id, index, who, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output element grid_field

    Parameters
    ----------
    ele_id
    index
    who
    which : default=model

    Returns
    -------
    dict or list of dict
        "points" mode will be a list of dictionaries.
        Normal mode will be a single dictionary.

    Notes
    -----
    Command syntax:
      pipe ele:grid_field {ele_id}|{which} {index} {who}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"
      {index} is the index number in the ele%grid_field(:) array.
      {who} is one of: "base", or "points"

    Example:
      pipe ele:grid_field 3@1>>7|model 2 base
    This gives grid #2 of element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_grid
     args:
      ele_id: 1@0>>1
      which: model
      index: 1
      who: base

    """
    cmd = f"pipe ele:grid_field {ele_id}|{which} {index} {who}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_grid_field", cmd_type="string_list"
    )
pytao.Tao.ele_head
ele_head(ele_id, *, which='model', verbose=False, as_dict=True, raises=True)

Output "head" Element attributes

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe ele:head {ele_id}|{which}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design"

Example: pipe ele:head 3@1>>7|model This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele_id: 1@0>>1 which: model

Source code in pytao/interface_commands.py
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
def ele_head(self, ele_id, *, which="model", verbose=False, as_dict=True, raises=True):
    """

    Output "head" Element attributes

    Parameters
    ----------
    ele_id
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ele:head {ele_id}|{which}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"

    Example:
      pipe ele:head 3@1>>7|model
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
      ele_id: 1@0>>1
      which: model

    """
    cmd = f"pipe ele:head {ele_id}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_head", cmd_type="string_list"
    )
pytao.Tao.ele_lord_slave
ele_lord_slave(ele_id, *, which='model', verbose=False, as_dict=True, raises=True)

Output the lord/slave tree of an element.

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'

Returns:

Type Description
list of dict
Notes

Command syntax: pipe ele:lord_slave {ele_id}|{which}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design"

Example: pipe ele:lord_slave 3@1>>7|model This gives lord and slave info on element number 7 in branch 1 of universe 3. Note: The lord/slave info is independent of the setting of {which}.

The output is a number of lines, each line giving information on an element (element index, etc.). Some lines begin with the word "Element". After each "Element" line, there are a number of lines (possibly zero) that begin with the word "Slave or "Lord". These "Slave" and "Lord" lines are the slaves and lords of the "Element" element.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele_id: 1@0>>1 which: model

Source code in pytao/interface_commands.py
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
def ele_lord_slave(
    self, ele_id, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output the lord/slave tree of an element.

    Parameters
    ----------
    ele_id
    which : default=model

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe ele:lord_slave {ele_id}|{which}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"

    Example:
      pipe ele:lord_slave 3@1>>7|model
    This gives lord and slave info on element number 7 in branch 1 of universe 3.
    Note: The lord/slave info is independent of the setting of {which}.

    The output is a number of lines, each line giving information on an element (element index, etc.).
    Some lines begin with the word "Element".
    After each "Element" line, there are a number of lines (possibly zero) that begin with the word "Slave or "Lord".
    These "Slave" and "Lord" lines are the slaves and lords of the "Element" element.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
      ele_id: 1@0>>1
      which: model

    """
    cmd = f"pipe ele:lord_slave {ele_id}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_lord_slave", cmd_type="string_list"
    )
pytao.Tao.ele_mat6
ele_mat6(ele_id, *, which='model', who='mat6', verbose=False, as_dict=True, raises=True)

Output element mat6

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'
who default=mat6
'mat6'

Returns:

Type Description
string_list
Notes

Command syntax: pipe ele:mat6 {ele_id}|{which} {who}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design" {who} is one of: "mat6", "vec0", or "err"

Example: pipe ele:mat6 3@1>>7|model mat6 This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele_id: 1@0>>1 which: model who: mat6

Source code in pytao/interface_commands.py
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
def ele_mat6(
    self, ele_id, *, which="model", who="mat6", verbose=False, as_dict=True, raises=True
):
    """

    Output element mat6

    Parameters
    ----------
    ele_id
    which : default=model
    who : default=mat6

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ele:mat6 {ele_id}|{which} {who}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"
      {who} is one of: "mat6", "vec0", or "err"

    Example:
      pipe ele:mat6 3@1>>7|model mat6
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
      ele_id: 1@0>>1
      which: model
      who: mat6

    """
    cmd = f"pipe ele:mat6 {ele_id}|{which} {who}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_mat6", cmd_type="string_list"
    )
pytao.Tao.ele_methods
ele_methods(ele_id, *, which='model', verbose=False, as_dict=True, raises=True)

Output element methods

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe ele:methods {ele_id}|{which}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design"

Example: pipe ele:methods 3@1>>7|model This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele_id: 1@0>>1 which: model

Source code in pytao/interface_commands.py
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
def ele_methods(self, ele_id, *, which="model", verbose=False, as_dict=True, raises=True):
    """

    Output element methods

    Parameters
    ----------
    ele_id
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ele:methods {ele_id}|{which}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"

    Example:
      pipe ele:methods 3@1>>7|model
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
      ele_id: 1@0>>1
      which: model

    """
    cmd = f"pipe ele:methods {ele_id}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_methods", cmd_type="string_list"
    )
pytao.Tao.ele_multipoles
ele_multipoles(ele_id, *, which='model', verbose=False, as_dict=True, raises=True)

Output element multipoles

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'

Returns:

Type Description
dict
Notes

Command syntax: pipe ele:multipoles {ele_id}|{which}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design"

Example: pipe ele:multipoles 3@1>>7|model This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele_id: 1@0>>1 which: model

Source code in pytao/interface_commands.py
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
def ele_multipoles(
    self, ele_id, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output element multipoles

    Parameters
    ----------
    ele_id
    which : default=model

    Returns
    -------
    dict

    Notes
    -----
    Command syntax:
      pipe ele:multipoles {ele_id}|{which}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"

    Example:
      pipe ele:multipoles 3@1>>7|model
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
      ele_id: 1@0>>1
      which: model

    """
    cmd = f"pipe ele:multipoles {ele_id}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_multipoles", cmd_type="string_list"
    )
pytao.Tao.ele_orbit
ele_orbit(ele_id, *, which='model', verbose=False, as_dict=True, raises=True)

Output element orbit

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe ele:orbit {ele_id}|{which}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design"

Example: pipe ele:orbit 3@1>>7|model This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele_id: 1@0>>1 which: model

Source code in pytao/interface_commands.py
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
def ele_orbit(self, ele_id, *, which="model", verbose=False, as_dict=True, raises=True):
    """

    Output element orbit

    Parameters
    ----------
    ele_id
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ele:orbit {ele_id}|{which}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"

    Example:
      pipe ele:orbit 3@1>>7|model
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
      ele_id: 1@0>>1
      which: model

    """
    cmd = f"pipe ele:orbit {ele_id}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_orbit", cmd_type="string_list"
    )
pytao.Tao.ele_param
ele_param(ele_id, who, *, which='model', verbose=False, as_dict=True, raises=True)

Output lattice element parameter

Parameters:

Name Type Description Default
ele_id
required
who
required
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe ele:param {ele_id}|{which} {who}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design" {who} values are the same as {who} values for "pipe lat_list". Note: Here {who} must be a single parameter and not a list.

Example: pipe ele:param 3@1>>7|model e_tot This gives E_tot of element number 7 in branch 1 of universe 3.

Note: On output the {variable} component will always be "F" (since this command cannot tell if a parameter is allowed to vary).

Also see: "pipe lat_list".

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_photon args: ele_id: 1@0>>1 which: model who: orbit.vec.1

Source code in pytao/interface_commands.py
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
def ele_param(
    self, ele_id, who, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output lattice element parameter

    Parameters
    ----------
    ele_id
    who
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ele:param {ele_id}|{which} {who}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"
      {who} values are the same as {who} values for "pipe lat_list".
            Note: Here {who} must be a single parameter and not a list.

    Example:
      pipe ele:param 3@1>>7|model e_tot
    This gives E_tot of element number 7 in branch 1 of universe 3.

    Note: On output the {variable} component will always be "F" (since this
    command cannot tell if a parameter is allowed to vary).

    Also see: "pipe lat_list".

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_photon
     args:
      ele_id: 1@0>>1
      which: model
      who: orbit.vec.1

    """
    cmd = f"pipe ele:param {ele_id}|{which} {who}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_param", cmd_type="string_list"
    )
pytao.Tao.ele_photon
ele_photon(ele_id, who, *, which='model', verbose=False, as_dict=True, raises=True)

Output element photon parameters

Parameters:

Name Type Description Default
ele_id
required
who
required
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe ele:photon {ele_id}|{which} {who}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design" {who} is one of: "base", "material", or "curvature"

Example: pipe ele:photon 3@1>>7|model base This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_photon args: ele_id: 1@0>>1 which: model who: base

Source code in pytao/interface_commands.py
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
def ele_photon(
    self, ele_id, who, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output element photon parameters

    Parameters
    ----------
    ele_id
    who
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ele:photon {ele_id}|{which} {who}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"
      {who} is one of: "base", "material", or "curvature"

    Example:
      pipe ele:photon 3@1>>7|model base
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_photon
     args:
      ele_id: 1@0>>1
      which: model
      who: base

    """
    cmd = f"pipe ele:photon {ele_id}|{which} {who}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_photon", cmd_type="string_list"
    )
pytao.Tao.ele_spin_taylor
ele_spin_taylor(ele_id, *, which='model', verbose=False, as_dict=True, raises=True)

Output element spin_taylor parameters

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'

Returns:

Type Description
list of dict
Notes

Command syntax: pipe ele:spin_taylor {ele_id}|{which}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design"

Example: pipe ele:spin_taylor 3@1>>7|model This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_spin args: ele_id: 1@0>>2 which: model

Source code in pytao/interface_commands.py
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
def ele_spin_taylor(
    self, ele_id, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output element spin_taylor parameters

    Parameters
    ----------
    ele_id
    which : default=model

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe ele:spin_taylor {ele_id}|{which}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"

    Example:
      pipe ele:spin_taylor 3@1>>7|model
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_spin
     args:
      ele_id: 1@0>>2
      which: model

    """
    cmd = f"pipe ele:spin_taylor {ele_id}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_spin_taylor", cmd_type="string_list"
    )
pytao.Tao.ele_taylor
ele_taylor(ele_id, *, which='model', verbose=False, as_dict=True, raises=True)

Output element taylor map

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'

Returns:

Type Description
dict
Notes

Command syntax: pipe ele:taylor {ele_id}|{which}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design"

Example: pipe ele:taylor 3@1>>7|model This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_taylor args: ele_id: 1@0>>34 which: model

Source code in pytao/interface_commands.py
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
def ele_taylor(self, ele_id, *, which="model", verbose=False, as_dict=True, raises=True):
    """

    Output element taylor map

    Parameters
    ----------
    ele_id
    which : default=model

    Returns
    -------
    dict

    Notes
    -----
    Command syntax:
      pipe ele:taylor {ele_id}|{which}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"

    Example:
      pipe ele:taylor 3@1>>7|model
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_taylor
     args:
      ele_id: 1@0>>34
      which: model

    """
    cmd = f"pipe ele:taylor {ele_id}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_taylor", cmd_type="string_list"
    )
pytao.Tao.ele_twiss
ele_twiss(ele_id, *, which='model', verbose=False, as_dict=True, raises=True)

Output element Twiss parameters

Parameters:

Name Type Description Default
ele_id
required
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe ele:twiss {ele_id}|{which}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design"

Example: pipe ele:twiss 3@1>>7|model This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele_id: 1@0>>1 which: model

Source code in pytao/interface_commands.py
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
def ele_twiss(self, ele_id, *, which="model", verbose=False, as_dict=True, raises=True):
    """

    Output element Twiss parameters

    Parameters
    ----------
    ele_id
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ele:twiss {ele_id}|{which}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"

    Example:
      pipe ele:twiss 3@1>>7|model
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
      ele_id: 1@0>>1
      which: model

    """
    cmd = f"pipe ele:twiss {ele_id}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_twiss", cmd_type="string_list"
    )
pytao.Tao.ele_wake
ele_wake(ele_id, who, *, which='model', verbose=False, as_dict=True, raises=True)

Output element wake.

Parameters:

Name Type Description Default
ele_id
required
who
required
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe ele:wake {ele_id}|{which} {who}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design" {Who} is one of: "sr_long" "sr_long_table" "sr_trans" "sr_trans_table" "lr_mode_table" "base"

Example: pipe ele:wake 3@1>>7|model This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_wake args: ele_id: 1@0>>1 which: model who: sr_long

Source code in pytao/interface_commands.py
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
def ele_wake(
    self, ele_id, who, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output element wake.

    Parameters
    ----------
    ele_id
    who
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ele:wake {ele_id}|{which} {who}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"
      {Who} is one of:
          "sr_long"        "sr_long_table"
          "sr_trans"       "sr_trans_table"
          "lr_mode_table"  "base"

    Example:
      pipe ele:wake 3@1>>7|model
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_wake
     args:
      ele_id: 1@0>>1
      which: model
      who: sr_long

    """
    cmd = f"pipe ele:wake {ele_id}|{which} {who}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_wake", cmd_type="string_list"
    )
pytao.Tao.ele_wall3d
ele_wall3d(ele_id, index, who, *, which='model', verbose=False, as_dict=True, raises=True)

Output element wall3d parameters.

Parameters:

Name Type Description Default
ele_id
required
index
required
who
required
which default=model
'model'

Returns:

Type Description
list of dict
Notes

Command syntax: pipe ele:wall3d {ele_id}|{which} {index} {who}

Where: {ele_id} is an element name or index. {which} is one of: "model", "base" or "design" {index} is the index number in the ele%wall3d(:) array (size obtained from "ele:head"). {who} is one of: "base", or "table". Example: pipe ele:wall3d 3@1>>7|model 2 base This gives element number 7 in branch 1 of universe 3.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_wall3d args: ele_id: 1@0>>1 which: model index: 1 who: table

Source code in pytao/interface_commands.py
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
def ele_wall3d(
    self, ele_id, index, who, *, which="model", verbose=False, as_dict=True, raises=True
):
    """

    Output element wall3d parameters.

    Parameters
    ----------
    ele_id
    index
    who
    which : default=model

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe ele:wall3d {ele_id}|{which} {index} {who}

    Where:
      {ele_id} is an element name or index.
      {which} is one of: "model", "base" or "design"
      {index} is the index number in the ele%wall3d(:) array (size obtained from "ele:head").
      {who} is one of: "base", or "table".
    Example:
      pipe ele:wall3d 3@1>>7|model 2 base
    This gives element number 7 in branch 1 of universe 3.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_wall3d
     args:
      ele_id: 1@0>>1
      which: model
      index: 1
      who: table

    """
    cmd = f"pipe ele:wall3d {ele_id}|{which} {index} {who}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ele_wall3d", cmd_type="string_list"
    )
pytao.Tao.em_field
em_field(ele_id, x, y, z, t_or_z, *, which='model', verbose=False, as_dict=True, raises=True)

Output EM field at a given point generated by a given element.

Parameters:

Name Type Description Default
ele_id
required
x
required
y
required
z
required
t_or_z
required
which default=model
'model'

Returns:

Type Description
dict
Notes

Command syntax: pipe em_field {ele_id}|{which} {x} {y} {z} {t_or_z}

Where: {which} is one of: "model", "base" or "design" {x}, {y} -- Transverse coords. {z} -- Longitudinal coord with respect to entrance end of element. {t_or_z} -- time or phase space z depending if lattice is setup for absolute time tracking.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele_id: 1@0>>22 which: model x: 0 y: 0 z: 0 t_or_z: 0

Source code in pytao/interface_commands.py
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
def em_field(
    self,
    ele_id,
    x,
    y,
    z,
    t_or_z,
    *,
    which="model",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Output EM field at a given point generated by a given element.

    Parameters
    ----------
    ele_id
    x
    y
    z
    t_or_z
    which : default=model

    Returns
    -------
    dict

    Notes
    -----
    Command syntax:
      pipe em_field {ele_id}|{which} {x} {y} {z} {t_or_z}

    Where:
      {which} is one of: "model", "base" or "design"
      {x}, {y}  -- Transverse coords.
      {z}       -- Longitudinal coord with respect to entrance end of element.
      {t_or_z}  -- time or phase space z depending if lattice is setup for absolute time tracking.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ele_id: 1@0>>22
       which: model
       x: 0
       y: 0
       z: 0
       t_or_z: 0

    """
    cmd = f"pipe em_field {ele_id}|{which} {x} {y} {z} {t_or_z}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="em_field", cmd_type="string_list"
    )
pytao.Tao.enum
enum(enum_name, *, verbose=False, as_dict=True, raises=True)

Output list of possible values for enumerated numbers.

Parameters:

Name Type Description Default
enum_name
required

Returns:

Type Description
list of dict
Notes

Command syntax: pipe enum {enum_name}

Example: pipe enum tracking_method

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: enum_name: tracking_method

Source code in pytao/interface_commands.py
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
def enum(self, enum_name, *, verbose=False, as_dict=True, raises=True):
    """

    Output list of possible values for enumerated numbers.

    Parameters
    ----------
    enum_name

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe enum {enum_name}

    Example:
      pipe enum tracking_method

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       enum_name: tracking_method

    """
    cmd = f"pipe enum {enum_name}"
    if verbose:
        print(cmd)
    return self.__execute(cmd, as_dict, raises, method_name="enum", cmd_type="string_list")
pytao.Tao.evaluate
evaluate(expression, *, flags='-array_out', verbose=False, as_dict=True, raises=True)

Output the value of an expression. The result may be a vector.

Parameters:

Name Type Description Default
expression
required
flags default=-array_out

If -array_out, the output will be available in the tao_c_interface_com%c_real.

'-array_out'

Returns:

Type Description
string_list

if '-array_out' not in flags

real_array

if '-array_out' in flags

Notes

Command syntax: pipe evaluate {flags} {expression}

Where: Optional {flags} are: -array_out : If present, the output will be available in the tao_c_interface_com%c_real. {expression} is expression to be evaluated.

Example: pipe evaluate 3+data::cbar.11[1:10]|model

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: expression: data::cbar.11[1:10]|model

Source code in pytao/interface_commands.py
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
def evaluate(
    self, expression, *, flags="-array_out", verbose=False, as_dict=True, raises=True
):
    """

    Output the value of an expression. The result may be a vector.

    Parameters
    ----------
    expression
    flags : default=-array_out
        If -array_out, the output will be available in the tao_c_interface_com%c_real.

    Returns
    -------
    string_list
        if '-array_out' not in flags
    real_array
        if '-array_out' in flags

    Notes
    -----
    Command syntax:
      pipe evaluate {flags} {expression}

    Where:
      Optional {flags} are:
          -array_out : If present, the output will be available in the tao_c_interface_com%c_real.
      {expression} is expression to be evaluated.

    Example:
      pipe evaluate 3+data::cbar.11[1:10]|model

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       expression: data::cbar.11[1:10]|model

    """
    cmd = f"pipe evaluate {flags} {expression}"
    if verbose:
        print(cmd)
    if "-array_out" not in flags:
        return self.__execute(
            cmd, as_dict, raises, method_name="evaluate", cmd_type="string_list"
        )
    if "-array_out" in flags:
        return self.__execute(
            cmd, as_dict, raises, method_name="evaluate", cmd_type="real_array"
        )
pytao.Tao.floor_orbit
floor_orbit(graph, *, verbose=False, as_dict=True, raises=True)

Output (x, y) coordinates for drawing the particle orbit on a floor plan.

Parameters:

Name Type Description Default
graph
required

Returns:

Type Description
list of dict
Notes

Command syntax: pipe floor_orbit {graph}

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_floor_orbit args: graph: r33.g

Source code in pytao/interface_commands.py
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
def floor_orbit(self, graph, *, verbose=False, as_dict=True, raises=True):
    """

    Output (x, y) coordinates for drawing the particle orbit on a floor plan.

    Parameters
    ----------
    graph

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe floor_orbit {graph}

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_floor_orbit
     args:
       graph: r33.g

    """
    cmd = f"pipe floor_orbit {graph}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="floor_orbit", cmd_type="string_list"
    )
pytao.Tao.floor_plan
floor_plan(graph, *, verbose=False, as_dict=True, raises=True)

Output (x,y) points and other information that can be used for drawing a floor_plan.

Parameters:

Name Type Description Default
graph
required

Returns:

Type Description
list of dict
Notes

Command syntax: pipe floor_plan {graph}

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: graph: r13.g

Source code in pytao/interface_commands.py
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
def floor_plan(self, graph, *, verbose=False, as_dict=True, raises=True):
    """

    Output (x,y) points and other information that can be used for drawing a floor_plan.

    Parameters
    ----------
    graph

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe floor_plan {graph}

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       graph: r13.g

    """
    cmd = f"pipe floor_plan {graph}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="floor_plan", cmd_type="string_list"
    )
pytao.Tao.global_opti_de
global_opti_de(*, verbose=False, as_dict=True, raises=True)

Output DE optimization parameters.

Returns:

Type Description
string_list
Notes

Command syntax: pipe global:opti_de

Output syntax is parameter list form. See documentation at the beginning of this file.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args:

Source code in pytao/interface_commands.py
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
def global_opti_de(self, *, verbose=False, as_dict=True, raises=True):
    """

    Output DE optimization parameters.

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe global:opti_de

    Output syntax is parameter list form. See documentation at the beginning of this file.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:

    """
    cmd = "pipe global:opti_de"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="global_opti_de", cmd_type="string_list"
    )
pytao.Tao.global_optimization
global_optimization(*, verbose=False, as_dict=True, raises=True)

Output optimization parameters. Also see global:opti_de.

Returns:

Type Description
string_list
Notes

Command syntax: pipe global:optimization

Output syntax is parameter list form. See documentation at the beginning of this file.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args:

Source code in pytao/interface_commands.py
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
def global_optimization(self, *, verbose=False, as_dict=True, raises=True):
    """

    Output optimization parameters.
    Also see global:opti_de.

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe global:optimization

    Output syntax is parameter list form. See documentation at the beginning of this file.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:

    """
    cmd = "pipe global:optimization"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="global_optimization", cmd_type="string_list"
    )
pytao.Tao.help
help(*, verbose=False, as_dict=True, raises=True)

Output list of "help xxx" topics

Returns:

Type Description
str
Notes

Command syntax: pipe help

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args:

Source code in pytao/interface_commands.py
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
def help(self, *, verbose=False, as_dict=True, raises=True):
    """

    Output list of "help xxx" topics

    Returns
    -------
    str

    Notes
    -----
    Command syntax:
      pipe help

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:

    """
    cmd = "pipe help"
    if verbose:
        print(cmd)
    return self.__execute(cmd, as_dict, raises, method_name="help", cmd_type="string_list")
pytao.Tao.init
init(cmd='', *, plot='tao', beam_file=None, beam_init_position_file=None, building_wall_file=None, command='', data_file=None, debug=False, disable_smooth_line_calc=False, external_plotting=False, geometry='', hook_init_file=None, init_file=None, lattice_file=None, log_startup=False, no_stopping=False, noinit=False, noplot=False, nostartup=False, no_rad_int=False, plot_file=None, prompt_color='', reverse=False, rf_on=False, quiet=False, slice_lattice='', start_branch_at='', startup_file=None, symbol_import=False, var_file=None)

(Re-)Initialize Tao with the given command.

Parameters:

Name Type Description Default
init str

Initialization string for Tao. Same as the tao command-line, including "-init" and such. Shell variables in init strings will be expanded by Tao. For example, an init string containing $HOME would be replaced by your home directory.

required
so_lib str

Path to the Tao shared library. Auto-detected if not specified.

required
plot (str, bool)

Use pytao's plotting mechanism with matplotlib or bokeh, if available. If True, pytao will pick an appropriate plotting backend. If False or "tao", Tao plotting will be used. (Default) If "mpl", the pytao matplotlib plotting backend will be selected. If "bokeh", the pytao Bokeh plotting backend will be selected.

'tao'
beam_file str or Path

File containing the tao_beam_init namelist.

None
beam_init_position_file Path or str

File containing initial particle positions.

None
building_wall_file str or Path

Define the building tunnel wall

None
command str

Commands to run after startup file commands

''
data_file str or Path

Define data for plotting and optimization

None
debug bool

Debug mode for Wizards

False
disable_smooth_line_calc bool

Disable the smooth line calc used in plotting

False
external_plotting bool

Tells Tao that plotting is done externally to Tao.

False
geometry "wxh" or (width, height) tuple

Plot window geometry (pixels)

''
hook_init_file pathlib.Path or str

Init file for hook routines (Default = tao_hook.init)

None
init_file str or Path

Tao init file

None
lattice_file str or Path

Bmad lattice file

None
log_startup bool

Write startup debugging info

False
no_stopping bool

For debugging : Prevents Tao from exiting on errors

False
noinit bool

Do not use Tao init file.

False
noplot bool

Do not open a plotting window

False
nostartup bool

Do not open a startup command file

False
no_rad_int bool

Do not do any radiation integrals calculations.

False
plot_file str or Path

Plotting initialization file

None
prompt_color str

Set color of prompt string. Default is blue.

''
reverse bool

Reverse lattice element order?

False
rf_on bool

Use "--rf_on" to turn off RF (default is now RF on)

False
quiet bool

Suppress terminal output when running a command file?

False
slice_lattice str

Discards elements from lattice that are not in the list

''
start_branch_at str

Start lattice branch at element.

''
startup_file str or Path

Commands to run after parsing Tao init file

None
symbol_import bool

Import symbols defined in lattice files(s)?

False
var_file str or Path

Define variables for plotting and optimization

None

Returns:

Type Description
list of str

Tao's initialization output.

Source code in pytao/interface_commands.py
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
@override
def init(
    self,
    cmd: str = "",
    *,
    plot: Union[str, bool] = "tao",
    beam_file: Optional[AnyPath] = None,
    beam_init_position_file: Optional[AnyPath] = None,
    building_wall_file: Optional[AnyPath] = None,
    command: str = "",
    data_file: Optional[AnyPath] = None,
    debug: bool = False,
    disable_smooth_line_calc: bool = False,
    external_plotting: bool = False,
    geometry: Union[str, Tuple[int, int]] = "",
    hook_init_file: Optional[AnyPath] = None,
    init_file: Optional[AnyPath] = None,
    lattice_file: Optional[AnyPath] = None,
    log_startup: bool = False,
    no_stopping: bool = False,
    noinit: bool = False,
    noplot: bool = False,
    nostartup: bool = False,
    no_rad_int: bool = False,
    plot_file: Optional[AnyPath] = None,
    prompt_color: str = "",
    reverse: bool = False,
    rf_on: bool = False,
    quiet: bool = False,
    slice_lattice: str = "",
    start_branch_at: str = "",
    startup_file: Optional[AnyPath] = None,
    symbol_import: bool = False,
    var_file: Optional[AnyPath] = None,
) -> List[str]:
    """
    (Re-)Initialize Tao with the given command.

    Parameters
    ----------
    init : str, optional
        Initialization string for Tao.  Same as the tao command-line, including
        "-init" and such.  Shell variables in `init` strings will be expanded
        by Tao.  For example, an `init` string containing `$HOME` would be
        replaced by your home directory.
    so_lib : str, optional
        Path to the Tao shared library.  Auto-detected if not specified.
    plot : str, bool, optional
        Use pytao's plotting mechanism with matplotlib or bokeh, if available.
        If `True`, pytao will pick an appropriate plotting backend.
        If `False` or "tao", Tao plotting will be used. (Default)
        If "mpl", the pytao matplotlib plotting backend will be selected.
        If "bokeh", the pytao Bokeh plotting backend will be selected.

    beam_file : str or pathlib.Path, default=None
        File containing the tao_beam_init namelist.
    beam_init_position_file : pathlib.Path or str, default=None
        File containing initial particle positions.
    building_wall_file : str or pathlib.Path, default=None
        Define the building tunnel wall
    command : str, optional
        Commands to run after startup file commands
    data_file : str or pathlib.Path, default=None
        Define data for plotting and optimization
    debug : bool, default=False
        Debug mode for Wizards
    disable_smooth_line_calc : bool, default=False
        Disable the smooth line calc used in plotting
    external_plotting : bool, default=False
        Tells Tao that plotting is done externally to Tao.
    geometry : "wxh" or (width, height) tuple, optional
        Plot window geometry (pixels)
    hook_init_file :  pathlib.Path or str, default=None
        Init file for hook routines (Default = tao_hook.init)
    init_file : str or pathlib.Path, default=None
        Tao init file
    lattice_file : str or pathlib.Path, default=None
        Bmad lattice file
    log_startup : bool, default=False
        Write startup debugging info
    no_stopping : bool, default=False
        For debugging : Prevents Tao from exiting on errors
    noinit : bool, default=False
        Do not use Tao init file.
    noplot : bool, default=False
        Do not open a plotting window
    nostartup : bool, default=False
        Do not open a startup command file
    no_rad_int : bool, default=False
        Do not do any radiation integrals calculations.
    plot_file : str or pathlib.Path, default=None
        Plotting initialization file
    prompt_color : str, optional
        Set color of prompt string. Default is blue.
    reverse : bool, default=False
        Reverse lattice element order?
    rf_on : bool, default=False
        Use "--rf_on" to turn off RF (default is now RF on)
    quiet : bool, default=False
        Suppress terminal output when running a command file?
    slice_lattice : str, optional
        Discards elements from lattice that are not in the list
    start_branch_at : str, optional
        Start lattice branch at element.
    startup_file : str or pathlib.Path, default=None
        Commands to run after parsing Tao init file
    symbol_import : bool, default=False
        Import symbols defined in lattice files(s)?
    var_file : str or pathlib.Path, default=None
        Define variables for plotting and optimization

    Returns
    -------
    list of str
        Tao's initialization output.
    """
    if plot in {"mpl", "bokeh"}:
        self.plot_backend_name = plot
    else:
        self.plot_backend_name = None

    use_pytao_plotting = plot in {"mpl", "bokeh", True}

    self.init_settings = TaoStartup(
        init=cmd,
        plot=plot,
        beam_file=beam_file,
        beam_init_position_file=beam_init_position_file,
        building_wall_file=building_wall_file,
        command=command,
        data_file=data_file,
        debug=debug,
        disable_smooth_line_calc=disable_smooth_line_calc,
        external_plotting=use_pytao_plotting or external_plotting,
        geometry=geometry,
        hook_init_file=hook_init_file,
        init_file=init_file,
        lattice_file=lattice_file,
        log_startup=log_startup,
        no_stopping=no_stopping,
        noinit=noinit,
        noplot=use_pytao_plotting or noplot,
        nostartup=nostartup,
        no_rad_int=no_rad_int,
        plot_file=plot_file,
        prompt_color=prompt_color,
        reverse=reverse,
        rf_on=rf_on,
        quiet=quiet,
        slice_lattice=slice_lattice,
        start_branch_at=start_branch_at,
        startup_file=startup_file,
        symbol_import=symbol_import,
        var_file=var_file,
    )

    if not self.init_settings.can_initialize:
        raise TaoInitializationError(
            f"Tao will not be able to initialize with the following settings:"
            f"\n"
            f"\ninit={self.init_settings.tao_init!r}"
            f"\n"
            f"\nIn order to initialize a Tao object, you must specify at least one of these:"
            f"\n * `init_file` with a valid filename"
            f"\n * `lattice_file` with a valid filename"
            f"\n"
            f"\nFor example:"
            f"\n>>> Tao(init_file='$ACC_ROOT_DIR/bmad-doc/tao_examples/erl/tao.init')"
            f"\n"
            f"\nAlternatively, you may pass the full command-line arguments:"
            f"\n>>> Tao('-lat $ACC_ROOT_DIR/bmad-doc/tao_examples/erl/bmad.lat')"
        )

    self._init_output = self._init(self.init_settings)
    if not self._tao_version_checked:
        self._tao_version_checked = True
        self._check_tao_version()
    return self._init_output
pytao.Tao.inum
inum(who, *, verbose=False, as_dict=True, raises=True)

Output list of possible values for an INUM parameter. For example, possible index numbers for the branches of a lattice.

Parameters:

Name Type Description Default
who
required

Returns:

Type Description
list of int
Notes

Command syntax: pipe inum {who}

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: who: ix_universe

Source code in pytao/interface_commands.py
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
def inum(self, who, *, verbose=False, as_dict=True, raises=True):
    """

    Output list of possible values for an INUM parameter.
    For example, possible index numbers for the branches of a lattice.

    Parameters
    ----------
    who

    Returns
    -------
    list of int

    Notes
    -----
    Command syntax:
      pipe inum {who}

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       who: ix_universe

    """
    cmd = f"pipe inum {who}"
    if verbose:
        print(cmd)
    return self.__execute(cmd, as_dict, raises, method_name="inum", cmd_type="string_list")
pytao.Tao.lat_branch_list
lat_branch_list(*, ix_uni='', verbose=False, as_dict=True, raises=True)

Output lattice branch list

Parameters:

Name Type Description Default
ix_uni optional
''

Returns:

Type Description
list of dict
Notes

Command syntax: pipe lat_branch_list {ix_uni}

Output syntax: branch_index;branch_name;n_ele_track;n_ele_max

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ix_uni: 1

Source code in pytao/interface_commands.py
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
def lat_branch_list(self, *, ix_uni="", verbose=False, as_dict=True, raises=True):
    """

    Output lattice branch list

    Parameters
    ----------
    ix_uni : optional

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe lat_branch_list {ix_uni}

    Output syntax:
      branch_index;branch_name;n_ele_track;n_ele_max

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ix_uni: 1

    """
    cmd = f"pipe lat_branch_list {ix_uni}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="lat_branch_list", cmd_type="string_list"
    )
pytao.Tao.lat_calc_done
lat_calc_done(branch_name, *, verbose=False, as_dict=True, raises=True)

Output if a lattice recalculation has been proformed since the last time "pipe lat_calc_done" was called.

Parameters:

Name Type Description Default
branch_name
required

Returns:

Type Description
bool
Notes

Command syntax: pipe lat_calc_done

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: branch_name: 1@0

Source code in pytao/interface_commands.py
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
def lat_calc_done(self, branch_name, *, verbose=False, as_dict=True, raises=True):
    """

    Output if a lattice recalculation has been proformed since the last
      time "pipe lat_calc_done" was called.

    Parameters
    ----------
    branch_name

    Returns
    -------
    bool

    Notes
    -----
    Command syntax:
      pipe lat_calc_done

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       branch_name: 1@0

    """
    cmd = "pipe lat_calc_done"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="lat_calc_done", cmd_type="string_list"
    )
pytao.Tao.lat_ele_list
lat_ele_list(*, branch_name='', verbose=False, as_dict=True, raises=True)

Output lattice element list.

Parameters:

Name Type Description Default
branch_name optional
''

Returns:

Type Description
list of str of element names
Notes

Command syntax: pipe lat_ele_list {branch_name}

{branch_name} should have the form: {ix_uni}@{ix_branch}

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: branch_name: 1@0

Source code in pytao/interface_commands.py
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
def lat_ele_list(self, *, branch_name="", verbose=False, as_dict=True, raises=True):
    """

    Output lattice element list.

    Parameters
    ----------
    branch_name : optional

    Returns
    -------
    list of str of element names

    Notes
    -----
    Command syntax:
      pipe lat_ele_list {branch_name}

    {branch_name} should have the form:
      {ix_uni}@{ix_branch}

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       branch_name: 1@0

    """
    cmd = f"pipe lat_ele_list {branch_name}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="lat_ele_list", cmd_type="string_list"
    )
pytao.Tao.lat_list
lat_list(elements, who, *, ix_uni='', ix_branch='', which='model', flags='-array_out -track_only', verbose=False, as_dict=True, raises=True)

Output list of parameters at ends of lattice elements

Parameters:

Name Type Description Default
elements
required
who
required
ix_uni optional
''
ix_branch optional
''
which default=model
'model'
flags optional
-array_out -track_only

Returns:

Type Description
string_list

if ('-array_out' not in flags) or (who in ['ele.name', 'ele.key'])

integer_array

if '-array_out' in flags and who in ['orbit.state', 'ele.ix_ele']

real_array

if ('-array_out' in flags) or ('real:' in who)

Notes

Command syntax: pipe lat_list {flags} {ix_uni}@{ix_branch}>>{elements}|{which} {who}

Where: Optional {flags} are: -no_slaves : If present, multipass_slave and super_slave elements will not be matched to. -track_only : If present, lord elements will not be matched to. -index_order : If present, order elements by element index instead of the standard s-position. -array_out : If present, the output will be available in the tao_c_interface_com%c_real or tao_c_interface_com%c_integer arrays. See the code below for when %c_real vs %c_integer is used. Note: Only a single {who} item permitted when -array_out is present.

{which} is one of: "model", "base" or "design"

{who} is a comma deliminated list of: orbit.floor.x, orbit.floor.y, orbit.floor.z ! Floor coords at particle orbit. orbit.spin.1, orbit.spin.2, orbit.spin.3, orbit.vec.1, orbit.vec.2, orbit.vec.3, orbit.vec.4, orbit.vec.5, orbit.vec.6, orbit.t, orbit.beta, orbit.state, ! Note: state is an integer. alive$ = 1, anything else is lost. orbit.energy, orbit.pc, ele.name, ele.key, ele.ix_ele, ele.ix_branch ele.a.beta, ele.a.alpha, ele.a.eta, ele.a.etap, ele.a.gamma, ele.a.phi, ele.b.beta, ele.b.alpha, ele.b.eta, ele.b.etap, ele.b.gamma, ele.b.phi, ele.x.eta, ele.x.etap, ele.y.eta, ele.y.etap, ele.ref_time, ele.ref_time_start ele.s, ele.l ele.e_tot, ele.p0c ele.mat6 ! Output: mat6(1,:), mat6(2,:), ... mat6(6,:) ele.vec0 ! Output: vec0(1), ... vec0(6) ele.{attribute} Where {attribute} is a Bmad syntax element attribute. (EG: ele.beta_a, ele.k1, etc.) ele.c_mat ! Output: c_mat11, c_mat12, c_mat21, c_mat22. ele.gamma_c ! Parameter associated with coupling c-matrix.

{elements} is a string to match element names to. Use "*" to match to all elements.

Examples: pipe lat_list -track 3@0>>Q|base ele.s,orbit.vec.2 pipe lat_list 3@0>>Q|base real:ele.s

Also see: "pipe ele:param"

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ix_uni: 1 ix_branch: 0 elements: Q* which: model who: orbit.floor.x

Example: 2 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ix_uni: 1 ix_branch: 0 elements: Q* which: design who: ele.ix_ele

Source code in pytao/interface_commands.py
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
def lat_list(
    self,
    elements,
    who,
    *,
    ix_uni="",
    ix_branch="",
    which="model",
    flags="-array_out -track_only",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Output list of parameters at ends of lattice elements

    Parameters
    ----------
    elements
    who
    ix_uni : optional
    ix_branch : optional
    which : default=model
    flags : optional, default=-array_out -track_only

    Returns
    -------
    string_list
        if ('-array_out' not in flags) or (who in ['ele.name', 'ele.key'])
    integer_array
        if '-array_out' in flags and who in ['orbit.state', 'ele.ix_ele']
    real_array
        if ('-array_out' in flags) or ('real:' in who)

    Notes
    -----
    Command syntax:
      pipe lat_list {flags} {ix_uni}@{ix_branch}>>{elements}|{which} {who}

    Where:
     Optional {flags} are:
      -no_slaves : If present, multipass_slave and super_slave elements will not be matched to.
      -track_only : If present, lord elements will not be matched to.
      -index_order : If present, order elements by element index instead of the standard s-position.
      -array_out : If present, the output will be available in the tao_c_interface_com%c_real or
        tao_c_interface_com%c_integer arrays. See the code below for when %c_real vs %c_integer is used.
        Note: Only a single {who} item permitted when -array_out is present.

      {which} is one of: "model", "base" or "design"

      {who} is a comma deliminated list of:
        orbit.floor.x, orbit.floor.y, orbit.floor.z    ! Floor coords at particle orbit.
        orbit.spin.1, orbit.spin.2, orbit.spin.3,
        orbit.vec.1, orbit.vec.2, orbit.vec.3, orbit.vec.4, orbit.vec.5, orbit.vec.6,
        orbit.t, orbit.beta,
        orbit.state,     ! Note: state is an integer. alive$ = 1, anything else is lost.
        orbit.energy, orbit.pc,
        ele.name, ele.key, ele.ix_ele, ele.ix_branch
        ele.a.beta, ele.a.alpha, ele.a.eta, ele.a.etap, ele.a.gamma, ele.a.phi,
        ele.b.beta, ele.b.alpha, ele.b.eta, ele.b.etap, ele.b.gamma, ele.b.phi,
        ele.x.eta, ele.x.etap,
        ele.y.eta, ele.y.etap,
        ele.ref_time, ele.ref_time_start
        ele.s, ele.l
        ele.e_tot, ele.p0c
        ele.mat6      ! Output: mat6(1,:), mat6(2,:), ... mat6(6,:)
        ele.vec0      ! Output: vec0(1), ... vec0(6)
        ele.{attribute} Where {attribute} is a Bmad syntax element attribute. (EG: ele.beta_a, ele.k1, etc.)
        ele.c_mat     ! Output: c_mat11, c_mat12, c_mat21, c_mat22.
        ele.gamma_c   ! Parameter associated with coupling c-matrix.

      {elements} is a string to match element names to.
        Use "*" to match to all elements.

    Examples:
      pipe lat_list -track 3@0>>Q*|base ele.s,orbit.vec.2
      pipe lat_list 3@0>>Q*|base real:ele.s

    Also see: "pipe ele:param"

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ix_uni: 1
       ix_branch: 0
       elements: Q*
       which: model
       who: orbit.floor.x

    Example: 2
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ix_uni: 1
       ix_branch: 0
       elements: Q*
       which: design
       who: ele.ix_ele

    """
    cmd = f"pipe lat_list {flags} {ix_uni}@{ix_branch}>>{elements}|{which} {who}"
    if verbose:
        print(cmd)
    if ("-array_out" not in flags) or (who in ["ele.name", "ele.key"]):
        return self.__execute(
            cmd, as_dict, raises, method_name="lat_list", cmd_type="string_list"
        )
    if "-array_out" in flags and who in ["orbit.state", "ele.ix_ele"]:
        return self.__execute(
            cmd, as_dict, raises, method_name="lat_list", cmd_type="integer_array"
        )
    if ("-array_out" in flags) or ("real:" in who):
        return self.__execute(
            cmd, as_dict, raises, method_name="lat_list", cmd_type="real_array"
        )
pytao.Tao.lat_param_units
lat_param_units(param_name, *, verbose=False, as_dict=True, raises=True)

Output units of a parameter associated with a lattice or lattice element.

Parameters:

Name Type Description Default
param_name
required

Returns:

Type Description
str
Notes

Command syntax: pipe lat_param_units {param_name}

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: param_name: L

Source code in pytao/interface_commands.py
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
def lat_param_units(self, param_name, *, verbose=False, as_dict=True, raises=True):
    """

    Output units of a parameter associated with a lattice or lattice element.

    Parameters
    ----------
    param_name

    Returns
    -------
    str

    Notes
    -----
    Command syntax:
      pipe lat_param_units {param_name}

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       param_name: L

    """
    cmd = f"pipe lat_param_units {param_name}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="lat_param_units", cmd_type="string_list"
    )
pytao.Tao.matrix
matrix(ele1_id, ele2_id, *, verbose=False, as_dict=True, raises=True)

Output matrix value from the exit end of one element to the exit end of the other.

Parameters:

Name Type Description Default
ele1_id
required
ele2_id
required

Returns:

Type Description
dict with keys:

'mat6' : np.array of shape (6,6) 'vec6' : np.array of shape(6)

Notes

Command syntax: pipe matrix {ele1_id} {ele2_id}

Where: {ele1_id} is the start element. {ele2_id} is the end element. If {ele2_id} = {ele1_id}, the 1-turn transfer map is computed. Note: {ele2_id} should just be an element name or index without universe, branch, or model/base/design specification.

Example: pipe matrix 2@1>>q01w|design q02w

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele1_id: 1@0>>q01w|design ele2_id: q02w

Source code in pytao/interface_commands.py
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
def matrix(self, ele1_id, ele2_id, *, verbose=False, as_dict=True, raises=True):
    """

    Output matrix value from the exit end of one element to the exit end of the other.

    Parameters
    ----------
    ele1_id
    ele2_id

    Returns
    -------
    dict with keys:
        'mat6' : np.array of shape (6,6)
        'vec6' : np.array of shape(6)

    Notes
    -----
    Command syntax:
      pipe matrix {ele1_id} {ele2_id}

    Where:
      {ele1_id} is the start element.
      {ele2_id} is the end element.
    If {ele2_id} = {ele1_id}, the 1-turn transfer map is computed.
    Note: {ele2_id} should just be an element name or index without universe, branch, or model/base/design specification.

    Example:
      pipe matrix 2@1>>q01w|design q02w

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ele1_id: 1@0>>q01w|design
       ele2_id: q02w

    """
    cmd = f"pipe matrix {ele1_id} {ele2_id}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="matrix", cmd_type="string_list"
    )
pytao.Tao.merit
merit(*, verbose=False, as_dict=True, raises=True)

Output merit value.

Returns:

Name Type Description
merit float

Value of the merit function

Notes

Command syntax: pipe merit

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args:

Source code in pytao/interface_commands.py
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
def merit(self, *, verbose=False, as_dict=True, raises=True):
    """

    Output merit value.

    Returns
    -------
    merit: float
        Value of the merit function

    Notes
    -----
    Command syntax:
      pipe merit

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:

    """
    cmd = "pipe merit"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="merit", cmd_type="string_list"
    )
pytao.Tao.orbit_at_s
orbit_at_s(*, ix_uni='', ele='', s_offset='', which='model', verbose=False, as_dict=True, raises=True)

Output twiss at given s position.

Parameters:

Name Type Description Default
ix_uni optional
''
ele optional
''
s_offset optional
''
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe orbit_at_s {ix_uni}@{ele}->{s_offset}|{which}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe. {ele} is an element name or index. Default at the Beginning element at start of branch 0. {s_offset} is the offset of the evaluation point from the downstream end of ele. Default is 0. If {s_offset} is present, the preceeding "->" sign must be present. EG: Something like "23|model" will {which} is one of: "model", "base" or "design".

Example: pipe orbit_at_s Q10->0.4|model ! Orbit at 0.4 meters from Q10 element exit end in model lattice.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ix_uni: 1 ele: 10 s_offset: 0.7 which: model

Source code in pytao/interface_commands.py
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
def orbit_at_s(
    self,
    *,
    ix_uni="",
    ele="",
    s_offset="",
    which="model",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Output twiss at given s position.

    Parameters
    ----------
    ix_uni : optional
    ele : optional
    s_offset : optional
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe orbit_at_s {ix_uni}@{ele}->{s_offset}|{which}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {ele} is an element name or index. Default at the Beginning element at start of branch 0.
      {s_offset} is the offset of the evaluation point from the downstream end of ele. Default is 0.
         If {s_offset} is present, the preceeding "->" sign must be present. EG: Something like "23|model" will
      {which} is one of: "model", "base" or "design".

    Example:
      pipe orbit_at_s Q10->0.4|model   ! Orbit at 0.4 meters from Q10 element exit end in model lattice.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ix_uni: 1
       ele: 10
       s_offset: 0.7
       which: model

    """
    cmd = f"pipe orbit_at_s {ix_uni}@{ele}->{s_offset}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="orbit_at_s", cmd_type="string_list"
    )
pytao.Tao.place_buffer
place_buffer(*, verbose=False, as_dict=True, raises=True)

Output the place command buffer and reset the buffer. The contents of the buffer are the place commands that the user has issued. See the Tao manual for more details.

Returns:

Type Description
list of dict
Notes

Command syntax: pipe place_buffer

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args:

Source code in pytao/interface_commands.py
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
def place_buffer(self, *, verbose=False, as_dict=True, raises=True):
    """

    Output the place command buffer and reset the buffer.
    The contents of the buffer are the place commands that the user has issued.
    See the Tao manual for more details.

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe place_buffer

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:

    """
    cmd = "pipe place_buffer"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="place_buffer", cmd_type="None"
    )
pytao.Tao.plot
plot(template=None, *, region_name=None, include_layout=True, width=None, height=None, layout_height=None, share_x=None, backend=None, grid=None, **kwargs)

Make a plot with the provided backend.

Plot a graph, or all placed graphs.

To plot a specific graph, specify template (optionally region_name). The default is to plot all placed graphs.

For full details on available parameters, see the specific backend's graph manager. For example:

In [1]: tao.bokeh.plot? In [2]: tao.matplotlib.plot?

Parameters:

Name Type Description Default
template str or list[str]

Graph template name or names.

None
region_name str

Graph region name. Chosen automatically if not specified.

None
include_layout bool

Include a layout plot at the bottom, if not already placed and if appropriate (i.e., another plot uses longitudinal coordinates on the x-axis).

True
width int

Width of each plot.

None
height int

Height of each plot.

None
layout_height int

Height of the layout plot.

None
share_x bool or None

Share x-axes where sensible (None) or force sharing x-axes (True) for all plots.

None
save Path or str

Save the plot to the given filename.

required
xlim (float, float)

X axis limits.

required
ylim (float, float)

Y axis limits.

required
grid (nrows, ncols)

If multiple graph names are specified, the plots will be placed in a grid according to this parameter. The default is to have stacked plots if this parameter is unspecified.

None
backend ('bokeh', 'mpl')

The backend to use. Auto-detects Jupyter and availability of bokeh to select a backend.

"bokeh"

Returns:

Type Description
None

To gain access to the resulting plot objects, use the backend's plot method directly.

Source code in pytao/interface_commands.py
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
def plot(
    self,
    template: Optional[Union[str, List[str]]] = None,
    *,
    region_name: Optional[str] = None,
    include_layout: bool = True,
    width: Optional[int] = None,
    height: Optional[int] = None,
    layout_height: Optional[int] = None,
    share_x: Optional[bool] = None,
    backend: Optional[str] = None,
    grid: Optional[Tuple[int, int]] = None,
    **kwargs,
) -> None:
    """
    Make a plot with the provided backend.

    Plot a graph, or all placed graphs.

    To plot a specific graph, specify `template` (optionally `region_name`).
    The default is to plot all placed graphs.

    For full details on available parameters, see the specific backend's
    graph manager. For example:

    In [1]: tao.bokeh.plot?
    In [2]: tao.matplotlib.plot?

    Parameters
    ----------
    template : str or list[str]
        Graph template name or names.
    region_name : str, optional
        Graph region name.  Chosen automatically if not specified.
    include_layout : bool, optional
        Include a layout plot at the bottom, if not already placed and if
        appropriate (i.e., another plot uses longitudinal coordinates on
        the x-axis).
    width : int, optional
        Width of each plot.
    height : int, optional
        Height of each plot.
    layout_height : int, optional
        Height of the layout plot.
    share_x : bool or None, default=None
        Share x-axes where sensible (`None`) or force sharing x-axes (True)
        for all plots.
    save : pathlib.Path or str, optional
        Save the plot to the given filename.
    xlim : (float, float), optional
        X axis limits.
    ylim : (float, float), optional
        Y axis limits.
    grid : (nrows, ncols), optional
        If multiple graph names are specified, the plots will be placed
        in a grid according to this parameter.  The default is to have
        stacked plots if this parameter is unspecified.
    backend : {"bokeh", "mpl"}, optional
        The backend to use.  Auto-detects Jupyter and availability of bokeh
        to select a backend.

    Returns
    -------
    None
        To gain access to the resulting plot objects, use the backend's
        `plot` method directly.
    """
    manager = self._get_user_specified_backend(backend)

    if width is not None:
        kwargs["width"] = width
    if height is not None:
        kwargs["height"] = height
    if layout_height is not None:
        kwargs["layout_height"] = layout_height
    if share_x is not None:
        kwargs["share_x"] = share_x

    if not template:
        self.last_plot = manager.plot_all(
            include_layout=include_layout,
            **kwargs,
        )
    elif not isinstance(template, str):
        templates = list(template)
        grid = grid or (len(templates), 1)
        self.last_plot = manager.plot_grid(
            templates=templates,
            grid=grid,
            include_layout=include_layout,
            **kwargs,
        )
    else:
        self.last_plot = manager.plot(
            region_name=region_name,
            template=template,
            include_layout=include_layout,
            **kwargs,
        )
pytao.Tao.plot1
plot1(name, *, verbose=False, as_dict=True, raises=True)

Output info on a given plot.

Parameters:

Name Type Description Default
name
required

Returns:

Type Description
string_list
Notes

Command syntax: pipe plot1 {name}

{name} should be the region name if the plot is associated with a region. Output syntax is parameter list form. See documentation at the beginning of this file.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: name: beta

Source code in pytao/interface_commands.py
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
def plot1(self, name, *, verbose=False, as_dict=True, raises=True):
    """

    Output info on a given plot.

    Parameters
    ----------
    name

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe plot1 {name}

    {name} should be the region name if the plot is associated with a region.
    Output syntax is parameter list form. See documentation at the beginning of this file.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       name: beta

    """
    cmd = f"pipe plot1 {name}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="plot1", cmd_type="string_list"
    )
pytao.Tao.plot_curve
plot_curve(curve_name, *, verbose=False, as_dict=True, raises=True)

Output curve information for a plot.

Parameters:

Name Type Description Default
curve_name
required

Returns:

Type Description
string_list
Notes

Command syntax: pipe plot_curve {curve_name}

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: curve_name: r13.g.a

Source code in pytao/interface_commands.py
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
def plot_curve(self, curve_name, *, verbose=False, as_dict=True, raises=True):
    """

    Output curve information for a plot.

    Parameters
    ----------
    curve_name

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe plot_curve {curve_name}

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       curve_name: r13.g.a

    """
    cmd = f"pipe plot_curve {curve_name}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="plot_curve", cmd_type="string_list"
    )
pytao.Tao.plot_curve_manage
plot_curve_manage(graph_name, curve_index, curve_name, *, verbose=False, as_dict=True, raises=True)

Template plot curve creation/destruction

Parameters:

Name Type Description Default
graph_name
required
curve_index
required
curve_name
required

Returns:

Type Description
None
Notes

Command syntax: pipe plot_curve_manage {graph_name}^^{curve_index}^^{curve_name}

If {curve_index} corresponds to an existing curve then this curve is deleted. In this case the {curve_name} is ignored and does not have to be present. If {curve_index} does not not correspond to an existing curve, {curve_index} must be one greater than the number of curves.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: graph_name: beta.g curve_index: 1 curve_name: r13.g.a

Source code in pytao/interface_commands.py
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
def plot_curve_manage(
    self, graph_name, curve_index, curve_name, *, verbose=False, as_dict=True, raises=True
):
    """

    Template plot curve creation/destruction

    Parameters
    ----------
    graph_name
    curve_index
    curve_name

    Returns
    -------
    None

    Notes
    -----
    Command syntax:
      pipe plot_curve_manage {graph_name}^^{curve_index}^^{curve_name}

    If {curve_index} corresponds to an existing curve then this curve is deleted.
    In this case the {curve_name} is ignored and does not have to be present.
    If {curve_index} does not not correspond to an existing curve, {curve_index}
    must be one greater than the number of curves.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       graph_name: beta.g
       curve_index: 1
       curve_name: r13.g.a

    """
    cmd = f"pipe plot_curve_manage {graph_name}^^{curve_index}^^{curve_name}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="plot_curve_manage", cmd_type="None"
    )
pytao.Tao.plot_field
plot_field(ele_id, *, colormap=None, radius=0.015, num_points=100, backend=None, **kwargs)

Plot field information for a given element.

Parameters:

Name Type Description Default
ele_id str

Element ID.

required
colormap str

Colormap for the plot. Matplotlib defaults to "PRGn_r", and bokeh defaults to "Magma256".

None
radius float

Radius.

0.015
num_points int

Number of data points.

100
backend ('bokeh', 'mpl')

The backend to use. Auto-detects Jupyter and availability of bokeh to select a backend.

"bokeh"
Source code in pytao/interface_commands.py
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
def plot_field(
    self,
    ele_id: str,
    *,
    colormap: Optional[str] = None,
    radius: float = 0.015,
    num_points: int = 100,
    backend: Optional[str] = None,
    **kwargs,
):
    """
    Plot field information for a given element.

    Parameters
    ----------
    ele_id : str
        Element ID.
    colormap : str, optional
        Colormap for the plot.
        Matplotlib defaults to "PRGn_r", and bokeh defaults to "Magma256".
    radius : float, default=0.015
        Radius.
    num_points : int, default=100
        Number of data points.
    backend : {"bokeh", "mpl"}, optional
        The backend to use.  Auto-detects Jupyter and availability of bokeh
        to select a backend.
    """
    manager = self._get_user_specified_backend(backend)
    self.last_plot = manager.plot_field(
        ele_id,
        colormap=colormap,
        radius=radius,
        num_points=num_points,
        **kwargs,
    )
pytao.Tao.plot_graph
plot_graph(graph_name, *, verbose=False, as_dict=True, raises=True)

Output graph info.

Parameters:

Name Type Description Default
graph_name
required

Returns:

Type Description
dict
Notes

Command syntax: pipe plot_graph {graph_name}

{graph_name} is in the form: {p_name}.{g_name} where {p_name} is the plot region name if from a region or the plot name if a template plot. This name is obtained from the pipe plot_list command. {g_name} is the graph name obtained from the pipe plot1 command.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: graph_name: beta.g

Source code in pytao/interface_commands.py
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
def plot_graph(self, graph_name, *, verbose=False, as_dict=True, raises=True):
    """

    Output graph info.

    Parameters
    ----------
    graph_name

    Returns
    -------
    dict

    Notes
    -----
    Command syntax:
      pipe plot_graph {graph_name}

    {graph_name} is in the form:
      {p_name}.{g_name}
    where
      {p_name} is the plot region name if from a region or the plot name if a template plot.
      This name is obtained from the pipe plot_list command.
      {g_name} is the graph name obtained from the pipe plot1 command.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       graph_name: beta.g

    """
    cmd = f"pipe plot_graph {graph_name}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="plot_graph", cmd_type="string_list"
    )
pytao.Tao.plot_graph_manage
plot_graph_manage(plot_name, graph_index, graph_name, *, verbose=False, as_dict=True, raises=True)

Template plot graph creation/destruction

Parameters:

Name Type Description Default
plot_name
required
graph_index
required
graph_name
required

Returns:

Type Description
None
Notes

Command syntax: pipe plot_graph_manage {plot_name}^^{graph_index}^^{graph_name}

If {graph_index} corresponds to an existing graph then this graph is deleted. In this case the {graph_name} is ignored and does not have to be present. If {graph_index} does not not correspond to an existing graph, {graph_index} must be one greater than the number of graphs.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: plot_name: beta graph_index: 1 graph_name: beta.g

Source code in pytao/interface_commands.py
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
def plot_graph_manage(
    self, plot_name, graph_index, graph_name, *, verbose=False, as_dict=True, raises=True
):
    """

    Template plot graph creation/destruction

    Parameters
    ----------
    plot_name
    graph_index
    graph_name

    Returns
    -------
    None

    Notes
    -----
    Command syntax:
      pipe plot_graph_manage {plot_name}^^{graph_index}^^{graph_name}

    If {graph_index} corresponds to an existing graph then this graph is deleted.
    In this case the {graph_name} is ignored and does not have to be present.
    If {graph_index} does not not correspond to an existing graph, {graph_index}
    must be one greater than the number of graphs.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       plot_name: beta
       graph_index: 1
       graph_name: beta.g

    """
    cmd = f"pipe plot_graph_manage {plot_name}^^{graph_index}^^{graph_name}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="plot_graph_manage", cmd_type="None"
    )
pytao.Tao.plot_histogram
plot_histogram(curve_name, *, verbose=False, as_dict=True, raises=True)

Output plot histogram info.

Parameters:

Name Type Description Default
curve_name
required

Returns:

Type Description
string_list
Notes

Command syntax: pipe plot_histogram {curve_name}

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: curve_name: r33.g.x

Source code in pytao/interface_commands.py
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
def plot_histogram(self, curve_name, *, verbose=False, as_dict=True, raises=True):
    """

    Output plot histogram info.

    Parameters
    ----------
    curve_name

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe plot_histogram {curve_name}

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       curve_name: r33.g.x

    """
    cmd = f"pipe plot_histogram {curve_name}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="plot_histogram", cmd_type="string_list"
    )
pytao.Tao.plot_lat_layout
plot_lat_layout(ix_uni, ix_branch, *, verbose=False, as_dict=True, raises=True)

Output plot Lat_layout info

Parameters:

Name Type Description Default
ix_uni 1
required
ix_branch 0
required

Returns:

Type Description
list of dict
Notes

Command syntax: pipe plot_lat_layout {ix_uni}@{ix_branch}

Note: The returned list of element positions is not ordered in increasing longitudinal position.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ix_uni: 1 ix_branch: 0

Source code in pytao/interface_commands.py
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
def plot_lat_layout(
    self, ix_uni: 1, ix_branch: 0, *, verbose=False, as_dict=True, raises=True
):
    """

    Output plot Lat_layout info

    Parameters
    ----------
    ix_uni: 1
    ix_branch: 0

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe plot_lat_layout {ix_uni}@{ix_branch}

    Note: The returned list of element positions is not ordered in increasing
          longitudinal position.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ix_uni: 1
       ix_branch: 0

    """
    cmd = f"pipe plot_lat_layout {ix_uni}@{ix_branch}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="plot_lat_layout", cmd_type="string_list"
    )
pytao.Tao.plot_line
plot_line(region_name, graph_name, curve_name, *, x_or_y='', verbose=False, as_dict=True, raises=True)

Output points used to construct the "line" associated with a plot curve.

Parameters:

Name Type Description Default
region_name
required
graph_name
required
curve_name
required
x_or_y optional
''

Returns:

Type Description
string_list

if x_or_y == ''

real_array

if x_or_y != ''

Notes

Command syntax: pipe plot_line {region_name}.{graph_name}.{curve_name} {x_or_y}

Optional {x-or-y} may be set to "x" or "y" to get the smooth line points x or y component put into the real array buffer. Note: The plot must come from a region, and not a template, since no template plots have associated line data. Examples: pipe plot_line r13.g.a ! String array output. pipe plot_line r13.g.a x ! x-component of line points loaded into the real array buffer. pipe plot_line r13.g.a y ! y-component of line points loaded into the real array buffer.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_plot_line -external_plotting args: region_name: beta graph_name: g curve_name: a x_or_y:

Example: 2 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_plot_line -external_plotting args: region_name: beta graph_name: g curve_name: a x_or_y: y

Source code in pytao/interface_commands.py
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
def plot_line(
    self,
    region_name,
    graph_name,
    curve_name,
    *,
    x_or_y="",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Output points used to construct the "line" associated with a plot curve.

    Parameters
    ----------
    region_name
    graph_name
    curve_name
    x_or_y : optional

    Returns
    -------
    string_list
        if x_or_y == ''
    real_array
        if x_or_y != ''

    Notes
    -----
    Command syntax:
      pipe plot_line {region_name}.{graph_name}.{curve_name} {x_or_y}

    Optional {x-or-y} may be set to "x" or "y" to get the smooth line points x or y
    component put into the real array buffer.
    Note: The plot must come from a region, and not a template, since no template plots
          have associated line data.
    Examples:
      pipe plot_line r13.g.a   ! String array output.
      pipe plot_line r13.g.a x ! x-component of line points loaded into the real array buffer.
      pipe plot_line r13.g.a y ! y-component of line points loaded into the real array buffer.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_plot_line -external_plotting
     args:
       region_name: beta
       graph_name: g
       curve_name: a
       x_or_y:

    Example: 2
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_plot_line -external_plotting
     args:
       region_name: beta
       graph_name: g
       curve_name: a
       x_or_y: y

    """
    cmd = f"pipe plot_line {region_name}.{graph_name}.{curve_name} {x_or_y}"
    if verbose:
        print(cmd)
    if x_or_y == "":
        return self.__execute(
            cmd, as_dict, raises, method_name="plot_line", cmd_type="string_list"
        )
    if x_or_y != "":
        return self.__execute(
            cmd, as_dict, raises, method_name="plot_line", cmd_type="real_array"
        )
pytao.Tao.plot_list
plot_list(r_or_g, *, verbose=False, as_dict=True, raises=True)

Output list of plot templates or plot regions.

Parameters:

Name Type Description Default
r_or_g
required

Returns:

Type Description
if r_or_g == 't'

dict with template_name:index

if r_or_g == 'r'

list of dicts with keys: region ix plot_name visible x1, x2, y1, y1

Notes

Command syntax: pipe plot_list {r_or_g}

where "{r/g}" is: "r" ! list regions of the form ix;region_name;plot_name;visible;x1;x2;y1;y2 "t" ! list template plots of the form ix;name

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: r_or_g: r

Source code in pytao/interface_commands.py
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
def plot_list(self, r_or_g, *, verbose=False, as_dict=True, raises=True):
    """

    Output list of plot templates or plot regions.

    Parameters
    ----------
    r_or_g

    Returns
    -------
    if r_or_g == 't'
        dict with template_name:index
    if r_or_g == 'r'
        list of dicts with keys:
            region
            ix
            plot_name
            visible
            x1, x2, y1, y1

    Notes
    -----
    Command syntax:
      pipe plot_list {r_or_g}

    where "{r/g}" is:
      "r"      ! list regions of the form ix;region_name;plot_name;visible;x1;x2;y1;y2
      "t"      ! list template plots of the form ix;name

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       r_or_g: r

    """
    cmd = f"pipe plot_list {r_or_g}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="plot_list", cmd_type="string_list"
    )
pytao.Tao.plot_page
plot_page()

Get plot page parameters.

Source code in pytao/interface_commands.py
800
801
802
803
def plot_page(self):
    """Get plot page parameters."""
    cmd = "show plot_page"
    return _pytao_parsers.parse_show_plot_page(self.cmd(cmd), cmd=cmd)
pytao.Tao.plot_symbol
plot_symbol(region_name, graph_name, curve_name, x_or_y, *, verbose=False, as_dict=True, raises=True)

Output locations to draw symbols for a plot curve.

Parameters:

Name Type Description Default
region_name
required
graph_name
required
curve_name
required
x_or_y
required

Returns:

Type Description
string_list

if x_or_y == ''

real_array

if x_or_y != ''

Notes

Command syntax: pipe plot_symbol {region_name}.{graph_name}.{curve_name} {x_or_y}

Optional {x_or_y} may be set to "x" or "y" to get the symbol x or y positions put into the real array buffer. Note: The plot must come from a region, and not a template, since no template plots have associated symbol data. Examples: pipe plot_symbol r13.g.a ! String array output. pipe plot_symbol r13.g.a x ! x-component of the symbol positions loaded into the real array buffer. pipe plot_symbol r13.g.a y ! y-component of the symbol positions loaded into the real array buffer.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_plot_line -external_plotting args: region_name: r13 graph_name: g curve_name: a x_or_y:

Example: 2 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_plot_line -external_plotting args: region_name: r13 graph_name: g curve_name: a x_or_y: y

Source code in pytao/interface_commands.py
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
def plot_symbol(
    self,
    region_name,
    graph_name,
    curve_name,
    x_or_y,
    *,
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Output locations to draw symbols for a plot curve.

    Parameters
    ----------
    region_name
    graph_name
    curve_name
    x_or_y

    Returns
    -------
    string_list
        if x_or_y == ''
    real_array
        if x_or_y != ''

    Notes
    -----
    Command syntax:
      pipe plot_symbol {region_name}.{graph_name}.{curve_name} {x_or_y}

    Optional {x_or_y} may be set to "x" or "y" to get the symbol x or y
    positions put into the real array buffer.
    Note: The plot must come from a region, and not a template,
          since no template plots have associated symbol data.
    Examples:
      pipe plot_symbol r13.g.a       ! String array output.
      pipe plot_symbol r13.g.a x     ! x-component of the symbol positions
                                         loaded into the real array buffer.
      pipe plot_symbol r13.g.a y     ! y-component of the symbol positions
                                         loaded into the real array buffer.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_plot_line -external_plotting
     args:
       region_name: r13
       graph_name: g
       curve_name: a
       x_or_y:

    Example: 2
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_plot_line -external_plotting
     args:
       region_name: r13
       graph_name: g
       curve_name: a
       x_or_y: y

    """
    cmd = f"pipe plot_symbol {region_name}.{graph_name}.{curve_name} {x_or_y}"
    if verbose:
        print(cmd)
    if x_or_y == "":
        return self.__execute(
            cmd, as_dict, raises, method_name="plot_symbol", cmd_type="string_list"
        )
    if x_or_y != "":
        return self.__execute(
            cmd, as_dict, raises, method_name="plot_symbol", cmd_type="real_array"
        )
pytao.Tao.plot_template_manage
plot_template_manage(template_location, template_name, *, n_graph='-1', graph_names='', verbose=False, as_dict=True, raises=True)

Template plot creation or destruction.

Parameters:

Name Type Description Default
template_location
required
template_name
required
n_graph default=-1
'-1'
graph_names default=
''

Returns:

Type Description
None
Notes

Command syntax: pipe plot_template_manage {template_location}^^{template_name}^^ {n_graph}^^{graph_names}

Where: {template_location} is the location to place or delete a template plot. Use "@Tnnn" syntax for the location. {template_name} is the name of the template plot. If deleting a plot this name is immaterial. {n_graph} is the number of associated graphs. If set to -1 then any existing template plot is deleted. {graph_names} are the names of the graphs. graph_names should be in the form: graph1_name^^graph2_name^^...^^graphN_name for N=n_graph names

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: template_location: @T1 template_name: beta n_graph: 2 graph_names: g1^^g2

Source code in pytao/interface_commands.py
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
def plot_template_manage(
    self,
    template_location,
    template_name,
    *,
    n_graph="-1",
    graph_names="",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Template plot creation or destruction.

    Parameters
    ----------
    template_location
    template_name
    n_graph : default=-1
    graph_names : default=

    Returns
    -------
    None

    Notes
    -----
    Command syntax:
      pipe plot_template_manage {template_location}^^{template_name}^^
                             {n_graph}^^{graph_names}

    Where:
      {template_location} is the location to place or delete a template plot. Use "@Tnnn" syntax for the location.
      {template_name} is the name of the template plot. If deleting a plot this name is immaterial.
      {n_graph} is the number of associated graphs. If set to -1 then any existing template plot is deleted.
      {graph_names} are the names of the graphs.  graph_names should be in the form:
         graph1_name^^graph2_name^^...^^graphN_name
      for N=n_graph names

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       template_location: @T1
       template_name: beta
       n_graph: 2
       graph_names: g1^^g2

    """
    cmd = f"pipe plot_template_manage {template_location}^^{template_name}^^{n_graph}^^{graph_names}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="plot_template_manage", cmd_type="None"
    )
pytao.Tao.plot_transfer
plot_transfer(from_plot, to_plot, *, verbose=False, as_dict=True, raises=True)

Output transfer plot parameters from the "from plot" to the "to plot" (or plots).

Parameters:

Name Type Description Default
from_plot
required
to_plot
required

Returns:

Type Description
None
Notes

Command syntax: pipe plot_transfer {from_plot} {to_plot}

To avoid confusion, use "@Tnnn" and "@Rnnn" syntax for {from_plot}. If {to_plot} is not present and {from_plot} is a template plot, the "to plots" are the equivalent region plots with the same name. And vice versa if {from_plot} is a region plot.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: from_plot: r13 to_plot: r23

Source code in pytao/interface_commands.py
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
def plot_transfer(self, from_plot, to_plot, *, verbose=False, as_dict=True, raises=True):
    """

    Output transfer plot parameters from the "from plot" to the "to plot" (or plots).

    Parameters
    ----------
    from_plot
    to_plot

    Returns
    -------
    None

    Notes
    -----
    Command syntax:
      pipe plot_transfer {from_plot} {to_plot}

    To avoid confusion, use "@Tnnn" and "@Rnnn" syntax for {from_plot}.
    If {to_plot} is not present and {from_plot} is a template plot, the "to plots"
     are the equivalent region plots with the same name. And vice versa
     if {from_plot} is a region plot.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       from_plot: r13
       to_plot: r23

    """
    cmd = f"pipe plot_transfer {from_plot} {to_plot}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="plot_transfer", cmd_type="None"
    )
pytao.Tao.ptc_com
ptc_com(*, verbose=False, as_dict=True, raises=True)

Output Ptc_com structure components.

Returns:

Type Description
string_list
Notes

Command syntax: pipe ptc_com

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args:

Source code in pytao/interface_commands.py
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
def ptc_com(self, *, verbose=False, as_dict=True, raises=True):
    """

    Output Ptc_com structure components.

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ptc_com

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:

    """
    cmd = "pipe ptc_com"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ptc_com", cmd_type="string_list"
    )
pytao.Tao.ring_general
ring_general(*, ix_uni='', ix_branch='', which='model', verbose=False, as_dict=True, raises=True)

Output lattice branch with closed geometry info (emittances, etc.)

Parameters:

Name Type Description Default
ix_uni optional
''
ix_branch optional
''
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe ring_general {ix_uni}@{ix_branch}|{which}

where {which} is one of: model base design Example: pipe ring_general 1@0|model

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ix_uni: 1 ix_branch: 0 which: model

Source code in pytao/interface_commands.py
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
def ring_general(
    self,
    *,
    ix_uni="",
    ix_branch="",
    which="model",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Output lattice branch with closed geometry info (emittances, etc.)

    Parameters
    ----------
    ix_uni : optional
    ix_branch : optional
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe ring_general {ix_uni}@{ix_branch}|{which}

    where {which} is one of:
      model
      base
      design
    Example:
      pipe ring_general 1@0|model

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
        ix_uni: 1
        ix_branch: 0
        which: model

    """
    cmd = f"pipe ring_general {ix_uni}@{ix_branch}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="ring_general", cmd_type="string_list"
    )
pytao.Tao.shape_list
shape_list(who, *, verbose=False, as_dict=True, raises=True)

Output lat_layout or floor_plan shapes list

Parameters:

Name Type Description Default
who
required

Returns:

Type Description
list of dict
Notes

Command syntax: pipe shape_list {who}

{who} is one of: lat_layout floor_plan

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: who: floor_plan

Source code in pytao/interface_commands.py
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
def shape_list(self, who, *, verbose=False, as_dict=True, raises=True):
    """

    Output lat_layout or floor_plan shapes list

    Parameters
    ----------
    who

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe shape_list {who}

    {who} is one of:
      lat_layout
      floor_plan

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       who: floor_plan

    """
    cmd = f"pipe shape_list {who}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="shape_list", cmd_type="string_list"
    )
pytao.Tao.shape_manage
shape_manage(who, index, add_or_delete, *, verbose=False, as_dict=True, raises=True)

Element shape creation or destruction

Parameters:

Name Type Description Default
who
required
index
required
add_or_delete
required

Returns:

Type Description
string_list
Notes

Command syntax: pipe shape_manage {who} {index} {add_or_delete}

{who} is one of: lat_layout floor_plan {add_or_delete} is one of: add -- Add a shape at {index}. Shapes with higher index get moved up one to make room. delete -- Delete shape at {index}. Shapes with higher index get moved down one to fill the gap.

Example: pipe shape_manage floor_plan 2 add Note: After adding a shape use "pipe shape_set" to set shape parameters. This is important since an added shape is in a ill-defined state.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: who: floor_plan index: 1 add_or_delete: add

Source code in pytao/interface_commands.py
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
def shape_manage(
    self, who, index, add_or_delete, *, verbose=False, as_dict=True, raises=True
):
    """

    Element shape creation or destruction

    Parameters
    ----------
    who
    index
    add_or_delete

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe shape_manage {who} {index} {add_or_delete}

    {who} is one of:
      lat_layout
      floor_plan
    {add_or_delete} is one of:
      add     -- Add a shape at {index}.
                 Shapes with higher index get moved up one to make room.
      delete  -- Delete shape at {index}.
                 Shapes with higher index get moved down one to fill the gap.

    Example:
      pipe shape_manage floor_plan 2 add
    Note: After adding a shape use "pipe shape_set" to set shape parameters.
    This is important since an added shape is in a ill-defined state.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       who: floor_plan
       index: 1
       add_or_delete: add

    """
    cmd = f"pipe shape_manage {who} {index} {add_or_delete}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="shape_manage", cmd_type="string_list"
    )
pytao.Tao.shape_pattern_list
shape_pattern_list(*, ix_pattern='', verbose=False, as_dict=True, raises=True)

Output list of shape patterns or shape pattern points

Parameters:

Name Type Description Default
ix_pattern optional
''

Returns:

Type Description
list of dict
Notes

Command syntax: pipe shape_pattern_list {ix_pattern}

If optional {ix_pattern} index is omitted then list all the patterns. If {ix_pattern} is present, list points of given pattern.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_shape args: ix_pattern:

Source code in pytao/interface_commands.py
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
def shape_pattern_list(self, *, ix_pattern="", verbose=False, as_dict=True, raises=True):
    """

    Output list of shape patterns or shape pattern points

    Parameters
    ----------
    ix_pattern : optional

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe shape_pattern_list {ix_pattern}

    If optional {ix_pattern} index is omitted then list all the patterns.
    If {ix_pattern} is present, list points of given pattern.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_shape
     args:
       ix_pattern:

    """
    cmd = f"pipe shape_pattern_list {ix_pattern}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="shape_pattern_list", cmd_type="string_list"
    )
pytao.Tao.shape_pattern_manage
shape_pattern_manage(ix_pattern, pat_name, pat_line_width, *, verbose=False, as_dict=True, raises=True)

Add or remove shape pattern

Parameters:

Name Type Description Default
ix_pattern
required
pat_name
required
pat_line_width
required

Returns:

Type Description
None
Notes

Command syntax: pipe shape_pattern_manage {ix_pattern}^^{pat_name}^^{pat_line_width}

Where: {ix_pattern} -- Pattern index. Patterns with higher indexes will be moved up if adding a pattern and down if deleting. {pat_name} -- Pattern name. {pat_line_width} -- Line width. Integer. If set to "delete" then section will be deleted.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_shape args: ix_pattern : 1 pat_name : new_pat pat_line_width : 1

Source code in pytao/interface_commands.py
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
def shape_pattern_manage(
    self, ix_pattern, pat_name, pat_line_width, *, verbose=False, as_dict=True, raises=True
):
    """

    Add or remove shape pattern

    Parameters
    ----------
    ix_pattern
    pat_name
    pat_line_width

    Returns
    -------
    None

    Notes
    -----
    Command syntax:
      pipe shape_pattern_manage {ix_pattern}^^{pat_name}^^{pat_line_width}

    Where:
      {ix_pattern}      -- Pattern index. Patterns with higher indexes will be moved up
                                          if adding a pattern and down if deleting.
      {pat_name}        -- Pattern name.
      {pat_line_width}  -- Line width. Integer. If set to "delete" then section
                                                will be deleted.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_shape
     args:
       ix_pattern : 1
       pat_name : new_pat
       pat_line_width : 1

    """
    cmd = f"pipe shape_pattern_manage {ix_pattern}^^{pat_name}^^{pat_line_width}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="shape_pattern_manage", cmd_type="None"
    )
pytao.Tao.shape_pattern_point_manage
shape_pattern_point_manage(ix_pattern, ix_point, s, x, *, verbose=False, as_dict=True, raises=True)

Add or remove shape pattern point

Parameters:

Name Type Description Default
ix_pattern
required
ix_point
required
s
required
x
required

Returns:

Type Description
None
Notes

Command syntax: pipe shape_pattern_point_manage {ix_pattern}^^{ix_point}^^{s}^^{x}

Where: {ix_pattern} -- Pattern index. {ix_point} -- Point index. Points of higher indexes will be moved up if adding a point and down if deleting. {s}, {x} -- Point location. If {s} is "delete" then delete the point.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_shape args: ix_pattern: 1 ix_point: 1 s: 0 x: 0

Source code in pytao/interface_commands.py
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
def shape_pattern_point_manage(
    self, ix_pattern, ix_point, s, x, *, verbose=False, as_dict=True, raises=True
):
    """

    Add or remove shape pattern point

    Parameters
    ----------
    ix_pattern
    ix_point
    s
    x

    Returns
    -------
    None

    Notes
    -----
    Command syntax:
      pipe shape_pattern_point_manage {ix_pattern}^^{ix_point}^^{s}^^{x}

    Where:
      {ix_pattern}      -- Pattern index.
      {ix_point}        -- Point index. Points of higher indexes will be moved up
                                        if adding a point and down if deleting.
      {s}, {x}          -- Point location. If {s} is "delete" then delete the point.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_shape
     args:
       ix_pattern: 1
       ix_point: 1
       s: 0
       x: 0

    """
    cmd = f"pipe shape_pattern_point_manage {ix_pattern}^^{ix_point}^^{s}^^{x}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="shape_pattern_point_manage", cmd_type="None"
    )
pytao.Tao.shape_set
shape_set(who, shape_index, ele_name, shape, color, shape_size, type_label, shape_draw, multi_shape, line_width, *, verbose=False, as_dict=True, raises=True)

Set lat_layout or floor_plan shape parameters.

Parameters:

Name Type Description Default
who
required
shape_index
required
ele_name
required
shape
required
color
required
shape_size
required
type_label
required
shape_draw
required
multi_shape
required
line_width
required

Returns:

Type Description
None
Notes

Command syntax: pipe shape_set {who}^^{shape_index}^^{ele_name}^^{shape}^^{color}^^ {shape_size}^^{type_label}^^{shape_draw}^^ {multi_shape}^^{line_width}

{who} is one of: lat_layout floor_plan

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: who: floor_plan shape_index: 1 ele_name: Q1 shape: circle color: shape_size: type_label: shape_draw: multi_shape: line_width:

Source code in pytao/interface_commands.py
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
def shape_set(
    self,
    who,
    shape_index,
    ele_name,
    shape,
    color,
    shape_size,
    type_label,
    shape_draw,
    multi_shape,
    line_width,
    *,
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Set lat_layout or floor_plan shape parameters.

    Parameters
    ----------
    who
    shape_index
    ele_name
    shape
    color
    shape_size
    type_label
    shape_draw
    multi_shape
    line_width

    Returns
    -------
    None

    Notes
    -----
    Command syntax:
      pipe shape_set {who}^^{shape_index}^^{ele_name}^^{shape}^^{color}^^
                       {shape_size}^^{type_label}^^{shape_draw}^^
                       {multi_shape}^^{line_width}

    {who} is one of:
      lat_layout
      floor_plan

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       who: floor_plan
       shape_index: 1
       ele_name: Q1
       shape: circle
       color:
       shape_size:
       type_label:
       shape_draw:
       multi_shape:
       line_width:

    """
    cmd = f"pipe shape_set {who}^^{shape_index}^^{ele_name}^^{shape}^^{color}^^{shape_size}^^{type_label}^^{shape_draw}^^{multi_shape}^^{line_width}"
    if verbose:
        print(cmd)
    return self.__execute(cmd, as_dict, raises, method_name="shape_set", cmd_type="None")
pytao.Tao.show
show(line, *, verbose=False, as_dict=True, raises=True)

Output the output from a show command.

Parameters:

Name Type Description Default
line
required

Returns:

Type Description
list of str

This is raw list of strings from tao, as parsing is not currently supported.

Notes

Command syntax: pipe show {line}

{line} is the string to pass through to the show command. Example: pipe show lattice -pipe

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: line: -pipe

Source code in pytao/interface_commands.py
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
def show(self, line, *, verbose=False, as_dict=True, raises=True):
    """

    Output the output from a show command.

    Parameters
    ----------
    line

    Returns
    -------
    list of str
        This is raw list of strings from tao, as parsing is not currently
        supported.

    Notes
    -----
    Command syntax:
      pipe show {line}

    {line} is the string to pass through to the show command.
    Example:
      pipe show lattice -pipe

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       line: -pipe

    """
    cmd = f"pipe show {line}"
    if verbose:
        print(cmd)
    return self.__execute(cmd, as_dict, raises, method_name="show", cmd_type="string_list")
pytao.Tao.space_charge_com
space_charge_com(*, verbose=False, as_dict=True, raises=True)

Output space_charge_com structure parameters.

Returns:

Type Description
string_list
Notes

Command syntax: pipe space_charge_com

Output syntax is parameter list form. See documentation at the beginning of this file.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args:

Source code in pytao/interface_commands.py
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
def space_charge_com(self, *, verbose=False, as_dict=True, raises=True):
    """

    Output space_charge_com structure parameters.

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe space_charge_com

    Output syntax is parameter list form. See documentation at the beginning of this file.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:

    """
    cmd = "pipe space_charge_com"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="space_charge_com", cmd_type="string_list"
    )
pytao.Tao.species_to_int
species_to_int(species_str, *, verbose=False, as_dict=True, raises=True)

Convert species name to corresponding integer

Parameters:

Name Type Description Default
species_str
required

Returns:

Type Description
int
Notes

Command syntax: pipe species_to_int {species_str}

Example: pipe species_to_int CO2++

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: species_str: electron

Source code in pytao/interface_commands.py
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
def species_to_int(self, species_str, *, verbose=False, as_dict=True, raises=True):
    """

    Convert species name to corresponding integer

    Parameters
    ----------
    species_str

    Returns
    -------
    int

    Notes
    -----
    Command syntax:
      pipe species_to_int {species_str}

    Example:
      pipe species_to_int CO2++

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       species_str: electron

    """
    cmd = f"pipe species_to_int {species_str}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="species_to_int", cmd_type="string_list"
    )
pytao.Tao.species_to_str
species_to_str(species_int, *, verbose=False, as_dict=True, raises=True)

Convert species integer id to corresponding

Parameters:

Name Type Description Default
species_int
required

Returns:

Type Description
str
Notes

Command syntax: pipe species_to_str {species_int}

Example: pipe species_to_str -1 ! Returns 'Electron'

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: species_int: -1

Source code in pytao/interface_commands.py
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
def species_to_str(self, species_int, *, verbose=False, as_dict=True, raises=True):
    """

    Convert species integer id to corresponding

    Parameters
    ----------
    species_int

    Returns
    -------
    str

    Notes
    -----
    Command syntax:
      pipe species_to_str {species_int}

    Example:
      pipe species_to_str -1     ! Returns 'Electron'

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       species_int: -1

    """
    cmd = f"pipe species_to_str {species_int}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="species_to_str", cmd_type="string_list"
    )
pytao.Tao.spin_invariant
spin_invariant(who, *, ix_uni='', ix_branch='', which='model', flags='-array_out', verbose=False, as_dict=True, raises=True)

Output closed orbit spin axes n0, l0, or m0 at the ends of all lattice elements in a branch. n0, l0, and m0 are solutions of the T-BMT equation. n0 is periodic while l0 and m0 are not. At the beginning of the branch, the orientation of the l0 or m0 axes in the plane perpendicular to the n0 axis is chosen a bit arbitrarily. See the Bmad manual for more details.

Parameters:

Name Type Description Default
who
required
ix_uni optional
''
ix_branch optional
''
which default=model
'model'
flags default=-array_out
'-array_out'

Returns:

Type Description
string_list

if '-array_out' not in flags

real_array

if '-array_out' in flags

Notes

Command syntax: pipe spin_invariant {flags} {who} {ix_uni}@{ix_branch}|{which}

Where: {flags} are optional switches: -array_out : If present, the output will be available in the tao_c_interface_com%c_real. {who} is one of: l0, n0, or m0 {ix_uni} is a universe index. Defaults to s%global%default_universe. {ix_branch} is a branch index. Defaults to s%global%default_branch. {which} is one of: model base design

Example: pipe spin_invariant 1@0|model

Note: This command is under development. If you want to use please contact David Sagan.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: who: l0 ix_uni: 1 ix_branch: 0 which: model

Source code in pytao/interface_commands.py
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
def spin_invariant(
    self,
    who,
    *,
    ix_uni="",
    ix_branch="",
    which="model",
    flags="-array_out",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Output closed orbit spin axes n0, l0, or m0 at the ends of all lattice elements in a branch.
    n0, l0, and m0 are solutions of the T-BMT equation.
    n0 is periodic while l0 and m0 are not. At the beginning of the branch, the orientation of the
    l0 or m0 axes in the plane perpendicular to the n0 axis is chosen a bit arbitrarily.
    See the Bmad manual for more details.

    Parameters
    ----------
    who
    ix_uni : optional
    ix_branch : optional
    which : default=model
    flags : default=-array_out

    Returns
    -------
    string_list
        if '-array_out' not in flags
    real_array
        if '-array_out' in flags

    Notes
    -----
    Command syntax:
      pipe spin_invariant {flags} {who} {ix_uni}@{ix_branch}|{which}

    Where:
      {flags} are optional switches:
          -array_out : If present, the output will be available in the tao_c_interface_com%c_real.
      {who} is one of: l0, n0, or m0
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {ix_branch} is a branch index. Defaults to s%global%default_branch.
      {which} is one of:
        model
        base
        design

    Example:
      pipe spin_invariant 1@0|model

    Note: This command is under development. If you want to use please contact David Sagan.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       who: l0
       ix_uni: 1
       ix_branch: 0
       which: model

    """
    cmd = f"pipe spin_invariant {flags} {who} {ix_uni}@{ix_branch}|{which}"
    if verbose:
        print(cmd)
    if "-array_out" not in flags:
        return self.__execute(
            cmd, as_dict, raises, method_name="spin_invariant", cmd_type="string_list"
        )
    if "-array_out" in flags:
        return self.__execute(
            cmd, as_dict, raises, method_name="spin_invariant", cmd_type="real_array"
        )
pytao.Tao.spin_polarization
spin_polarization(*, ix_uni='', ix_branch='', which='model', verbose=False, as_dict=True, raises=True)

Output spin polarization information

Parameters:

Name Type Description Default
ix_uni optional
''
ix_branch optional
''
which default=model
'model'

Returns:

Type Description
dict
Notes

Command syntax: pipe spin_polarization {ix_uni}@{ix_branch}|{which}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe. {ix_branch} is a branch index. Defaults to s%global%default_branch. {which} is one of: model base design

Example: pipe spin_polarization 1@0|model

Note: This command is under development. If you want to use please contact David Sagan.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ix_uni: 1 ix_branch: 0 which: model

Source code in pytao/interface_commands.py
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
def spin_polarization(
    self,
    *,
    ix_uni="",
    ix_branch="",
    which="model",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Output spin polarization information

    Parameters
    ----------
    ix_uni : optional
    ix_branch : optional
    which : default=model

    Returns
    -------
    dict

    Notes
    -----
    Command syntax:
      pipe spin_polarization {ix_uni}@{ix_branch}|{which}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {ix_branch} is a branch index. Defaults to s%global%default_branch.
      {which} is one of:
        model
        base
        design

    Example:
      pipe spin_polarization 1@0|model

    Note: This command is under development. If you want to use please contact David Sagan.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ix_uni: 1
       ix_branch: 0
       which: model

    """
    cmd = f"pipe spin_polarization {ix_uni}@{ix_branch}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="spin_polarization", cmd_type="string_list"
    )
pytao.Tao.spin_resonance
spin_resonance(*, ix_uni='', ix_branch='', which='model', ref_ele='0', verbose=False, as_dict=True, raises=True)

Output spin resonance information

Parameters:

Name Type Description Default
ix_uni optional
''
ix_branch optional
''
which default=model
'model'
ref_ele default=0

Reference element to calculate at.

'0'

Returns:

Type Description
dict
Notes

Command syntax: pipe spin_resonance {ix_uni}@{ix_branch}|{which} {ref_ele}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe. {ix_branch} is a lattice branch index. Defaults to s%global%default_branch. {which} is one of: "model", "base" or "design" {ref_ele} is an element name or index. This will return a string_list with the following fields: spin_tune -- Spin tune dq_X_sum, dq_X_diff -- Tune sum Q_spin+Q_mode and tune difference Q_spin-Q_mode for modes X = a, b, and c. xi_res_X_sum, xi_res_X_diff -- The linear spin/orbit sum and difference resonance strengths for X = a, b, and c modes.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ix_uni: 1 ix_branch: 0 which: model

Source code in pytao/interface_commands.py
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
def spin_resonance(
    self,
    *,
    ix_uni="",
    ix_branch="",
    which="model",
    ref_ele="0",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Output spin resonance information

    Parameters
    ----------
    ix_uni : optional
    ix_branch : optional
    which : default=model
    ref_ele : default=0
        Reference element to calculate at.

    Returns
    -------
    dict

    Notes
    -----
    Command syntax:
      pipe spin_resonance {ix_uni}@{ix_branch}|{which} {ref_ele}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {ix_branch} is a lattice branch index. Defaults to s%global%default_branch.
      {which} is one of: "model", "base" or "design"
      {ref_ele} is an element name or index.
    This will return a string_list with the following fields:
      spin_tune                   -- Spin tune
      dq_X_sum, dq_X_diff         -- Tune sum Q_spin+Q_mode and tune difference Q_spin-Q_mode for modes X = a, b, and c.
      xi_res_X_sum, xi_res_X_diff -- The linear spin/orbit sum and difference resonance strengths for X = a, b, and c modes.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ix_uni: 1
       ix_branch: 0
       which: model

    """
    cmd = f"pipe spin_resonance {ix_uni}@{ix_branch}|{which} {ref_ele}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="spin_resonance", cmd_type="string_list"
    )
pytao.Tao.super_universe
super_universe(*, verbose=False, as_dict=True, raises=True)

Output super_Universe parameters.

Returns:

Type Description
dict
Notes

Command syntax: pipe super_universe

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args:

Source code in pytao/interface_commands.py
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
def super_universe(self, *, verbose=False, as_dict=True, raises=True):
    """

    Output super_Universe parameters.

    Returns
    -------
    dict

    Notes
    -----
    Command syntax:
      pipe super_universe

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:

    """
    cmd = "pipe super_universe"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="super_universe", cmd_type="string_list"
    )
pytao.Tao.tao_global
tao_global(*, verbose=False, as_dict=True, raises=True)

Output global parameters.

Returns:

Type Description
string_list
Notes

Command syntax: pipe global

Output syntax is parameter list form. See documentation at the beginning of this file.

Note: The follow is intentionally left out: optimizer_allow_user_abort quiet single_step prompt_color prompt_string

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args:

Source code in pytao/interface_commands.py
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
def tao_global(self, *, verbose=False, as_dict=True, raises=True):
    """

    Output global parameters.

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe global

    Output syntax is parameter list form. See documentation at the beginning of this file.

    Note: The follow is intentionally left out:
      optimizer_allow_user_abort
      quiet
      single_step
      prompt_color
      prompt_string

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:

    """
    cmd = "pipe global"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="tao_global", cmd_type="string_list"
    )
pytao.Tao.taylor_map
taylor_map(ele1_id, ele2_id, *, order='1', verbose=False, as_dict=True, raises=True)

Output Taylor map between two points.

Parameters:

Name Type Description Default
ele1_id
required
ele2_id
required
order default=1
'1'

Returns:

Type Description
dict of dict of taylor terms:

{2: { (3,0,0,0,0,0)}: 4.56, ... corresponding to: px_out = 4.56 * x_in^3

Notes

Command syntax: pipe taylor_map {ele1_id} {ele2_id} {order}

Where: {ele1_id} is the start element. {ele2_id} is the end element. {order} is the map order. Default is order set in the lattice file. {order} cannot be larger than what is set by the lattice file. If {ele2_id} = {ele1_id}, the 1-turn transfer map is computed. Note: {ele2_id} should just be an element name or index without universe, branch, or model/base/design specification. Example: pipe taylor_map 2@1>>q01w|design q02w 2

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ele1_id: 1@0>>q01w|design ele2_id: q02w order: 1

Source code in pytao/interface_commands.py
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
def taylor_map(
    self, ele1_id, ele2_id, *, order="1", verbose=False, as_dict=True, raises=True
):
    """

    Output Taylor map between two points.

    Parameters
    ----------
    ele1_id
    ele2_id
    order : default=1

    Returns
    -------
    dict of dict of taylor terms:
        {2: { (3,0,0,0,0,0)}: 4.56, ...
            corresponding to: px_out = 4.56 * x_in^3

    Notes
    -----
    Command syntax:
      pipe taylor_map {ele1_id} {ele2_id} {order}

    Where:
      {ele1_id} is the start element.
      {ele2_id} is the end element.
      {order} is the map order. Default is order set in the lattice file. {order} cannot be larger than
            what is set by the lattice file.
    If {ele2_id} = {ele1_id}, the 1-turn transfer map is computed.
    Note: {ele2_id} should just be an element name or index without universe, branch, or model/base/design specification.
    Example:
      pipe taylor_map 2@1>>q01w|design q02w  2

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ele1_id: 1@0>>q01w|design
       ele2_id: q02w
       order: 1

    """
    cmd = f"pipe taylor_map {ele1_id} {ele2_id} {order}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="taylor_map", cmd_type="string_list"
    )
pytao.Tao.twiss_at_s
twiss_at_s(*, ix_uni='', ele='', s_offset='', which='model', verbose=False, as_dict=True, raises=True)

Output twiss parameters at given s position.

Parameters:

Name Type Description Default
ix_uni optional
''
ele optional
''
s_offset optional
''
which default=model
'model'

Returns:

Type Description
string_list
Notes

Command syntax: pipe twiss_at_s {ix_uni}@{ele}->{s_offset}|{which}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe. {ele} is an element name or index. Default at the Beginning element at start of branch 0. {s_offset} is the offset of the evaluation point from the downstream end of ele. Default is 0. If {s_offset} is present, the preceeding "->" sign must be present. EG: Something like "23|model" will {which} is one of: "model", "base" or "design".

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ix_uni: 1 ele: 10 s_offset: 0.7 which: model

Source code in pytao/interface_commands.py
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
def twiss_at_s(
    self,
    *,
    ix_uni="",
    ele="",
    s_offset="",
    which="model",
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Output twiss parameters at given s position.

    Parameters
    ----------
    ix_uni : optional
    ele : optional
    s_offset : optional
    which : default=model

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe twiss_at_s {ix_uni}@{ele}->{s_offset}|{which}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {ele} is an element name or index. Default at the Beginning element at start of branch 0.
      {s_offset} is the offset of the evaluation point from the downstream end of ele. Default is 0.
         If {s_offset} is present, the preceeding "->" sign must be present. EG: Something like "23|model" will
      {which} is one of: "model", "base" or "design".

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ix_uni: 1
       ele: 10
       s_offset: 0.7
       which: model

    """
    cmd = f"pipe twiss_at_s {ix_uni}@{ele}->{s_offset}|{which}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="twiss_at_s", cmd_type="string_list"
    )
pytao.Tao.universe
universe(ix_uni, *, verbose=False, as_dict=True, raises=True)

Output universe info.

Parameters:

Name Type Description Default
ix_uni
required

Returns:

Type Description
string_list
Notes

Command syntax: pipe universe {ix_uni}

Use "pipe global" to get the number of universes.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: ix_uni: 1

Source code in pytao/interface_commands.py
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
def universe(self, ix_uni, *, verbose=False, as_dict=True, raises=True):
    """

    Output universe info.

    Parameters
    ----------
    ix_uni

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe universe {ix_uni}

    Use "pipe global" to get the number of universes.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       ix_uni: 1

    """
    cmd = f"pipe universe {ix_uni}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="universe", cmd_type="string_list"
    )
pytao.Tao.update_plot_shapes
update_plot_shapes(ele_name=None, *, layout=False, floor=False, shape_index=None, shape=None, color=None, shape_size=None, type_label=None, shape_draw=None, multi_shape=None, line_width=None)

Update shape plotting settings for layouts/floor plans.

  • Must set either (or both of) layout / floor to True.
  • Only the specified parameters will be updated for each shape. That is, if you only specify color then the color of every matching shape will be updated and the other settings (such as line_width) will remain the same.

Parameters:

Name Type Description Default
ele_name str

Update the shape only for this element name. If ele_name and shape_index are unspecified, these settings apply to all shapes.

None
shape_index int

The numerical index of the shape to change. If ele_name and shape_index are unspecified, these settings apply to all shapes.

None
layout bool

Apply the settings to lattice layout shapes.

False
floor bool

Apply the settings to floor plan shapes.

False
shape str

The shape to use. Choose from one of the following: * "box" * "xbox" * "bow_tie" * "rbow_tie" * "circle" * "diamond" * "x", * "r_triangle" * "l_triangle" * "u_triangle" * "d_triangle"

None
color str

Color for the shape. Choose from one of the following: * "Not_Set" * "White" * "Black" * "Red" * "Green" * "Blue" * "Cyan" * "Magenta" * "Yellow" * "Orange" * "Yellow_Green" * "Light_Green" * "Navy_Blue" * "Purple" * "Reddish_Purple" * "Dark_Grey" * "Light_Grey" * "Transparent"

None
shape_size float

Shape size.

None
type_label "s", "name", or "none"

Show this label for each shape. None indicates no shape.

None
shape_draw bool

Draw the shape.

None
multi_shape bool

If it can be part of a multi-shape.

None
line_width int

Width of lines used to draw the shape.

None

Returns:

Type Description
list of ShapeListInfo
Source code in pytao/interface_commands.py
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
def update_plot_shapes(
    self,
    ele_name: Optional[str] = None,
    *,
    layout: bool = False,
    floor: bool = False,
    shape_index: Optional[int] = None,
    shape: Optional[str] = None,
    color: Optional[str] = None,
    shape_size: Optional[float] = None,
    type_label: Optional[Literal["s", "name", "none"]] = None,
    shape_draw: Optional[bool] = None,
    multi_shape: Optional[bool] = None,
    line_width: Optional[int] = None,
) -> List[ShapeListInfo]:
    """
    Update shape plotting settings for layouts/floor plans.

    * Must set either (or both of) `layout` / `floor` to `True`.
    * Only the specified parameters will be updated for each shape. That is,
      if you only specify `color` then the color of every matching shape
      will be updated and the other settings (such as `line_width`) will
      remain the same.

    Parameters
    ----------
    ele_name : str, optional
        Update the shape only for this element name.
        If `ele_name` and `shape_index` are unspecified, these settings
        apply to all shapes.
    shape_index : int, optional
        The numerical index of the shape to change.
        If `ele_name` and `shape_index` are unspecified, these settings
        apply to all shapes.
    layout : bool, default=False
        Apply the settings to lattice layout shapes.
    floor : bool, default=False
        Apply the settings to floor plan shapes.
    shape : str, optional
        The shape to use. Choose from one of the following:
        * "box"
        * "xbox"
        * "bow_tie"
        * "rbow_tie"
        * "circle"
        * "diamond"
        * "x",
        * "r_triangle"
        * "l_triangle"
        * "u_triangle"
        * "d_triangle"
    color : str, optional
        Color for the shape. Choose from one of the following:
        * "Not_Set"
        * "White"
        * "Black"
        * "Red"
        * "Green"
        * "Blue"
        * "Cyan"
        * "Magenta"
        * "Yellow"
        * "Orange"
        * "Yellow_Green"
        * "Light_Green"
        * "Navy_Blue"
        * "Purple"
        * "Reddish_Purple"
        * "Dark_Grey"
        * "Light_Grey"
        * "Transparent"
    shape_size : float, optional
        Shape size.
    type_label : "s", "name", or "none", optional
        Show this label for each shape. `None` indicates no shape.
    shape_draw : bool, optional
        Draw the shape.
    multi_shape : bool, optional
        If it can be part of a multi-shape.
    line_width : int, optional
        Width of lines used to draw the shape.

    Returns
    -------
    list of ShapeListInfo
    """

    who_list = []
    if layout:
        who_list.append("lat_layout")
    if floor:
        who_list.append("floor_plan")
    if not who_list:
        raise ValueError("Must specify either `layout` or `floor` plots")

    res = []
    for who in who_list:
        shape_list_info = typing.cast(List[ShapeListInfo], self.shape_list(who))
        res.extend(shape_list_info)
        for info in shape_list_info:
            should_set = any(
                (
                    (ele_name is None and shape_index is None),
                    (ele_name == info["ele_name"]),
                    (ele_name and info["ele_name"].startswith(ele_name)),
                    (shape_index == info["shape_index"]),
                )
            )
            if not should_set:
                continue

            if type_label is not None:
                info["type_label"] = type_label
            if shape is not None:
                info["shape"] = shape
            if color is not None:
                info["color"] = color
            if shape_size is not None:
                info["shape_size"] = shape_size
            if shape_draw is not None:
                info["shape_draw"] = shape_draw
            if multi_shape is not None:
                info["multi_shape"] = multi_shape
            if line_width is not None:
                info["line_width"] = line_width

            self.shape_set(who=who, **info)

    return res
pytao.Tao.var
var(var, *, slaves='', verbose=False, as_dict=True, raises=True)

Output parameters of a given variable.

Parameters:

Name Type Description Default
var
required
slaves optional
''

Returns:

Type Description
dict, or list of dict

"slaves" mode will be a list of dicts. Normal mode will be a dict.

Notes

Command syntax: pipe var {var} {slaves}

Note: use "pipe var_general" to get a list of variables.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: var: quad[1] slaves:

Example: 2 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: var: quad[1] slaves: slaves

Source code in pytao/interface_commands.py
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
def var(self, var, *, slaves="", verbose=False, as_dict=True, raises=True):
    """

    Output parameters of a given variable.

    Parameters
    ----------
    var
    slaves : optional

    Returns
    -------
    dict, or list of dict
        "slaves" mode will be a list of dicts.
        Normal mode will be a dict.

    Notes
    -----
    Command syntax:
      pipe var {var} {slaves}

    Note: use "pipe var_general" to get a list of variables.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       var: quad[1]
       slaves:

    Example: 2
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       var: quad[1]
       slaves: slaves

    """
    cmd = f"python var {var} {slaves}"
    if verbose:
        print(cmd)
    return self.__execute(cmd, as_dict, raises, method_name="var", cmd_type="string_list")
pytao.Tao.var_create
var_create(var_name, ele_name, attribute, universes, weight, step, low_lim, high_lim, merit_type, good_user, key_bound, key_delta, *, verbose=False, as_dict=True, raises=True)

Create a single variable

Parameters:

Name Type Description Default
var_name
required
ele_name
required
attribute
required
universes
required
weight
required
step
required
low_lim
required
high_lim
required
merit_type
required
good_user
required
key_bound
required
key_delta
required

Returns:

Type Description
string_list
Notes

Command syntax: pipe var_create {var_name}^^{ele_name}^^{attribute}^^{universes}^^ {weight}^^{step}^^{low_lim}^^{high_lim}^^{merit_type}^^ {good_user}^^{key_bound}^^{key_delta}

{var_name} is something like "kick[5]". Before using var_create, setup the appropriate v1_var array using the "pipe var_v1_create" command.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching args: var_name: quad[1] ele_name: Q1 attribute: L universes: 1 weight: 0.001 step: 0.001 low_lim: -10 high_lim: 10 merit_type: good_user: T key_bound: T key_delta: 0.01

Source code in pytao/interface_commands.py
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
def var_create(
    self,
    var_name,
    ele_name,
    attribute,
    universes,
    weight,
    step,
    low_lim,
    high_lim,
    merit_type,
    good_user,
    key_bound,
    key_delta,
    *,
    verbose=False,
    as_dict=True,
    raises=True,
):
    """

    Create a single variable

    Parameters
    ----------
    var_name
    ele_name
    attribute
    universes
    weight
    step
    low_lim
    high_lim
    merit_type
    good_user
    key_bound
    key_delta

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe var_create {var_name}^^{ele_name}^^{attribute}^^{universes}^^
                        {weight}^^{step}^^{low_lim}^^{high_lim}^^{merit_type}^^
                        {good_user}^^{key_bound}^^{key_delta}

    {var_name} is something like "kick[5]".
    Before using var_create, setup the appropriate v1_var array using
    the "pipe var_v1_create" command.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/tao.init_optics_matching
     args:
       var_name: quad[1]
       ele_name: Q1
       attribute: L
       universes: 1
       weight: 0.001
       step: 0.001
       low_lim: -10
       high_lim: 10
       merit_type:
       good_user: T
       key_bound: T
       key_delta: 0.01

    """
    cmd = f"pipe var_create {var_name}^^{ele_name}^^{attribute}^^{universes}^^{weight}^^{step}^^{low_lim}^^{high_lim}^^{merit_type}^^{good_user}^^{key_bound}^^{key_delta}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="var_create", cmd_type="string_list"
    )
pytao.Tao.var_general
var_general(*, verbose=False, as_dict=True, raises=True)

Output list of all variable v1 arrays

Returns:

Type Description
list of dict
Notes

Command syntax: pipe var_general

Output syntax: {v1_var name};{v1_var%v lower bound};{v1_var%v upper bound}

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args:

Source code in pytao/interface_commands.py
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
def var_general(self, *, verbose=False, as_dict=True, raises=True):
    """

    Output list of all variable v1 arrays

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe var_general

    Output syntax:
      {v1_var name};{v1_var%v lower bound};{v1_var%v upper bound}

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:

    """
    cmd = "pipe var_general"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="var_general", cmd_type="string_list"
    )
pytao.Tao.var_v1_array
var_v1_array(v1_var, *, verbose=False, as_dict=True, raises=True)

Output list of variables in a given variable v1 array

Parameters:

Name Type Description Default
v1_var
required

Returns:

Type Description
dict
Notes

Command syntax: pipe var_v1_array {v1_var}

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: v1_var: quad_k1

Source code in pytao/interface_commands.py
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
def var_v1_array(self, v1_var, *, verbose=False, as_dict=True, raises=True):
    """

    Output list of variables in a given variable v1 array

    Parameters
    ----------
    v1_var

    Returns
    -------
    dict

    Notes
    -----
    Command syntax:
      pipe var_v1_array {v1_var}

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       v1_var: quad_k1

    """
    cmd = f"pipe var_v1_array {v1_var}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="var_v1_array", cmd_type="string_list"
    )
pytao.Tao.var_v1_create
var_v1_create(v1_name, n_var_min, n_var_max, *, verbose=False, as_dict=True, raises=True)

Create a v1 variable structure along with associated var array.

Parameters:

Name Type Description Default
v1_name
required
n_var_min
required
n_var_max
required

Returns:

Type Description
string_list
Notes

Command syntax: pipe var_v1_create {v1_name} {n_var_min} {n_var_max}

{n_var_min} and {n_var_max} are the lower and upper bounds of the var Example: pipe var_v1_create quad_k1 0 45 This example creates a v1 var structure called "quad_k1" with an associated variable array that has the range [0, 45].

Use the "set variable" command to set a created variable parameters. In particular, to slave a lattice parameter to a variable use the command: set {v1_name}|ele_name = {lat_param} where {lat_param} is of the form {ix_uni}@{ele_name_or_location}{param_name}] Examples: set quad_k1[2]|ele_name = 2@q01w[k1] set quad_k1[2]|ele_name = 2@0>>10[k1] Note: When setting multiple variable parameters, temporarily toggle s%global%lattice_calc_on to False ("set global lattice_calc_on = F") to prevent Tao trying to evaluate the partially created variable and generating unwanted error messages.

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: v1_name: quad_k1 n_var_min: 0 n_var_max: 45

Source code in pytao/interface_commands.py
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
def var_v1_create(
    self, v1_name, n_var_min, n_var_max, *, verbose=False, as_dict=True, raises=True
):
    """

    Create a v1 variable structure along with associated var array.

    Parameters
    ----------
    v1_name
    n_var_min
    n_var_max

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe var_v1_create {v1_name} {n_var_min} {n_var_max}

    {n_var_min} and {n_var_max} are the lower and upper bounds of the var
    Example:
      pipe var_v1_create quad_k1 0 45
    This example creates a v1 var structure called "quad_k1" with an associated
    variable array that has the range [0, 45].

    Use the "set variable" command to set a created variable parameters.
    In particular, to slave a lattice parameter to a variable use the command:
      set {v1_name}|ele_name = {lat_param}
    where {lat_param} is of the form {ix_uni}@{ele_name_or_location}{param_name}]
    Examples:
      set quad_k1[2]|ele_name = 2@q01w[k1]
      set quad_k1[2]|ele_name = 2@0>>10[k1]
    Note: When setting multiple variable parameters,
          temporarily toggle s%global%lattice_calc_on to False
      ("set global lattice_calc_on = F") to prevent Tao trying to evaluate the
    partially created variable and generating unwanted error messages.

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       v1_name: quad_k1
       n_var_min: 0
       n_var_max: 45

    """
    cmd = f"pipe var_v1_create {v1_name} {n_var_min} {n_var_max}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="var_v1_create", cmd_type="string_list"
    )
pytao.Tao.var_v1_destroy
var_v1_destroy(v1_datum, *, verbose=False, as_dict=True, raises=True)

Destroy a v1 var structure along with associated var sub-array.

Parameters:

Name Type Description Default
v1_datum
required

Returns:

Type Description
string_list
Notes

Command syntax: pipe var_v1_destroy {v1_datum}

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: v1_datum: quad_k1

Source code in pytao/interface_commands.py
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
def var_v1_destroy(self, v1_datum, *, verbose=False, as_dict=True, raises=True):
    """

    Destroy a v1 var structure along with associated var sub-array.

    Parameters
    ----------
    v1_datum

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe var_v1_destroy {v1_datum}

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       v1_datum: quad_k1

    """
    cmd = f"pipe var_v1_destroy {v1_datum}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="var_v1_destroy", cmd_type="string_list"
    )
pytao.Tao.var_v_array
var_v_array(v1_var, *, verbose=False, as_dict=True, raises=True)

Output list of variables for a given data_v1.

Parameters:

Name Type Description Default
v1_var
required

Returns:

Type Description
list of dict
Notes

Command syntax: pipe var_v_array {v1_var}

Example: pipe var_v_array quad_k1

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: v1_var: quad_k1

Source code in pytao/interface_commands.py
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
def var_v_array(self, v1_var, *, verbose=False, as_dict=True, raises=True):
    """

    Output list of variables for a given data_v1.

    Parameters
    ----------
    v1_var

    Returns
    -------
    list of dict

    Notes
    -----
    Command syntax:
      pipe var_v_array {v1_var}

    Example:
      pipe var_v_array quad_k1

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       v1_var: quad_k1

    """
    cmd = f"pipe var_v_array {v1_var}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="var_v_array", cmd_type="string_list"
    )
pytao.Tao.version
version()

Get the date-coded version.

Source code in pytao/interface_commands.py
795
796
797
798
def version(self) -> Optional[datetime.datetime]:
    """Get the date-coded version."""
    cmd = "show version"
    return _pytao_parsers.parse_show_version(self.cmd(cmd), cmd=cmd)
pytao.Tao.wall3d_radius
wall3d_radius(ix_uni, ix_branch, s_position, angle, *, verbose=False, as_dict=True, raises=True)

Output vaccum chamber wall radius for given s-position and angle in (x,y) plane. The radius is with respect to the local wall origin which may not be the (x,y) = (0,0) origin.

Parameters:

Name Type Description Default
ix_uni ''
required
ix_branch ''
required
s_position
required
angle
required

Returns:

Type Description
string_list
Notes

Command syntax: pipe wall3d_radius {ix_uni}@{ix_branch} {s_position} {angle}

Where: {ix_uni} is a universe index. Defaults to s%global%default_universe. {ix_branch} is a lattice branch index. {s_position} is the s-position to evaluate at. {angle} is the angle to evaluate at.

Source code in pytao/interface_commands.py
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
def wall3d_radius(
    self, ix_uni, ix_branch, s_position, angle, *, verbose=False, as_dict=True, raises=True
):
    """

    Output vaccum chamber wall radius for given s-position and angle in (x,y) plane.
    The radius is with respect to the local wall origin which may not be the (x,y) = (0,0) origin.

    Parameters
    ----------
    ix_uni : ""
    ix_branch : ""
    s_position
    angle

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe wall3d_radius {ix_uni}@{ix_branch} {s_position} {angle}

    Where:
      {ix_uni} is a universe index. Defaults to s%global%default_universe.
      {ix_branch} is a lattice branch index.
      {s_position} is the s-position to evaluate at.
      {angle} is the angle to evaluate at.

    """
    cmd = f"pipe wall3d_radius {ix_uni}@{ix_branch} {s_position} {angle}"
    if verbose:
        print(cmd)
    return self.__execute(
        cmd, as_dict, raises, method_name="wall3d_radius", cmd_type="string_list"
    )
pytao.Tao.wave
wave(who, *, verbose=False, as_dict=True, raises=True)

Output Wave analysis info.

Parameters:

Name Type Description Default
who
required

Returns:

Type Description
string_list
Notes

Command syntax: pipe wave {who}

Where {who} is one of: params loc_header locations plot1, plot2, plot3

Examples:

Example: 1 init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init args: who: params

Source code in pytao/interface_commands.py
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
def wave(self, who, *, verbose=False, as_dict=True, raises=True):
    """

    Output Wave analysis info.

    Parameters
    ----------
    who

    Returns
    -------
    string_list

    Notes
    -----
    Command syntax:
      pipe wave {who}

    Where {who} is one of:
      params
      loc_header
      locations
      plot1, plot2, plot3

    Examples
    --------
    Example: 1
     init: -init $ACC_ROOT_DIR/regression_tests/pipe_test/cesr/tao.init
     args:
       who: params

    """
    cmd = f"pipe wave {who}"
    if verbose:
        print(cmd)
    return self.__execute(cmd, as_dict, raises, method_name="wave", cmd_type="string_list")