Changeset 3593


Ignore:
Timestamp:
Sep 12, 2018 10:40:37 AM (5 years ago)
Author:
vondreele
Message:

modify the Bilbao dialog; change kx, ky & kz to be ComboBox? of possibilities
new option to require all atoms to have moment
change labels, etc. for clarity

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIphsGUI.py

    r3591 r3593  
    24612461                magKeep.append(magdata)
    24622462                magIds.append(mid)
    2463                 magchoices.append('%s %s %s'%(magdata['Name'],trans,vec))
     2463                magchoices.append('%s; (%s) + (%s)'%(magdata['Name'],trans,vec))
    24642464        if not len(magKeep):
    24652465            G2frame.ErrorDialog('Magnetic phase selection error','No magnetic phases found; be sure to "Keep" some')
     
    24952495                MagSytSym = G2spc.MagSytSym(SytSym,dupDir,SGData)
    24962496                atMxyz.append([MagSytSym,CSI[0]])
    2497             dlg = UseMagAtomDialog(G2frame,magchoice['Name'],Atms,AtCods,atMxyz,ifDelete=True)
     2497            dlg = UseMagAtomDialog(G2frame,magchoices[sel],Atms,AtCods,atMxyz,ifDelete=True)
    24982498            try:
    24992499                opt = dlg.ShowModal()
  • trunk/GSASIIpwdGUI.py

    r3591 r3593  
    34423442        kvec = ['0','0','0']
    34433443        dlg = G2G.MultiDataDialog(G2frame,title='k-SUBGROUPSMAG options',
    3444             prompts=[' kx as fr.',' ky as fr.',' kz as fr.',' Use whole star',' Landau transition',' Give intermediate cells','preserve axes','test for mag. atoms'],
    3445             values=kvec+[False,False,False,True,''],
    3446             limits=[['0','1/2','1/3','1/4'],['0','1/2','1/3','1/4'],['0','1/2','1/3','1/4','3/2'],[True,False],[True,False],[True,False],[True,False],testAtoms],
    3447             formats=['str','str','str','bool','bool','bool','bool','choice'])
     3444            prompts=[' kx as fr.',' ky as fr.',' kz as fr.',' Use whole star',' Landau transition',' Give intermediate cells','preserve axes','test for mag. atoms','all have moment'],
     3445            values=kvec+[False,False,False,True,'',False],
     3446            limits=[['0','1/2','-1/2','1/3','-1/3','2/3','1'],['0','1/2','1/3','2/3','1'],['0','1/2','3/2','1/3','2/3','1'],[True,False],[True,False],[True,False],[True,False],testAtoms,[True,False]],
     3447            formats=['choice','choice','choice','bool','bool','bool','bool','choice','bool'])
    34483448        if dlg.ShowModal() == wx.ID_OK:
    34493449            magcells = []
     
    34553455            keepaxes = newVals[6]
    34563456            atype = newVals[7]
     3457            allmom = newVals[8]
    34573458            magAtms = [atom for atom in controls[14] if atom[1] == atype]
    34583459            wx.BeginBusyCursor()
     
    34853486                phase['Cell'] = G2lat.TransformCell(controls[6:12],Trans)   
    34863487                phase['aType'] = atype
     3488                found = False
    34873489                for matm in magAtms:
    34883490                    xyzs = G2spc.GenAtom(matm[3:6],SGData,False,Move=True)
     
    34933495                        if any(CSI[0]):     #found one - can quit looking
    34943496                            phase['Keep'] = True
    3495                             break
    3496                     if phase['Keep']:   #found one
     3497                        if allmom:
     3498                            if not any(CSI[0]):
     3499                                phase['Keep'] = False
     3500                                found = True
     3501                                break
     3502                    if found:   #found one
    34973503                        break
    34983504                magcells.append(phase)
Note: See TracChangeset for help on using the changeset viewer.