Skip to content

Commit

Permalink
refs #9135 This should fix the issue
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Mar 5, 2014
1 parent 229ac25 commit 0801ada
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Code/Mantid/scripts/Inelastic/CommonFunctions.py
Expand Up @@ -133,7 +133,7 @@ def load_run(inst_name, run_number, calibration=None, force=False):
args={};
ext = os.path.splitext(filename)[1].lower();
if ext.endswith("raw"):
args['LoadMonitors']='Include'
args['LoadMonitors']='Separate'
elif ext.endswith('nxs'):
args['LoadMonitors'] = '1'

Expand Down
2 changes: 1 addition & 1 deletion Code/Mantid/scripts/Inelastic/DirectEnergyConversion.py
Expand Up @@ -559,7 +559,7 @@ def get_ei(self, input_ws, resultws_name, ei_guess):
nsp = monitor_ws.getSpectrum(int(self.ei_mon_spectra[0]));
except:
monitors_from_separate_ws = True
mon_ws = monitor_ws.getName()+'_monitors'
mon_ws = monitor_ws.getName()+'_Monitors'
monitor_ws = mtd[mon_ws];
#-------------------------------------------------------------

Expand Down

0 comments on commit 0801ada

Please sign in to comment.