Skip to content

Commit

Permalink
Added initial files for new abs corr tab
Browse files Browse the repository at this point in the history
Refs #10903
  • Loading branch information
DanNixon committed Mar 11, 2015
1 parent ae40a6c commit 3257e8a
Show file tree
Hide file tree
Showing 4 changed files with 464 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Code/Mantid/MantidQt/CustomInterfaces/CMakeLists.txt
Expand Up @@ -2,6 +2,7 @@ set ( SRC_FILES
src/DataComparison.cpp
src/DirectConvertToEnergy.cpp
src/Homer.cpp
src/Indirect/AbsCorr.cpp
src/Indirect/ApplyCorr.cpp
src/Indirect/CalcCorr.cpp
src/Indirect/ConvFit.cpp
Expand Down Expand Up @@ -84,6 +85,7 @@ set ( INC_FILES
inc/MantidQtCustomInterfaces/DllConfig.h
inc/MantidQtCustomInterfaces/Homer.h
inc/MantidQtCustomInterfaces/Indirect/IDATab.h
inc/MantidQtCustomInterfaces/Indirect/AbsCorr.h
inc/MantidQtCustomInterfaces/Indirect/ApplyCorr.h
inc/MantidQtCustomInterfaces/Indirect/CalcCorr.h
inc/MantidQtCustomInterfaces/Indirect/ConvFit.h
Expand Down Expand Up @@ -173,6 +175,7 @@ set ( MOC_FILES inc/MantidQtCustomInterfaces/Background.h
inc/MantidQtCustomInterfaces/DirectConvertToEnergy.h
inc/MantidQtCustomInterfaces/Homer.h
inc/MantidQtCustomInterfaces/Indirect/IDATab.h
inc/MantidQtCustomInterfaces/Indirect/AbsCorr.h
inc/MantidQtCustomInterfaces/Indirect/ApplyCorr.h
inc/MantidQtCustomInterfaces/Indirect/CalcCorr.h
inc/MantidQtCustomInterfaces/Indirect/ConvFit.h
Expand Down Expand Up @@ -241,6 +244,7 @@ set ( MOC_FILES inc/MantidQtCustomInterfaces/Background.h
set ( UI_FILES inc/MantidQtCustomInterfaces/AddWorkspace.ui
inc/MantidQtCustomInterfaces/DataComparison.ui
inc/MantidQtCustomInterfaces/DirectConvertToEnergy.ui
inc/MantidQtCustomInterfaces/Indirect/AbsCorr.ui
inc/MantidQtCustomInterfaces/Indirect/ApplyCorr.ui
inc/MantidQtCustomInterfaces/Indirect/CalcCorr.ui
inc/MantidQtCustomInterfaces/Indirect/ConvFit.ui
Expand Down
@@ -0,0 +1,34 @@
#ifndef MANTIDQTCUSTOMINTERFACESIDA_ABSCORR_H_
#define MANTIDQTCUSTOMINTERFACESIDA_ABSCORR_H_

#include "ui_AbsCorr.h"
#include "IDATab.h"

namespace MantidQt
{
namespace CustomInterfaces
{
namespace IDA
{
class DLLExport AbsCorr : public IDATab
{
Q_OBJECT

public:
CalcCorr(QWidget * parent = 0);

private:
virtual void setup();
virtual void run();
virtual bool validate();
virtual void loadSettings(const QSettings & settings);

private:
Ui::CalcCorr m_uiForm;

};
} // namespace IDA
} // namespace CustomInterfaces
} // namespace MantidQt

#endif /* MANTIDQTCUSTOMINTERFACESIDA_ABSCORR_H_ */

0 comments on commit 3257e8a

Please sign in to comment.