Changeset 4433 for branches/1.3/packages


Ignore:
Timestamp:
Jun 25, 2014 4:05:38 PM (10 years ago)
Author:
gah
Message:

added vmdshow server description

File:
1 edited

Legend:

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

    r2671 r4433  
    5252    LD_LIBRARY_PATH ${libdir}
    5353}
     54
     55# VmdShow --
     56#       Server type     Molecular layouts using VMD viewer (for mdshowcase).
     57#       Port            2018
     58#       Threaded        no
     59# Notes:
     60#       o Commands are sent directly to the VMD process that uses custom
     61#         TCL code to process.
     62#       o Redirect input to descriptor 3: Otherwise VMD will get select hit.
     63#       o Redirect output to descriptor 4: Lots of information written to
     64#         stdout and stderr of VMD.  Captured in log file.
     65#       o Executing binary without wrapper shell script. Requires VMDDIR set.
     66#       o Meshing programs surf and msms require explicit environment variables.
     67#       o __GL_SYNC_TO_VBLANK probably doesn't matter.
     68#       o Client doesn't send data files to VMD, but file paths.  Unlikely
     69#         client will block on a large write. 
     70#       
     71register_server vmdshow 2018 \
     72    -input 3 -output 4 -combinelogs yes \
     73{
     74    ${libdir}/vmd/vmd_LINUXAMD64 -startup ${libdir}/vmd/vmdserver.tcl \
     75        -args -stdio
     76} {
     77    VMDDIR ${libdir}/vmd
     78    SURF_BIN ${libdir}/vmd/surf
     79    MSMSSERVER ${libdir}/vmd/msms
     80    STRIDE_BIN ${libdir}/vmd/stride
     81    LD_LIBRARY_PATH ${libdir}
     82    __GL_SYNC_TO_VBLANK 0
     83}
Note: See TracChangeset for help on using the changeset viewer.