Skip to content

Commit

Permalink
Formatting changes only.
Browse files Browse the repository at this point in the history
Refs #10470
  • Loading branch information
martyngigg committed Oct 31, 2014
1 parent acfcb3f commit fa84104
Show file tree
Hide file tree
Showing 2 changed files with 526 additions and 514 deletions.
122 changes: 61 additions & 61 deletions Code/Mantid/Framework/MDAlgorithms/inc/MantidMDAlgorithms/SXDMDNorm.h
Original file line number Diff line number Diff line change
@@ -1,77 +1,77 @@
#ifndef MANTID_MDALGORITHMS_SXDMDNORM_H_
#define MANTID_MDALGORITHMS_SXDMDNORM_H_

#include "MantidKernel/System.h"
#include "MantidAPI/Algorithm.h"
#include "MantidMDAlgorithms/SlicingAlgorithm.h"

namespace Mantid
{
namespace MDAlgorithms
{

/** SXDMDNorm : Generate MD normalization for single crystal diffraction
Copyright © 2014 ISIS Rutherford Appleton Laboratory & NScD Oak Ridge National Laboratory
This file is part of Mantid.
Mantid is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
Mantid is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
File change history is stored at: <https://github.com/mantidproject/mantid>
Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
bool compareMomentum(Mantid::Kernel::VMD v1, Mantid::Kernel::VMD v2);

class DLLExport SXDMDNorm :public SlicingAlgorithm
namespace MDAlgorithms
{
public:
SXDMDNorm();
virtual ~SXDMDNorm();
bool compareMomentum(Mantid::Kernel::VMD v1, Mantid::Kernel::VMD v2);

virtual const std::string name() const;
virtual int version() const;
virtual const std::string category() const;
virtual const std::string summary() const;
/**
SXDMDNorm : Generate MD normalization for single crystal diffraction
Copyright &copy; 2014 ISIS Rutherford Appleton Laboratory & NScD Oak Ridge National Laboratory
This file is part of Mantid.
Mantid is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
Mantid is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
private:
void init();
void exec();
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
/// function to calculate intersections of teh trajectory with MDBoxes
std::vector<Mantid::Kernel::VMD> calculateIntersections(Mantid::Geometry::IDetector_const_sptr detector);
/// number of MD dimensions
size_t m_nDims;
/// Normalization workspace
Mantid::MDEvents::MDHistoWorkspace_sptr m_normWS;
/// Input workspace
Mantid::API::IMDEventWorkspace_sptr m_inputWS;
///limits for h,k,l dimensions
coord_t hMin,hMax,kMin,kMax,lMin,lMax;
///flag for integrated h,k,l dimensions
bool hIntegrated,kIntegrated,lIntegrated;
///(2*PiRUBW)^-1
Mantid::Kernel::DblMatrix transf;
/// limits for momentum
double KincidentMin,KincidentMax;
///index of h,k,l dimensions in the output workspaces
size_t hIndex,kIndex,lIndex;
/// cached x values along dimensions h,k,l
std::vector<double> m_hX, m_kX, m_lX;
};
File change history is stored at: <https://github.com/mantidproject/mantid>
Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
class DLLExport SXDMDNorm : public SlicingAlgorithm
{
public:
SXDMDNorm();

virtual const std::string name() const;
virtual int version() const;
virtual const std::string category() const;
virtual const std::string summary() const;

private:
void init();
void exec();

/// function to calculate intersections of teh trajectory with MDBoxes
std::vector<Mantid::Kernel::VMD> calculateIntersections(Mantid::Geometry::IDetector_const_sptr detector);

/// number of MD dimensions
size_t m_nDims;
/// Normalization workspace
Mantid::MDEvents::MDHistoWorkspace_sptr m_normWS;
/// Input workspace
Mantid::API::IMDEventWorkspace_sptr m_inputWS;
///limits for h,k,l dimensions
coord_t hMin,hMax,kMin,kMax,lMin,lMax;
///flag for integrated h,k,l dimensions
bool hIntegrated,kIntegrated,lIntegrated;
///(2*PiRUBW)^-1
Mantid::Kernel::DblMatrix transf;
/// limits for momentum
double KincidentMin,KincidentMax;
///index of h,k,l dimensions in the output workspaces
size_t hIndex,kIndex,lIndex;
/// cached x values along dimensions h,k,l
std::vector<double> m_hX, m_kX, m_lX;
};

} // namespace MDAlgorithms
} // namespace MDAlgorithms
} // namespace Mantid

#endif /* MANTID_MDALGORITHMS_SXDMDNORM_H_ */

0 comments on commit fa84104

Please sign in to comment.