Changeset 3860 for trunk/GSASIIdataGUI.py
- Timestamp:
- Mar 22, 2019 6:40:27 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIdataGUI.py
r3859 r3860 4407 4407 histoList,histIdList = self.GetHistogramNamesID(['PWDR','HKLF']) 4408 4408 4409 badnum = 0 4409 4410 for phase in phaseData: 4410 4411 Phase = phaseData[phase] … … 4418 4419 Phases[phase] = Phase 4419 4420 if hist not in Histograms and Phase['Histograms'][hist]['Use']: 4421 if hist not in histIdList: 4422 if badnum == 0: 4423 print('Error: hist {} not found in histIdList. Deleted?'.format(hist)) 4424 badnum += 1 4425 continue 4420 4426 item = histIdList[hist] 4421 4427 if item: … … 4429 4435 print(u'For phase "'+phase+ 4430 4436 u'" unresolved reference to histogram "'+hist+u'"') 4437 if badnum > 1: print(' ...hist not in histIdList error occured {} times'.format(badnum)) 4431 4438 G2obj.IndexAllIds(Histograms=Histograms,Phases=phaseData) 4432 4439 return Histograms,Phases
Note: See TracChangeset
for help on using the changeset viewer.