Adding missing entries in programs.txt
authorRoland Schulz <roland@utk.edu>
Tue, 10 Jul 2012 16:49:32 +0000 (12:49 -0400)
committerGerrit Code Review <gerrit@gerrit.gromacs.org>
Sun, 15 Jul 2012 11:20:09 +0000 (13:20 +0200)
Change-Id: I323524d32f07409c02de6066a24e73fb8a966481

admin/programs.txt
src/tools/CMakeLists.txt

index dd606ed8bf01df2b3de9416da75a7bba8cacc20d..bee575792fffe20763105ac73012e34ee624bc4c 100644 (file)
@@ -79,6 +79,7 @@ g_polystat|calculates static properties of polymers
 g_rdf|calculates radial distribution functions
 g_rotacf|calculates the rotational correlation function for molecules
 g_rotmat|plots the rotation matrix for fitting to a reference structure
+g_sans|computes the small angle neutron scattering spectra
 g_traj|plots x, v, f, box, temperature and rotational energy
 g_vanhove|calculates Van Hove displacement functions
 END
@@ -110,6 +111,7 @@ HEAD|Kinetic properties
 g_bar|calculates free energy difference estimates through Bennett's acceptance ratio
 g_current|calculate current autocorrelation function of system
 g_dos|analyzes density of states and properties based on that
+g_dyecoupl|extracts dye dynamics from trajectories
 g_kinetics|analyzes kinetic constants from properties based on the Eyring model
 g_principal|calculate principal axes of inertion for a group of atoms
 g_tcaf|calculates viscosities of liquids
index 32638c62439820517aab7219cc51736debfb2f7a..8833688a6279746412f8ab11548c236009e8128d 100644 (file)
@@ -65,7 +65,9 @@ set(GMX_TOOLS_PROGRAMS_NOT_FOR_INSTALLATION
 
 foreach(TOOL ${GMX_TOOLS_PROGRAMS} ${GMX_TOOLS_PROGRAMS_NOT_FOR_INSTALLATION})
     add_executable(${TOOL} ${TOOL}.c)
-    gmx_add_man_page(${TOOL})
+    if (NOT ${TOOL} STREQUAL "g_options")
+        gmx_add_man_page(${TOOL})
+    endif()
     target_link_libraries(${TOOL} gmxana)
     set_target_properties(${TOOL} PROPERTIES OUTPUT_NAME "${TOOL}${GMX_BINARY_SUFFIX}")
 endforeach(TOOL ${GMX_TOOLS_PROGRAMS})