You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VEGAS doesn't use anasum, so this string in the dictionaries and filename should be removed to accommodate those files (filenames are not standardized). filelist = glob.glob(f"{self._datadir}/*anasum.fit*")
can become filelist = glob.glob(f"{self._datadir}/*.fit*")
The text was updated successfully, but these errors were encountered:
VEGAS doesn't use anasum, so this string in the dictionaries and filename should be removed to accommodate those files (filenames are not standardized).
filelist = glob.glob(f"{self._datadir}/*anasum.fit*")
can become
filelist = glob.glob(f"{self._datadir}/*.fit*")
The text was updated successfully, but these errors were encountered: