Ignore:
Timestamp:
Nov 12, 2013, 10:54:58 AM (11 years ago)
Author:
gah
Message:

add comments to renderserver script

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/nanoscale/renderservers.tcl.in

    r4043 r4044  
    1 
     1#
     2# This file is read by nanoscale to determine the ports to listen
     3# to and the how to start the associated render server.
     4#
     5# Render servers
     6#
     7#       Server                  Port            Usage
     8#       ======                  ====            =====
     9#       nanovis                 2000            production
     10#       vtkvis                  2010            production
     11#       geovis                  2015            testing
     12#       vmdshow                 2018            testing
     13#       pymol                   2019            testing
     14#       pymol                   2020            production
     15#
     16# The syntax is
     17#       register_server <name> <port> <command> <variables>
     18#
     19# This registers a server by the given name at the given port.
     20# When a connection is made to that port, the command is run
     21# with the environment variables initialized. 
     22#
     23# Note: Don't set DISPLAY here. nanoscale itself sets the DISPLAY
     24#       variable.
     25#
    226set exec_prefix "@exec_prefix@"
    327set bindir "@bindir@"
    428set libdir "@libdir@"
     29# This can be removed when we're sure moving to VTK 6
    530set vtkdir "@VTK_LIB_DIR@"
    631
     
    2550# VtkVis server (port 2010)--
    2651#    3D drawings (scene graphs), Contour and surface graphs.
     52#    Can remove ":${vtkdir} when moving to VTK 6.
    2753#
    2854register_server vtkvis 2010 {
Note: See TracChangeset for help on using the changeset viewer.