Changeset 5477
- Timestamp:
- Jan 16, 2023 12:09:28 PM (11 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIImath.py
r5476 r5477 4023 4023 if Rcf < 5.: 4024 4024 break 4025 GoOn = pgbar.Update(int(Rcf),newmsg='%s%8.3f%s\n%s %d'%('Residual Rcf =', int(Rcf),'%','No.cycles = ',Ncyc))[0]4025 GoOn = pgbar.Update(int(Rcf),newmsg='%s%8.3f%s\n%s %d'%('Residual Rcf =',Rcf,'%','No.cycles = ',Ncyc))[0] 4026 4026 if not GoOn or Ncyc > 10000: 4027 4027 break … … 4183 4183 if Rcf < 5.: 4184 4184 break 4185 GoOn = pgbar.Update(int(Rcf),newmsg='%s%8.3f%s\n%s %d'%('Residual Rcf =', int(Rcf),'%','No.cycles = ',Ncyc))[0]4185 GoOn = pgbar.Update(int(Rcf),newmsg='%s%8.3f%s\n%s %d'%('Residual Rcf =',Rcf,'%','No.cycles = ',Ncyc))[0] 4186 4186 if not GoOn or Ncyc > 10000: 4187 4187 break -
trunk/GSASIIphsGUI.py
r5475 r5477 11478 11478 Ocheck.Bind(wx.EVT_CHECKBOX,OnOrigRef) 11479 11479 Ocheck.SetValue(RBObj['Orig'][1]) 11480 # TODO: does spin RB need orientation vector? Does need angle & fix vector = [0,0,1]? 11480 11481 topSizer.Add(Ocheck,0,WACV) 11481 11482 topSizer.Add(wx.StaticText(RigidBodies,-1, … … 11492 11493 Indx['Orien'][ix] = orien 11493 11494 topSizer.Add(orien,0,WACV) 11495 # TODO: could be just 'A' for spinning RBs; fix by sytsym rules? 11494 11496 Qcheck = wx.ComboBox(RigidBodies,-1,value='',choices=[' ','A','AV','V'], 11495 11497 style=wx.CB_READONLY|wx.CB_DROPDOWN)
Note: See TracChangeset
for help on using the changeset viewer.