Changeset 570 for mystic/scripts


Ignore:
Timestamp:
09/24/12 23:27:22 (4 years ago)
Author:
mmckerns
Message:

tweaked help option strings for plotters

Location:
mystic/scripts
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • mystic/scripts/support_hypercube.py

    r567 r570  
    5353                    help="id # of the nth simultaneous points to plot") 
    5454  parser.add_option("-s","--scale",action="store",dest="scale",\ 
    55                     metavar="FLOAT",default=1.0, 
    56                     help="multiplier for scaling color of points in plot") 
     55                    metavar="INT",default=1.0, 
     56                    help="grayscale contrast multiplier for points in plot") 
    5757  parser.add_option("-f","--flat",action="store_true",dest="flatten",\ 
    5858                    default=False,help="show selected iterations in a single plot") 
  • mystic/scripts/support_hypercube_measures.py

    r561 r570  
    6060                    help="id # of the nth simultaneous points to plot") 
    6161  parser.add_option("-s","--scale",action="store",dest="scale",\ 
    62                     metavar="FLOAT",default=1.0, 
    63                     help="multiplier for scaling color of weights in plot") 
     62                    metavar="INT",default=1.0, 
     63                    help="grayscale contrast multiplier for points in plot") 
    6464  parser.add_option("-f","--flat",action="store_true",dest="flatten",\ 
    6565                    default=False,help="show selected iterations in a single plot") 
  • mystic/scripts/support_hypercube_scenario.py

    r569 r570  
    232232                    metavar="STR",default="(1,1,1)", 
    233233                    help="indicator string set to scenario dimensions") 
    234   parser.add_option("-r","--replace",action="store",dest="replace",\ 
     234  parser.add_option("-m","--mask",action="store",dest="replace",\ 
    235235                    metavar="INT",default=None, 
    236                     help="id # of axis to plot values NOT coords") 
     236                    help="id # of the coordinate axis not to be plotted") 
    237237  parser.add_option("-n","--nid",action="store",dest="id",\ 
    238238                    metavar="INT",default=None, 
    239239                    help="id # of the nth simultaneous points to plot") 
    240240  parser.add_option("-s","--scale",action="store",dest="scale",\ 
    241                     metavar="FLOAT",default=1.0, 
    242                     help="multiplier for scaling color of points in plot") 
    243   parser.add_option("-o","--datapts",action="store_true",dest="legacy",\ 
     241                    metavar="INT",default=1.0, 
     242                    help="grayscale contrast multiplier for points in plot") 
     243  parser.add_option("-o","--data",action="store_true",dest="legacy",\ 
    244244                    default=False,help="plot legacy data, if provided") 
    245245  parser.add_option("-v","--cones",action="store_true",dest="cones",\ 
Note: See TracChangeset for help on using the changeset viewer.