Mantid
Loading...
Searching...
No Matches
SelectionNotificationService.cpp
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
4// NScD Oak Ridge National Laboratory, European Spallation Source,
5// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
6// SPDX - License - Identifier: GPL - 3.0 +
8
9using namespace MantidQt::API;
10
15
33void SelectionNotificationServiceImpl::sendQPointSelection(bool lab_coords, double qx, double qy, double qz) {
34 emit QPointSelection_signal(lab_coords, qx, qy, qz);
35 // std::cout << "QPointSelection_signal emitted\n";
36}
void sendQPointSelection(bool lab_coords, double qx, double qy, double qz)
Emit the QPointSelection_signal, callable from any thread.
SelectionNotificationServiceImpl()
private constructor, since SelectionNotificationService is a singleton
void QPointSelection_signal(bool, double, double, double)