Changeset 13630 for fact/tools/pyscripts/pyfact
- Timestamp:
- 05/10/12 08:44:28 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fact/tools/pyscripts/pyfact/pyfact.py
r13518 r13630 85 85 user_action_calib=lambda acal_data, data, blm, tom, gm, scells, nroi: None, 86 86 baseline_file_name='', 87 return_dict = None,87 return_dict = True, 88 88 do_calibration = True, 89 89 use_CalFactFits = True): … … 101 101 # manual implementation of default value, but I need to find out 102 102 # if the user of this class is aware of the new option 103 if return_dict == None: 104 print 'Warning: Rawdata.__init__() has a new option "return_dict"' 105 print 'the default value of this option is False, so nothing changes for you at the moment.' 106 print 107 print 'you probably want, to get a dictionary out of the next() method anyway' 108 print ' so please change your scripts and set this option to True, for the moment' 109 print 'e.g. like this: run = RawData(data_filename, calib_filename, return_dict = True)' 110 print "after a while, the default value, will turn to True .. so you don't have to give the option anymore" 111 print 'and some time later, the option will not be supported anymore' 112 return_dict = False 103 if return_dict == False: 104 print 'DEPRECATION WARNING:' 105 print 'you are using RawData in a way, which is nor supported anymore.' 106 print ' Please set: return_dict = True, in the __init__ call' 113 107 self.return_dict = return_dict 114 108 self.use_CalFactFits = use_CalFactFits
Note:
See TracChangeset
for help on using the changeset viewer.