Changeset 2928
- Timestamp:
- Jul 12, 2017 1:08:49 PM (6 years ago)
- Location:
- branch/2frame
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branch/2frame/GSASIIpwd.py
r2849 r2928 681 681 682 682 def getFCJVoigt(pos,intens,sig,gam,shl,xdata): 683 'needs a doc string' 683 '''Compute the Finger-Cox-Jepcoat modified Voigt function for a 684 CW powder peak by direct convolution. This version is not used. 685 ''' 684 686 DX = xdata[1]-xdata[0] 685 687 widths,fmin,fmax = getWidthsCW(pos,sig,gam,shl) … … 953 955 #use old fortran routine 954 956 def getFCJVoigt3(pos,sig,gam,shl,xdata): 955 'needs a doc string' 957 '''Compute the Finger-Cox-Jepcoat modified Pseudo-Voigt function for a 958 CW powder peak in external Fortran routine 959 ''' 956 960 Df = pyd.pypsvfcj(len(xdata),xdata-pos,pos,sig,gam,shl) 957 961 # Df = pyd.pypsvfcjo(len(xdata),xdata-pos,pos,sig,gam,shl) … … 960 964 961 965 def getdFCJVoigt3(pos,sig,gam,shl,xdata): 962 'needs a doc string' 963 966 '''Compute analytic derivatives the Finger-Cox-Jepcoat modified Pseudo-Voigt 967 function for a CW powder peak 968 ''' 964 969 Df,dFdp,dFds,dFdg,dFdsh = pyd.pydpsvfcj(len(xdata),xdata-pos,pos,sig,gam,shl) 965 970 # Df,dFdp,dFds,dFdg,dFdsh = pyd.pydpsvfcjo(len(xdata),xdata-pos,pos,sig,gam,shl) -
branch/2frame/GSASIIstrMain.py
r2924 r2928 21 21 import scipy.optimize as so 22 22 import GSASIIpath 23 GSASIIpath.SetBinaryPath() 23 24 GSASIIpath.SetVersionNumber("$Revision$") 24 25 import GSASIIlattice as G2lat … … 767 768 768 769 if __name__ == '__main__': 769 GSASIIpath.SetBinaryPath()770 770 main()
Note: See TracChangeset
for help on using the changeset viewer.