Changeset 784 for branches/Release12


Ignore:
Timestamp:
12/07/05 16:03:00 (18 years ago)
Author:
mar637
Message:

Request: Log meesage on auto_quotient()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Release12/python/scantable.py

    r778 r784  
    12911291            refs = self.get_scan("*[_ewR]")
    12921292            if isinstance(srcs,scantable) and isinstance(refs,scantable):
     1293                from asap import asaplog
    12931294                ns,nr = srcs.nrow(),refs.nrow()
     1295                msg = "Found %i Off and %i On scans" % (ns,nr)
     1296                asaplog.push(msg)
    12941297                if nr > ns:
     1298                    asaplog("Found more Off integrations than On scans - dropping excess Offs.")
    12951299                    refs = refs.get_scan(range(ns))
    12961300                print_log()
Note: See TracChangeset for help on using the changeset viewer.