Newer
Older
#ifndef INTEGRATE_3D_EVENTS_H
#define INTEGRATE_3D_EVENTS_H
#include <vector>
#include <boost/shared_ptr.hpp>
#include <boost/unordered_map.hpp>
#include "MantidKernel/V3D.h"
#include "MantidKernel/Matrix.h"
class PeakShapeEllipsoid;
}
namespace MDAlgorithms {
This is a low-level class to construct a map with lists of events near
each peak Q-vector, shifted to be centered at (0,0,0). A method is also
provided to find the principal axes of such a list of events, and to
find the net integrated counts, using ellipsoids with axis lengths
determined from the standard deviations in the directions of the
@author Dennis Mikkelson
@date 2012-12-19
Copyright © 2012 ORNL, STFC Rutherford Appleton Laboratories
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>
*/
typedef boost::unordered_map<
int64_t, std::vector<std::pair<double, Mantid::Kernel::V3D>>> EventListMap;
typedef boost::unordered_map<int64_t, Mantid::Kernel::V3D> PeakQMap;
class DLLExport Integrate3DEvents {
public:
/// Construct object to store events around peaks and integrate peaks
Integrate3DEvents(
std::vector<std::pair<double, Mantid::Kernel::V3D>> const &peak_q_list,
Kernel::DblMatrix const &UBinv, double radius);
~Integrate3DEvents();
/// Add event Q's to lists of events near peaks
void
addEvents(std::vector<std::pair<double, Mantid::Kernel::V3D>> const &event_qs,
bool hkl_integ);
/// Find the net integrated intensity of a peak, using ellipsoidal volumes
boost::shared_ptr<const Mantid::Geometry::PeakShape> ellipseIntegrateEvents(
std::vector<Kernel::V3D> E1Vec, Mantid::Kernel::V3D const &peak_q,
bool specify_size, double peak_radius, double back_inner_radius,
double back_outer_radius, std::vector<double> &axes_radii, double &inti,
double &sigi);
private:
/// Calculate the number of events in an ellipsoid centered at 0,0,0
static double numInEllipsoid(
std::vector<std::pair<double, Mantid::Kernel::V3D>> const &events,
std::vector<Mantid::Kernel::V3D> const &directions,
std::vector<double> const &sizes);
/// Calculate the number of events in an ellipsoid centered at 0,0,0
static double numInEllipsoidBkg(
std::vector<std::pair<double, Mantid::Kernel::V3D>> const &events,
std::vector<Mantid::Kernel::V3D> const &directions,
std::vector<double> const &sizes, std::vector<double> const &sizesIn);
/// Calculate the 3x3 covariance matrix of a list of Q-vectors at 0,0,0
static void makeCovarianceMatrix(
std::vector<std::pair<double, Mantid::Kernel::V3D>> const &events,
Kernel::DblMatrix &matrix, double radius);
/// Calculate the eigen vectors of a 3x3 real symmetric matrix
static void getEigenVectors(Kernel::DblMatrix const &cov_matrix,
std::vector<Mantid::Kernel::V3D> &eigen_vectors);
/// Calculate the standard deviation of 3D events in a specified direction
static double
stdDev(std::vector<std::pair<double, Mantid::Kernel::V3D>> const &events,
Mantid::Kernel::V3D const &direction, double radius);
/// Form a map key as 10^12*h + 10^6*k + l from the integers h, k, l
static int64_t getHklKey(int h, int k, int l);
/// Form a map key for the specified q_vector.
int64_t getHklKey(Mantid::Kernel::V3D const &q_vector);
int64_t getHklKey2(Mantid::Kernel::V3D const &q_vector);
/// Add an event to the vector of events for the closest h,k,l
void addEvent(std::pair<double, Mantid::Kernel::V3D> event_Q, bool hkl_integ);
/// Find the net integrated intensity of a list of Q's using ellipsoids
boost::shared_ptr<const Mantid::DataObjects::PeakShapeEllipsoid>
ellipseIntegrateEvents(
std::vector<Kernel::V3D> E1Vec, Kernel::V3D const &peak_q,
std::vector<std::pair<double, Mantid::Kernel::V3D>> const &ev_list,
std::vector<Mantid::Kernel::V3D> const &directions,
std::vector<double> const &sigmas, bool specify_size, double peak_radius,
double back_inner_radius, double back_outer_radius,
std::vector<double> &axes_radii, double &inti, double &sigi);
double detectorQ(std::vector<Kernel::V3D> E1Vec,
const Mantid::Kernel::V3D QLabFrame, std::vector<double> &r);
PeakQMap m_peak_qs; // hashtable with peak Q-vectors
EventListMap m_event_lists; // hashtable with lists of events for each peak
Kernel::DblMatrix m_UBinv; // matrix mapping from Q to h,k,l
double m_radius; // size of sphere to use for events around a peak
} // namespace MDAlgorithms
#endif // INTEGRATE_3D_EVENTS_H