Ignore:
Timestamp:
Aug 1, 2014 3:19:48 PM (9 years ago)
Author:
vondreele
Message:

get HKLF data type into RefDict?
create a SetDefaultDData routine in GSASII.py
fix copyflags for sc extinction coeff
fix neutron resonant ff for TOF
fix error in making Hessian v-cov matrix - now matches the Jabobian one
put names in the Es, Ep & Eg sc extinction coeff
fix errors in SCExtinction - still problem with derivatives

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/imports/G2sfact_CIF.py

    r1418 r1453  
    316316            if blk.get('_diffrn_radiation_probe'):
    317317                if blk['_diffrn_radiation_probe'] == 'neutron':
    318                     type = 'SNC'
     318                    Type = 'SNC'
    319319            elif blk.get('_diffrn_radiation.probe'):
    320320                if blk['_diffrn_radiation.probe'] == 'neutron':
    321                     type = 'SNC'
     321                    Type = 'SNC'
    322322            else:
    323323                type = 'SXC'
     324            self.RefDict['Type'] = Type
    324325            if blk.get('_diffrn_radiation_wavelength'):
    325326                wave = float(blk['_diffrn_radiation_wavelength'])
     
    328329            else:
    329330                wave = 1.5418
    330             self.UpdateParameters(Type=type,Wave=wave) # histogram type
     331            self.UpdateParameters(Type=Type,Wave=wave) # histogram type
    331332            return True
    332333        except Exception as detail:
Note: See TracChangeset for help on using the changeset viewer.