Skip to content
Snippets Groups Projects
Commit 68c6fd47 authored by Alex Buts's avatar Alex Buts
Browse files

Re #16808 Various mainly minor comments

parent 914e99bb
No related branches found
No related tags found
No related merge requests found
...@@ -83,7 +83,7 @@ private: ...@@ -83,7 +83,7 @@ private:
std::vector<detid_t> &detectors); std::vector<detid_t> &detectors);
void processMaskOnDetectors(const detid2index_map &indexmap, bool tomask, void processMaskOnDetectors(const detid2index_map &indexmap, bool tomask,
std::vector<detid_t> singledetids); const std::vector<detid_t> &singledetids);
/// Convert spectrum to detector /// Convert spectrum to detector
void processMaskOnWorkspaceIndex(bool mask, void processMaskOnWorkspaceIndex(bool mask,
std::vector<specnum_t> &maskedSpecID, std::vector<specnum_t> &maskedSpecID,
......
...@@ -76,8 +76,7 @@ void convertToVector(const std::vector<T> &singles, ...@@ -76,8 +76,7 @@ void convertToVector(const std::vector<T> &singles,
} }
} }
/* /** Parse index range text to singles and pairs
* Parse index range text to singles and pairs
* Example: 3,4,9-10,33 * Example: 3,4,9-10,33
* *
* @param inputstr -- input string to process in the format as above * @param inputstr -- input string to process in the format as above
...@@ -218,7 +217,7 @@ void loadISISMaskFile(const std::string &isisfilename, ...@@ -218,7 +217,7 @@ void loadISISMaskFile(const std::string &isisfilename,
std::vector<Mantid::specnum_t> ranges; std::vector<Mantid::specnum_t> ranges;
std::ifstream ifs; std::ifstream ifs;
ifs.open(isisfilename.c_str(), std::ios::in); ifs.open(isisfilename, std::ios::in);
if (!ifs.is_open()) { if (!ifs.is_open()) {
throw std::invalid_argument("Cannot open ISIS mask file" + isisfilename); throw std::invalid_argument("Cannot open ISIS mask file" + isisfilename);
} }
...@@ -228,7 +227,7 @@ void loadISISMaskFile(const std::string &isisfilename, ...@@ -228,7 +227,7 @@ void loadISISMaskFile(const std::string &isisfilename,
boost::trim(isisline); boost::trim(isisline);
// a. skip empty line // a. skip empty line
if (isisline.size() == 0) if (isisline.empty())
continue; continue;
// b. skip comment line // b. skip comment line
...@@ -238,7 +237,6 @@ void loadISISMaskFile(const std::string &isisfilename, ...@@ -238,7 +237,6 @@ void loadISISMaskFile(const std::string &isisfilename,
// c. parse // c. parse
parseISISStringToVector(isisline, ranges); parseISISStringToVector(isisline, ranges);
} }
ifs.close();
// dummy helper vector as ISIS mask is always processed as pairs. // dummy helper vector as ISIS mask is always processed as pairs.
std::vector<Mantid::specnum_t> dummy; std::vector<Mantid::specnum_t> dummy;
...@@ -309,7 +307,7 @@ void LoadMask::init() { ...@@ -309,7 +307,7 @@ void LoadMask::init() {
declareProperty( declareProperty(
Kernel::make_unique<WorkspaceProperty<API::MatrixWorkspace>>( Kernel::make_unique<WorkspaceProperty<API::MatrixWorkspace>>(
"RefWorkspace", "", Direction::Input, PropertyMode::Optional), "RefWorkspace", "", Direction::Input, PropertyMode::Optional),
"The name of the workspace with defines instrument and spectra, " "The name of the workspace wich defines instrument and spectra, "
"used as the source of the spectra-detector map for the mask to load. " "used as the source of the spectra-detector map for the mask to load. "
"The instrument, attached to this workspace has to be the same as the " "The instrument, attached to this workspace has to be the same as the "
"one specified by 'Instrument' property"); "one specified by 'Instrument' property");
...@@ -404,11 +402,10 @@ void LoadMask::initDetectors() { ...@@ -404,11 +402,10 @@ void LoadMask::initDetectors() {
* in masking * in masking
* @param tomask: true to mask, false to unmask * @param tomask: true to mask, false to unmask
* @param singledetids: list of individual det ids to mask * @param singledetids: list of individual det ids to mask
*/ */
void LoadMask::processMaskOnDetectors(const detid2index_map &indexmap, void LoadMask::processMaskOnDetectors(
bool tomask, const detid2index_map &indexmap, bool tomask,
std::vector<int32_t> singledetids) { const std::vector<detid_t> &singledetids) {
// 1. Get index map // 1. Get index map
// 2. Mask // 2. Mask
g_log.debug() << "Mask = " << tomask g_log.debug() << "Mask = " << tomask
...@@ -433,8 +430,8 @@ void LoadMask::processMaskOnDetectors(const detid2index_map &indexmap, ...@@ -433,8 +430,8 @@ void LoadMask::processMaskOnDetectors(const detid2index_map &indexmap,
/** Extract a component's detectors and return it within detectors array /** Extract a component's detectors and return it within detectors array
* It is a generalized version of bankToDetectors() * It is a generalized version of bankToDetectors()
* *
* @param componentnames -- vector of components names to process * @param componentnames -- vector of component names to process
* @param detectors -- vector of detectors id, which belongs to components * @param detectors -- vector of detector ids, which belongs to components
*provided as input. *provided as input.
*/ */
void LoadMask::componentToDetectors( void LoadMask::componentToDetectors(
...@@ -465,8 +462,8 @@ void LoadMask::componentToDetectors( ...@@ -465,8 +462,8 @@ void LoadMask::componentToDetectors(
g_log.debug() << "Number of Children = " << children.size() << '\n'; g_log.debug() << "Number of Children = " << children.size() << '\n';
size_t numdets(0); size_t numdets(0);
detid_t id_min = std::numeric_limits<Mantid::detid_t>::max(); detid_t id_min(std::numeric_limits<Mantid::detid_t>::max());
detid_t id_max = 0; detid_t id_max(0);
for (const auto &child : children) { for (const auto &child : children) {
// c) convert component to detector // c) convert component to detector
...@@ -491,7 +488,7 @@ void LoadMask::componentToDetectors( ...@@ -491,7 +488,7 @@ void LoadMask::componentToDetectors(
//---------------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------------
/** Convert bank to detectors /** Convert bank to detectors
* This routine have never been invoked. * This routine has never been used. Dead code.
* @param singlebanks -- vector of string containing bank names * @param singlebanks -- vector of string containing bank names
* @param detectors -- vector of detector-id-s belonging to these banks * @param detectors -- vector of detector-id-s belonging to these banks
*/ */
...@@ -521,7 +518,7 @@ void LoadMask::bankToDetectors(const std::vector<std::string> &singlebanks, ...@@ -521,7 +518,7 @@ void LoadMask::bankToDetectors(const std::vector<std::string> &singlebanks,
// b) set detectors // b) set detectors
for (const auto &det : idetectors) { for (const auto &det : idetectors) {
int32_t detid = det->getID(); detid_t detid = det->getID();
detectors.push_back(detid); detectors.push_back(detid);
} }
g_log.debug() << "Number of Detectors in Bank " << singlebank g_log.debug() << "Number of Detectors in Bank " << singlebank
...@@ -682,13 +679,11 @@ void LoadMask::parseXML() { ...@@ -682,13 +679,11 @@ void LoadMask::parseXML() {
} else { } else {
g_log.error() << "XML File hierarchical (component) error!\n"; g_log.error() << "XML File hierarchical (component) error!\n";
} }
// g_log.information() << "Component: " << value << '\n';
} else if (pNode->nodeName().compare("ids") == 0) { } else if (pNode->nodeName().compare("ids") == 0) {
// Node "ids" // Node "ids"
if (ingroup) { if (ingroup) {
parseRangeText(value, singleSp, pairSp); parseRangeText(value, singleSp, pairSp);
// this->parseSpectrumNos(value, m_maskSpecID);
} else { } else {
g_log.error() << "XML File (ids) hierarchical error!" g_log.error() << "XML File (ids) hierarchical error!"
<< " Inner Text = " << pNode->innerText() << '\n'; << " Inner Text = " << pNode->innerText() << '\n';
...@@ -724,10 +719,10 @@ void LoadMask::parseXML() { ...@@ -724,10 +719,10 @@ void LoadMask::parseXML() {
/* Convert spectra mask into det-id mask using workspace as source of /* Convert spectra mask into det-id mask using workspace as source of
*spectra-detector maps *spectra-detector maps
* *
* @param sourceWS -- the workspace containing source spectra-detecot map * @param sourceWS -- the workspace containing source spectra-detector map
* to use on masks * to use on masks
* @param maskedSpecID -- vector of spectra id to mask * @param maskedSpecID -- vector of spectra id to mask
* @param singleDetIds -- output vector of detectors id to mask * @param singleDetIds -- output vector of detector ids to mask
*/ */
void LoadMask::convertSpMasksToDetIDs(const API::MatrixWorkspace &sourceWS, void LoadMask::convertSpMasksToDetIDs(const API::MatrixWorkspace &sourceWS,
const std::vector<int32_t> &maskedSpecID, const std::vector<int32_t> &maskedSpecID,
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
#include <numeric> #include <numeric>
namespace { // declare file scoped function namespace { // declare file scoped function
/* internal method copies values in specified range from source list to the /** internal method copies values in specified range from source list to the
target list target list
@param sourceList :: vector of input values @param sourceList :: vector of input values
@param targetList :: vector of output values @param targetList :: vector of output values
...@@ -25,9 +25,9 @@ void constrainIndexInRange(std::vector<size_t> &sourceList, ...@@ -25,9 +25,9 @@ void constrainIndexInRange(std::vector<size_t> &sourceList,
size_t maxIndex) { size_t maxIndex) {
targetList.reserve(sourceList.size()); targetList.reserve(sourceList.size());
std::sort(sourceList.begin(), sourceList.end()); std::sort(sourceList.begin(), sourceList.end());
for (auto it = sourceList.begin(); it != sourceList.end(); it++) { for (auto memb : sourceList) {
if (*it >= minIndex && *it <= maxIndex) { if (memb >= minIndex && memb <= maxIndex) {
targetList.push_back(*it); targetList.push_back(memb);
} }
} }
} }
...@@ -82,13 +82,13 @@ void MaskDetectors::init() { ...@@ -82,13 +82,13 @@ void MaskDetectors::init() {
mustBePosInt->setLower(0); mustBePosInt->setLower(0);
declareProperty( declareProperty(
"StartWorkspaceIndex", 0, mustBePosInt, "StartWorkspaceIndex", 0, mustBePosInt,
"If other masks fields are provided, its the first index of the " "If other masks fields are provided, it's the first index of the "
"target workspace to be allowed to be masked from by these masks, " "target workspace to be allowed to be masked from by these masks, "
"if not, its the first index of the target workspace to mask.\n" "if not, its the first index of the target workspace to mask.\n"
"Default value is 0 if other masking is present or ignored if not."); "Default value is 0 if other masking is present or ignored if not.");
declareProperty( declareProperty(
"EndWorkspaceIndex", EMPTY_INT(), mustBePosInt, "EndWorkspaceIndex", EMPTY_INT(), mustBePosInt,
"If other masks are provided, its the last index of the " "If other masks are provided, it's the last index of the "
"target workspace allowed to be masked to by these masks, " "target workspace allowed to be masked to by these masks, "
"if not, its the last index of the target workspace to mask.\n" "if not, its the last index of the target workspace to mask.\n"
"Default is number of histograms in target workspace if other masks are" "Default is number of histograms in target workspace if other masks are"
...@@ -279,13 +279,13 @@ MaskDetectors::getRanges(const MatrixWorkspace_sptr &targWS) { ...@@ -279,13 +279,13 @@ MaskDetectors::getRanges(const MatrixWorkspace_sptr &targWS) {
return std::tuple<size_t, size_t, bool>(startIndex_l, endIndex_l, true); return std::tuple<size_t, size_t, bool>(startIndex_l, endIndex_l, true);
} }
} }
/* Constrain masked indexes by limits, provided as input /* Do constrain masked indexes by limits, provided as input
* @param indexList :: list of indexes to verify against constrain on input * @param indexList :: list of indexes to verify against constrain on input
* and list of constrained indexes on the output. * and list of constrained indexes on the output.
* @param startIndex :: minimal index (inclusive) to include in the constrained * @param startIndex :: minimal index (inclusive) to include in the constrained
* list. * list.
* @param endIndex :: maximal index (inclusive) to include in the constrained * @param endIndex :: maximal index (inclusive) to include in the constrained
* list * list.
*/ */
void MaskDetectors::constrainMaskedIndexes( void MaskDetectors::constrainMaskedIndexes(
std::vector<size_t> &indexList, std::vector<size_t> &indexList,
...@@ -301,8 +301,7 @@ void MaskDetectors::constrainMaskedIndexes( ...@@ -301,8 +301,7 @@ void MaskDetectors::constrainMaskedIndexes(
* the mask workspace assumed to be not having masked detectors, but has masked * the mask workspace assumed to be not having masked detectors, but has masked
* state defined in its spectra * state defined in its spectra
@param detectorList :: list of masked detectors, appended on output by the @param detectorList :: list of masked detectors, appended on output by the
detectors, * detectors, defined in the mask workspace.
* defined in the mask workspace.
@param maskWS :: shared pointer to workspace containing masks. @param maskWS :: shared pointer to workspace containing masks.
*/ */
void MaskDetectors::extractMaskedWSDetIDs( void MaskDetectors::extractMaskedWSDetIDs(
...@@ -491,7 +490,6 @@ void MaskDetectors::appendToIndexListFromWS( ...@@ -491,7 +490,6 @@ void MaskDetectors::appendToIndexListFromWS(
} }
tmp_index.swap(indexList); tmp_index.swap(indexList);
return;
} // appendToIndexListFromWS } // appendToIndexListFromWS
/** /**
...@@ -535,7 +533,6 @@ void MaskDetectors::appendToIndexListFromMaskWS( ...@@ -535,7 +533,6 @@ void MaskDetectors::appendToIndexListFromMaskWS(
} }
} }
tmp_index.swap(indexList); tmp_index.swap(indexList);
return;
} // appendToIndexListFromWS } // appendToIndexListFromWS
} // namespace DataHandling } // namespace DataHandling
......
...@@ -11,10 +11,10 @@ Introduction ...@@ -11,10 +11,10 @@ Introduction
To understand the algorithms options, user should clearly understand the difference between *WorkspaceIndex* To understand the algorithms options, user should clearly understand the difference between *WorkspaceIndex*
-- the numbers, specified in *WorkspaceIndexList* and *StartWorkspacIndex*, *EndWorkspaceIndex* properties, -- the numbers, specified in *WorkspaceIndexList* and *StartWorkspacIndex*, *EndWorkspaceIndex* properties,
the *Spectra ID* -- values of the **SpectraList** property and *Detector ID* -- the numbers to provide for the *Spectra ID* or *Spectra Number* -- values of the **SpectraList** property and *Detector ID* -- the numbers to provide for
*DetectorList* property. *DetectorList* property.
The *WorkspaceIndex* is the number a spectra has in a workspace, e.g. :: The *WorkspaceIndex* is the number a spectrum has in a workspace, e.g. ::
sp = ws.getSpectrum(0) sp = ws.getSpectrum(0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment