Ignore:
Timestamp:
09/06/10 13:01:07 (14 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: ori_sio_task_regression

Put in Release Notes: No

Module(s): Module Names change impacts.

Description: Describe your changes here...

Changed variables for memory address in C++ int to long.
I don't believe that this change essentially fixes the problem.
However, it may improve the situation since 'long' is able to
represent larger integer value than 'int'.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/scantable.py

    r1916 r1919  
    20592059                return workscan
    20602060           
    2061         except RuntimeError:
     2061        except RuntimeError, e:
    20622062            msg = "The fit failed, possibly because it didn't converge."
    20632063            if rcParams["verbose"]:
     2064                asaplog.push(str(e))
    20642065                asaplog.push(str(msg))
    20652066                return
    20662067            else:
    2067                 raise RuntimeError(msg)
     2068                raise RuntimeError(str(e)+'\n'+msg)
    20682069
    20692070
Note: See TracChangeset for help on using the changeset viewer.