Changeset 1585


Ignore:
Timestamp:
06/30/09 12:17:19 (15 years ago)
Author:
Malte Marquarding
Message:

more verbose instructions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/lagflagger.py

    r1583 r1585  
    4444            raw_input("Press any key to continue...")
    4545            print "Now select a start and end point by clicking on the middle plot"
    46             print
     46            print "Start point ..."
    4747            flagstart = int(ginput(show_clicks=False)[0][0]+0.5)
     48            print "End point ..."
    4849            flagend = int(ginput(show_clicks=False)[0][0]+0.5)
    4950            xfft = range(len(yfft))
     
    5455            self.resultaxes.plot(x, yi)
    5556            self.figure.show()
    56             inp = raw_input("Commit flags (c), keep (k) or ignore(i)? ").lower()
     57            inp = raw_input("Commit flags (c), keep (k) or ignore(i)? ")\
     58                            .lower()
    5759            if inp.startswith("c")
    5860                self.flags.append([flagstart, flagend])
Note: See TracChangeset for help on using the changeset viewer.