ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/applications/sequentialProps/SequentialProps.ggo
Revision: 2029
Committed: Thu Oct 30 18:51:38 2014 UTC (10 years, 7 months ago) by gezelter
File size: 1346 byte(s)
Log Message:
Adding Contact Angle analyzer.

File Contents

# User Rev Content
1 gezelter 2024 # Input file for gengetopt --generates cmdline.c and cmdline.h
2     # for parsing command line arguments useing getopt and getoptlong.
3     # gengetopt is available from:
4     # http://www.gnu.org/software/gengetopt/gengetopt.html
5     # invoke with:
6     # gengetopt < SequentialProps.ggo --file-name=SequentialPropsCmd --unamed-opts
7    
8     package "SequentialProps"
9     version "1.00"
10    
11     # Options
12     option "input" i "input dump file" string typestr="filename" yes
13     option "output" o "output file name" string typestr="filename" no
14     option "sele1" - "select first stuntdouble set" string typestr="selection script" no
15     option "sele2" - "select second stuntdouble set (if sele2 is not set, use script from sele1)" string typestr="selection script" no
16     option "nbins" n "Number of bins" int default="100" no
17 gezelter 2029 option "referenceZ" z "Reference z-height of solid surface" double no
18     option "dropletR" r "Droplet radius in angstroms" double no
19 gezelter 2024 defgroup "sequentialProps" groupdesc=" an option of this group is required" yes
20 gezelter 2029 groupoption "com" c "selection center of mass" group="sequentialProps"
21     groupoption "ca1" - "contact angle of selection (using center of mass)" group="sequentialProps"
22     groupoption "ca2" - "contact angle of selection (using density profile)" group="sequentialProps"