diff --git a/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/InstrumentWindow.cpp b/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/InstrumentWindow.cpp index 952cb96f8b0d45fdbbe28937847a307ade2fd064..30bc860462d36435306bf4d06df64acb4ef75197 100644 --- a/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/InstrumentWindow.cpp +++ b/Code/Mantid/MantidPlot/src/Mantid/InstrumentWidget/InstrumentWindow.cpp @@ -58,6 +58,18 @@ using namespace MantidQt::API; // Name of the QSettings group to store the InstrumentWindw settings const char* InstrumentWindowSettingsGroup = "Mantid/InstrumentWindow"; +namespace { + /** + * Exception type thrown when an istrument has no sample and cannot be displayed in the instrument view. + */ + class InstrumentHasNoSampleError: public std::runtime_error + { + public: + InstrumentHasNoSampleError():std::runtime_error("Istrument has no sample.\nSource and sample need to be set in the IDF."){} + }; + +} + /** * Constructor. */ @@ -331,6 +343,10 @@ void InstrumentWindow::setSurfaceType(int type) { Mantid::Geometry::Instrument_const_sptr instr = m_instrumentActor->getInstrument(); Mantid::Geometry::IComponent_const_sptr sample = instr->getSample(); + if ( !sample ) + { + throw InstrumentHasNoSampleError(); + } Mantid::Kernel::V3D sample_pos = sample->getPos(); Mantid::Kernel::V3D axis; // define the axis @@ -369,6 +385,11 @@ void InstrumentWindow::setSurfaceType(int type) surface = new PanelsSurface(m_instrumentActor,sample_pos,axis); } } + catch(InstrumentHasNoSampleError&) + { + QApplication::restoreOverrideCursor(); + throw; + } catch(std::exception &e) { errorMessage = e.what(); @@ -703,12 +724,17 @@ void InstrumentWindow::saveSettings() settings.beginGroup("Mantid/InstrumentWindow"); if ( m_InstrumentDisplay ) settings.setValue("BackgroundColor", m_InstrumentDisplay->currentBackgroundColor()); - settings.setValue("PeakLabelPrecision",getSurface()->getPeakLabelPrecision()); - settings.setValue("ShowPeakRows",getSurface()->getShowPeakRowsFlag()); - settings.setValue("ShowPeakLabels",getSurface()->getShowPeakLabelsFlag()); - foreach(InstrumentWindowTab* tab, m_tabs) + auto surface = getSurface(); + if ( surface ) { - tab->saveSettings(settings); + // if surface is null istrument view wasn't created and there is nothing to save + settings.setValue("PeakLabelPrecision",getSurface()->getPeakLabelPrecision()); + settings.setValue("ShowPeakRows",getSurface()->getShowPeakRowsFlag()); + settings.setValue("ShowPeakLabels",getSurface()->getShowPeakLabelsFlag()); + foreach(InstrumentWindowTab* tab, m_tabs) + { + tab->saveSettings(settings); + } } settings.endGroup(); } diff --git a/Code/Mantid/MantidPlot/src/Mantid/MantidUI.cpp b/Code/Mantid/MantidPlot/src/Mantid/MantidUI.cpp index 4fb90c695ab1460c1e98b8b3e7ee2bb99b541551..900a6249ed6e3683f87f2b0d34eb95d39751fb06 100644 --- a/Code/Mantid/MantidPlot/src/Mantid/MantidUI.cpp +++ b/Code/Mantid/MantidPlot/src/Mantid/MantidUI.cpp @@ -1886,7 +1886,8 @@ InstrumentWindow* MantidUI::getInstrumentView(const QString & wsName, int tab) catch(const std::exception& e) { QApplication::restoreOverrideCursor(); - QMessageBox::critical(appWindow(),"MantidPlot - Error",e.what()); + QString errorMessage = "Instrument view canot be created:\n\n" + QString(e.what()); + QMessageBox::critical(appWindow(),"MantidPlot - Error",errorMessage); if (insWin) { appWindow()->closeWindow(insWin);