Changeset 4090 for trunk


Ignore:
Timestamp:
Aug 12, 2019 1:00:53 PM (6 years ago)
Author:
vondreele
Message:

small revision to the absent lines code - works better now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/GSASIIimage.py

    r4089 r4090  
    614614        tam = ma.mask_or(tam,MakeFrameMask(data,frame))
    615615    for iH,H in enumerate(HKL):
    616         if iH in absent:
    617             continue
    618616        if debug:   print (H)
    619617        dsp = H[3]
     
    625623        Ring = makeRing(dsp,ellipse,pixLimit,cutoff,scalex,scaley,ma.array(ImageZ,mask=tam))[0]
    626624        if Ring:
    627             if iH >= skip:
     625            if iH not in absent and iH >= skip:
    628626                data['rings'].append(np.array(Ring))
    629627            data['ellipses'].append(copy.deepcopy(ellipse+('r',)))
Note: See TracChangeset for help on using the changeset viewer.