!+ ! Subroutine tao_print_command_line_info ! ! Routine to print a list of the command line options. !- subroutine tao_print_command_line_info use sim_utils implicit none character(40), parameter :: r_name = 'tao_print_command_line_info' ! call out_io (s_blank$, r_name, [ & 'Syntax: ', & ' tao {OPTIONS} ! If the tao exe is in your PATH ', & ' /tao {OPTIONS} ', & 'Options are: ', & ' -beam_file # File containing the tao_beam_init namelist. ', & ' -beam_init_position_file # File containing initial particle positions. ', & ' -building_wall_file # Define the building tunnel wall ', & ' -command # Commands to run after startup file commands ', & ' -data_file # Define data for plotting and optimization ', & ' -debug # Debug mode for Wizards ', & ' -disable_smooth_line_calc # Disable the smooth line calc used in plotting ', & ' -external_plotting # Tells Tao that plotting is done externally to Tao. ', & ' -geometry x # Plot window geometry (pixels) ', & ' -help # Display this list of command line options ', & ' -hook_init_file # Init file for hook routines (Default = tao_hook.init) ', & ' -init_file # Tao init file ', & ' -lattice_file # Bmad lattice file ', & ' -log_startup # Write startup debugging info ', & ' -no_stopping # For debugging: Prevents Tao from exiting on errors ', & ' -noinit # Do not use Tao init file. ', & ' -noplot # Do not open a plotting window ', & ' -nostartup # Do not open a startup command file ', & ' -no_rad_int # Do not do any radiation integrals calculations. ', & ' -plot_file # Plotting initialization file ', & ' -prompt_color # Set color of prompt string. Default is blue. ', & ' -rf_on # Use "--rf_on" to turn off RF (default is now RF on) ', & ' -quiet # Suppress terminal output when running a command file? ', & ' -slice_lattice # Discards elements from lattice that are not in the list', & ' -start_branch_at # Start lattice branch at element. ', & ' -startup_file # Commands to run after parsing Tao init file ', & ' -symbol_import # Import symbols defined in lattice files(s)? ', & ' -var_file # Define variables for plotting and optimization ', & 'Note: Use "--" instead of "-" prefix to negate an option. See the Tao manual for details. ']) end subroutine tao_print_command_line_info