Skip to content

Commit

Permalink
Re #7989. Made loading the events optional.
Browse files Browse the repository at this point in the history
Also redid the entire first tab's layout and added the Qmin option.
  • Loading branch information
peterfpeterson committed Oct 22, 2013
1 parent 4a844a2 commit d5b99ff
Show file tree
Hide file tree
Showing 5 changed files with 679 additions and 388 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,15 @@ class RunLoadAndConvertToMD : public QRunnable
public:

/// Constructor just saves the info needed by the run() method
RunLoadAndConvertToMD( MantidEVWorker * worker,
RunLoadAndConvertToMD(MantidEVWorker * worker,
const std::string & file_name,
const std::string & ev_ws_name,
const std::string & md_ws_name,
double maxQ,
bool do_lorentz_corr,
bool load_det_cal,
const double minQ,
const double maxQ,
const bool do_lorentz_corr,
const bool load_data,
const bool load_det_cal,
const std::string & det_cal_file,
const std::string & det_cal_file2 );

Expand All @@ -53,8 +55,10 @@ class RunLoadAndConvertToMD : public QRunnable
std::string file_name;
std::string ev_ws_name;
std::string md_ws_name;
double minQ;
double maxQ;
bool do_lorentz_corr;
bool load_data;
bool load_det_cal;
std::string det_cal_file;
std::string det_cal_file2;
Expand Down

0 comments on commit d5b99ff

Please sign in to comment.