Newer
Older

Zhou, Wenduo
committed
/*WIKI*
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
This algorithm is used to load a masking file, which can be in XML format (defined later in this page) or old-styled
calibration file.
== Definition of Mask ==
* If a pixel is masked, it means that the data from this pixel won't be used.
In the masking workspace (i.e., [[SpecialWorkspace2D]]), the corresponding value is 1.
* If a pixel is NOT masked, it means that the data from this pixel will be used.
In the masking workspace (i.e., [[SpecialWorkspace2D]]), the corresponding value is 0.
== File Format ==
==== XML File Format ====
Example 1:
<?xml version="1.0" encoding="UTF-8" ?>
<detector-masking>
<group>
<detids>3,34-44,47</detids>
<component>bank123</component>
<component>bank124</component>
</group>
</detector-masking>
==== ISIS File Format ====
Example 2:
1-3 62-64
65-67 126-128
129-131 190-192
193-195 254-256
257-259 318-320
321-323 382-384
385 387 446 448
... ...
All the integers in file of this format are spectrum IDs to mask. Two spectrum IDs with "-" in between indicate a continuous range of spectra to mask. It does not matter if there is any space between integer number and "-". There is no restriction on how the line is structured. Be noticed that any line starting with a non-digit character, except space, will be treated as a comment line.

Zhou, Wenduo
committed
This algorithm loads masking file to a SpecialWorkspace2D/MaskWorkspace.

Zhou, Wenduo
committed
Supporting
* Component ID --> Detector IDs --> Workspace Indexes
* Detector ID --> Workspace Indexes
* Spectrum ID --> Workspace Indexes

Zhou, Wenduo
committed
*WIKI*/
#include "MantidDataHandling/LoadMask.h"

Zhou, Wenduo
committed
#include "MantidKernel/System.h"
#include "MantidAPI/FileProperty.h"
#include "MantidKernel/ListValidator.h"
#include "MantidDataObjects/Workspace2D.h"
#include "MantidDataObjects/MaskWorkspace.h"

Zhou, Wenduo
committed
#include "MantidKernel/Strings.h"
#include "MantidGeometry/Instrument.h"
#include "MantidGeometry/ICompAssembly.h"

Zhou, Wenduo
committed
#include "MantidGeometry/IDTypes.h"

Zhou, Wenduo
committed
#include <Poco/DOM/Document.h>
#include <Poco/DOM/DOMParser.h>
#include <Poco/DOM/Element.h>
#include <Poco/DOM/NodeFilter.h>
#include <Poco/DOM/NodeIterator.h>
#include <Poco/DOM/NodeList.h>
#include <Poco/DOM/NamedNodeMap.h>
#include <Poco/Exception.h>
#include <Poco/File.h>
#include <Poco/Path.h>
#include <boost/algorithm/string.hpp>
using Poco::XML::DOMParser;
using Poco::XML::Document;
using Poco::XML::Element;
using Poco::XML::Node;
using Poco::XML::NodeList;
using Poco::XML::NodeIterator;
using Poco::XML::NodeFilter;
using namespace Mantid::Kernel;
using namespace Mantid::API;

Zhou, Wenduo
committed
namespace Mantid
{
namespace DataHandling
{

Zhou, Wenduo
committed
//----------------------------------------------------------------------------------------------
/** Constructor
*/

Zhou, Wenduo
committed
{
// mMaskWS = NULL;
// mInstrumentName = "";
pDoc = NULL;
pRootElem = NULL;
return;
}
//----------------------------------------------------------------------------------------------
/** Destructor
*/

Zhou, Wenduo
committed
{

Zhou, Wenduo
committed
}
/// Sets documentation strings for this algorithm
this->setWikiSummary("Load file containing masking information to a [[SpecialWorkspace2D]] (masking workspace). This algorithm is renamed from [[LoadMaskingFile]].");

Zhou, Wenduo
committed
this->setOptionalMessage("");
}

Zhou, Wenduo
committed
/// Initialise the properties

Zhou, Wenduo
committed
declareProperty("Instrument", "", "The name of the instrument to apply the mask.");
std::vector<std::string> exts;
exts.push_back(".xml");
exts.push_back(".msk");
declareProperty(new FileProperty("InputFile", "", FileProperty::Load, exts),
"Masking file for masking. Supported file format is XML and ISIS ASCII. ");
declareProperty(new WorkspaceProperty<DataObjects::MaskWorkspace>("OutputWorkspace", "Masking", Direction::Output),

Zhou, Wenduo
committed
"Output Masking Workspace");
return;
}
//----------------------------------------------------------------------------------------------
/** Main execution body of this algorithm
*/
void LoadMask::exec()
{

Zhou, Wenduo
committed
// 1. Load Instrument and create output Mask workspace
const std::string instrumentname = getProperty("Instrument");
mInstrumentName = instrumentname;

Zhou, Wenduo
committed
this->intializeMaskWorkspace();
setProperty("OutputWorkspace",mMaskWS);
mDefaultToUse = true;
// 2. Parse Mask File
std::string filename = getProperty("InputFile");
if (boost::ends_with(filename, "l") || boost::ends_with(filename, "L"))
{
// 2.1 XML File
this->initializeXMLParser(filename);
this->parseXML();
}
else if (boost::ends_with(filename, "k") || boost::ends_with(filename, "K"))
{
// 2.2 ISIS Masking file
loadISISMaskFile(filename);
}
else
{
g_log.error() << "File " << filename << " is not in supported format. " << std::endl;
return;
}

Zhou, Wenduo
committed
// 3. Translate and set geometry
g_log.information() << "To Mask: " << std::endl;

Zhou, Wenduo
committed
std::vector<int32_t> maskdetids;
std::vector<int32_t> maskdetidpairsL;
std::vector<int32_t> maskdetidpairsU;
componentToDetectors(mask_bankid_single, maskdetids);
detectorToDetectors(mask_detid_single, mask_detid_pair_low, mask_detid_pair_up, maskdetids,
maskdetidpairsL, maskdetidpairsU);

Zhou, Wenduo
committed
g_log.information() << "To UnMask: " << std::endl;

Zhou, Wenduo
committed
std::vector<int32_t> unmaskdetids;
std::vector<int32_t> unmaskdetidpairsL;
std::vector<int32_t> unmaskdetidpairsU;
this->bankToDetectors(unmask_bankid_single, unmaskdetids, unmaskdetidpairsL, unmaskdetidpairsU);
this->detectorToDetectors(unmask_detid_single, unmask_detid_pair_low, unmask_detid_pair_up,
unmaskdetids, unmaskdetidpairsL, unmaskdetidpairsU);

Zhou, Wenduo
committed
// 4. Apply
this->initDetectors();

Zhou, Wenduo
committed
this->processMaskOnDetectors(true, maskdetids, maskdetidpairsL, maskdetidpairsU);
this->processMaskOnWorkspaceIndex(true, mask_specid_pair_low, mask_specid_pair_up);
this->processMaskOnDetectors(false, unmaskdetids, unmaskdetidpairsL, unmaskdetidpairsU);

Zhou, Wenduo
committed
return;
}
void LoadMask::initDetectors(){

Zhou, Wenduo
committed
if (!mDefaultToUse){ // Default is to use all detectors
size_t numHist = mMaskWS->getNumberHistograms();
for (size_t wkspIndex = 0; wkspIndex < numHist; wkspIndex++){
mMaskWS->setMaskedIndex(wkspIndex);

Zhou, Wenduo
committed
}
}
return;
}
//----------------------------------------------------------------------------------------------
/** Mask detectors or Unmask detectors
* @param tomask: true to mask, false to unmask
* @param singledetids: list of individual det ids to mask
* @param pairdetids_low: list of lower bound of det ids to mask
* @param pairdetids_up: list of upper bound of det ids to mask
void LoadMask::processMaskOnDetectors(bool tomask, std::vector<int32_t> singledetids,
std::vector<int32_t> pairdetids_low,
std::vector<int32_t> pairdetids_up)
{
// 1. Get index map
const detid2index_map indexmap = mMaskWS->getDetectorIDToWorkspaceIndexMap(true);

Zhou, Wenduo
committed
// 2. Mask
g_log.debug() << "Mask = " << tomask << " Final Single IDs Size = " << singledetids.size() << std::endl;
for (size_t i = 0; i < singledetids.size(); i ++)
{

Zhou, Wenduo
committed
detid_t detid = singledetids[i];
detid2index_map::const_iterator it;
it = indexmap.find(detid);
if (it != indexmap.end())

Zhou, Wenduo
committed
size_t index = it->second;
if (tomask)
mMaskWS->dataY(index)[0] = 1;
else
mMaskWS->dataY(index)[0] = 0;

Zhou, Wenduo
committed
g_log.error() << "Pixel w/ ID = " << detid << " Cannot Be Located" << std::endl;
}
}
for (size_t i = 0; i < pairdetids_low.size(); i ++)
{
g_log.error() << "To Be Implemented Soon For Pair (" << pairdetids_low[i] << ", " << pairdetids_up[i] << "!" << std::endl;

Zhou, Wenduo
committed
}

Zhou, Wenduo
committed
}
//----------------------------------------------------------------------------------------------
/** Convert a component to detectors. It is a generalized version of bankToDetectors()
void LoadMask::componentToDetectors(std::vector<std::string> componentnames,
Geometry::Instrument_const_sptr minstrument = mMaskWS->getInstrument();
for (size_t i = 0; i < componentnames.size(); i ++)
{
g_log.debug() << "Component name = " << componentnames[i] << std::endl;
Geometry::IComponent_const_sptr component = minstrument->getComponentByName(componentnames[i]);
if (component)
g_log.debug() << "Component ID = " << component->getComponentID() << std::endl;
else
{
// A non-exiting component. Ignore
g_log.warning() << "Component " << componentnames[i] << " does not exist!" << std::endl;
continue;
}
// b) component -> component assembly --> children (more than detectors)
boost::shared_ptr<const Geometry::ICompAssembly> asmb =
boost::dynamic_pointer_cast<const Geometry::ICompAssembly>(component);
std::vector<Geometry::IComponent_const_sptr> children;
asmb->getChildren(children, true);
g_log.debug() << "Number of Children = " << children.size() << std::endl;
int32_t numdets = 0;
int32_t id_min = 1000000;
int32_t id_max = 0;
for (size_t ic = 0; ic < children.size(); ic++)
{
// c) convert component to detector
Geometry::IComponent_const_sptr child = children[ic];
Geometry::IDetector_const_sptr det = boost::dynamic_pointer_cast<const Geometry::IDetector>(child);
int32_t detid = det->getID();
detectors.push_back(detid);
numdets ++;
if (detid < id_min)
id_min = detid;
if (detid > id_max)
id_max = detid;
}
}
g_log.debug() << "Number of Detectors in Children = " << numdets << " Range = " << id_min
<< ", " << id_max << std::endl;
} // for component
//----------------------------------------------------------------------------------------------
/** Convert bank to detectors

Zhou, Wenduo
committed
*/
void LoadMask::bankToDetectors(std::vector<std::string> singlebanks, std::vector<int32_t>& detectors,
std::vector<int32_t>& detectorpairslow, std::vector<int32_t>& detectorpairsup)
{
std::stringstream infoss;
infoss << "Bank IDs to be converted to detectors: " << endl;
for (size_t i = 0; i < singlebanks.size(); i ++)
{
infoss << "Bank: " << singlebanks[i] << std::endl;

Zhou, Wenduo
committed
}

Zhou, Wenduo
committed
Geometry::Instrument_const_sptr minstrument = mMaskWS->getInstrument();
for (size_t ib = 0; ib < singlebanks.size(); ib++)
{
std::vector<Geometry::IDetector_const_sptr> idetectors;

Zhou, Wenduo
committed
minstrument->getDetectorsInBank(idetectors, singlebanks[ib]);
g_log.debug() << "Bank: " << singlebanks[ib] << " has " << idetectors.size()
<< " detectors" << std::endl;

Zhou, Wenduo
committed
// a) get information
size_t numdets = idetectors.size();
detid_t detid_first = idetectors[0]->getID();
detid_t detid_last = idetectors[idetectors.size()-1]->getID();

Zhou, Wenduo
committed
// b) set detectors
if (detid_first+int32_t(numdets) == detid_last+1 && false)
{
// TODO This save-time method is not used at this stage
g_log.information() << "Using Range of Detectors" << std::endl;

Zhou, Wenduo
committed
detectorpairslow.push_back(detid_first);
detectorpairsup.push_back(detid_last);

Zhou, Wenduo
committed
}
else
{
g_log.debug() << "Apply 1 by 1 " << "DetID: " << detid_first << ", " << detid_last << std::endl;

Zhou, Wenduo
committed
for (size_t i = 0; i < idetectors.size(); i ++)
{
Geometry::IDetector_const_sptr det = idetectors[i];
int32_t detid = det->getID();
detectors.push_back(detid);
}

Zhou, Wenduo
committed

Zhou, Wenduo
committed
} // ENDFOR
return;
}
//----------------------------------------------------------------------------------------------
/** Set the mask on the spectrum IDs

Zhou, Wenduo
committed
*/
void LoadMask::processMaskOnWorkspaceIndex(bool mask, std::vector<int32_t> pairslow, std::vector<int32_t> pairsup)
{
// 1. Check
if (pairslow.size() == 0)
return;
if (pairslow.size() != pairsup.size())
{
g_log.error() << "Input spectrum IDs are not paired. Size(low) = " << pairslow.size()
<< ", Size(up) = " << pairsup.size() << std::endl;
throw std::invalid_argument("Input spectrum IDs are not paired. ");
}

Zhou, Wenduo
committed
const spec2index_map s2imap = mMaskWS->getSpectrumToWorkspaceIndexMap();
spec2index_map::const_iterator s2iter;
// 3. Set mask
for (size_t i = 0; i < pairslow.size(); i ++)
{
// TODO Make this function work!
g_log.debug() << "Mask Spectrum " << pairslow[i] << " To " << pairsup[i] << std::endl;
for (int32_t specid=pairslow[i]; specid<=pairsup[i]; specid++)
{
s2iter = s2imap.find(specid);
if (s2iter == s2imap.end())
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
{
// spectrum not found. bad brach
g_log.error() << "Spectrum " << specid << " does not have an entry in GroupWorkspace's spec2index map" << std::endl;
throw std::runtime_error("Logic error");
}
else
{
size_t wsindex = s2iter->second;
if (wsindex >= mMaskWS->getNumberHistograms())
{
// workspace index is out of range. bad branch
g_log.error() << "Group workspace's spec2index map is set wrong: " <<
" Found workspace index = " << wsindex << " for spectrum ID " << specid <<
" with workspace size = " << mMaskWS->getNumberHistograms() << std::endl;
}
else
{
// Finally set the group workspace. only good branch
if (mask)
mMaskWS->dataY(wsindex)[0] = 1.0;
else
mMaskWS->dataY(wsindex)[0] = 0.0;
} // IF-ELSE: ws index out of range
} // IF-ELSE: spectrum ID has an entry
} // FOR EACH SpecID
} // FOR EACH Pair

Zhou, Wenduo
committed
}
//----------------------------------------------------------------------------------------------
/** Convert spectrum to detectors

Zhou, Wenduo
committed
*/
void LoadMask::detectorToDetectors(std::vector<int32_t> singles, std::vector<int32_t> pairslow,
std::vector<int32_t> pairsup, std::vector<int32_t>& detectors,
std::vector<int32_t>& detectorpairslow, std::vector<int32_t>& detectorpairsup)
{
UNUSED_ARG(detectorpairslow)
UNUSED_ARG(detectorpairsup)

Zhou, Wenduo
committed
/*
for (size_t i = 0; i < singles.size(); i ++){
g_log.information() << "Detector " << singles[i] << std::endl;
}
for (size_t i = 0; i < pairslow.size(); i ++){
g_log.information() << "Detector " << pairslow[i] << " To " << pairsup[i] << std::endl;
}
*/
for (size_t i = 0; i < singles.size(); i ++)
{

Zhou, Wenduo
committed
detectors.push_back(singles[i]);
}
for (size_t i = 0; i < pairslow.size(); i ++)
{
for (int32_t j = 0; j < pairsup[i]-pairslow[i]+1; j ++)
{

Zhou, Wenduo
committed
int32_t detid = pairslow[i]+j;
detectors.push_back(detid);
}
/*
detectorpairslow.push_back(pairslow[i]);
detectorpairsup.push_back(pairsup[i]);
*/

Zhou, Wenduo
committed
}
return;
}
//----------------------------------------------------------------------------------------------
/** Initalize Poco XML Parser

Zhou, Wenduo
committed
*/
void LoadMask::initializeXMLParser(const std::string & filename)

Zhou, Wenduo
committed
{
// const std::string instName
std::cout << "Load File " << filename << std::endl;

Zhou, Wenduo
committed
const std::string xmlText = Kernel::Strings::loadFile(filename);
std::cout << "Successfully Load XML File " << std::endl;

Zhou, Wenduo
committed
// Set up the DOM parser and parse xml file
DOMParser pParser;
try
{
pDoc = pParser.parseString(xmlText);
}
catch(Poco::Exception& exc)
{
throw Kernel::Exception::FileError(exc.displayText() + ". Unable to parse File:", filename);
}
catch(...)
{
throw Kernel::Exception::FileError("Unable to parse File:" , filename);
}
// Get pointer to root element
pRootElem = pDoc->documentElement();
if ( !pRootElem->hasChildNodes() )
{
g_log.error("XML file: " + filename + "contains no root element.");
throw Kernel::Exception::InstrumentDefinitionError("No root element in XML instrument file", filename);
}
}
//----------------------------------------------------------------------------------------------
/** Parse XML file

Zhou, Wenduo
committed
*/

Zhou, Wenduo
committed
{
// 0. Check
if (!pDoc)
throw std::runtime_error("Call LoadMask::initialize() before parseXML.");

Zhou, Wenduo
committed
// 1. Parse and create a structure
Poco::AutoPtr<NodeList> pNL_type = pRootElem->getElementsByTagName("type");

Zhou, Wenduo
committed
g_log.information() << "Node Size = " << pNL_type->length() << std::endl;
Poco::XML::NodeIterator it(pDoc, Poco::XML::NodeFilter::SHOW_ELEMENT);
Poco::XML::Node* pNode = it.nextNode();
bool tomask = true;
bool ingroup = false;

Zhou, Wenduo
committed
const Poco::XML::XMLString value = pNode->innerText();
if (pNode->nodeName().compare("group") == 0)
{

Zhou, Wenduo
committed
// Node "group"
ingroup = true;

Zhou, Wenduo
committed
// get type
Poco::XML::NamedNodeMap* att = pNode->attributes();
Poco::XML::Node* cNode = att->item(0);
if (cNode->getNodeValue().compare("mask") == 0 || cNode->getNodeValue().compare("notuse") == 0){
tomask = true;
} else if (cNode->getNodeValue().compare("unmask") == 0 || cNode->getNodeValue().compare("use") == 0){
tomask = false;
} else {
g_log.error() << "Type (" << cNode->localName() << ") = " << cNode->getNodeValue() << " is not supported!" << std::endl;
}
g_log.information() << "Node Group: child Node Name = " << cNode->localName() << ": " << cNode->getNodeValue()
<< "(always)"<< std::endl;
*/

Zhou, Wenduo
committed
}
else if (pNode->nodeName().compare("component") == 0)
{

Zhou, Wenduo
committed
// Node "component"
if (ingroup){
this->parseComponent(value, tomask);

Zhou, Wenduo
committed
} else {
g_log.error() << "XML File heirachial (component) error!" << std::endl;
}
// g_log.information() << "Component: " << value << std::endl;
}
else if (pNode->nodeName().compare("ids") == 0)
{

Zhou, Wenduo
committed
// Node "ids"
if (ingroup){
this->parseSpectrumIDs(value, tomask);
} else {
g_log.error() << "XML File (ids) heirachial error!" << " Inner Text = " << pNode->innerText() << std::endl;
}
// g_log.information() << "detids: " << value << std::endl;
}
else if (pNode->nodeName().compare("detids") == 0)
{

Zhou, Wenduo
committed
// Node "detids"
if (ingroup){
this->parseDetectorIDs(value, tomask);
} else {
g_log.error() << "XML File (detids) heirachial error!" << std::endl;
}
}
else if (pNode->nodeName().compare("detector-masking") == 0)
{
// Node "detector-masking". Check default value
mDefaultToUse = true;
/*
Poco::XML::NamedNodeMap* att = pNode->attributes();
if (att->length() > 0){
Poco::XML::Node* cNode = att->item(0);
if (cNode->localName().compare("default") == 0){
if (cNode->getNodeValue().compare("use") == 0){
mDefaultToUse = true;
} else {
mDefaultToUse = false;
}
} // if - att-length
*/
} // END-IF-ELSE: pNode->nodeName()

Zhou, Wenduo
committed
pNode = it.nextNode();
} // ENDWHILE
return;
}
//----------------------------------------------------------------------------------------------
/** Parse bank IDs (string name)

Zhou, Wenduo
committed
* Sample: bank2
* @param valuetext: must be bank name
* @param tomask: if true, mask, if not unmask

Zhou, Wenduo
committed
*/
void LoadMask::parseComponent(std::string valuetext, bool tomask)
{

Zhou, Wenduo
committed
// 1. Parse bank out

Zhou, Wenduo
committed
std::vector<std::string> values;
this->splitString(valuetext, values, "bank");
if (values.size() <= 1){
g_log.error() << "Bank information format error!" << std::endl;
return;
}

Zhou, Wenduo
committed
if (tomask){
mask_bankid_single.push_back(valuetext);
} else {
unmask_bankid_single.push_back(valuetext);
}
/*
for (size_t i = 0; i < singles.size(); i ++){
g_log.information() << "Bank " << singles[i] << std::endl;
}
for (size_t i = 0; i < pairs.size()/2; i ++){
g_log.information() << "Bank " << pairs[2*i] << " To " << pairs[2*i+1] << std::endl;
}
*/
return;
}
//----------------------------------------------------------------------------------------------
/** Parse input string for spectrum ID

Zhou, Wenduo
committed
*/
void LoadMask::parseSpectrumIDs(std::string inputstr, bool tomask)
{

Zhou, Wenduo
committed
// 1. Parse range out
std::vector<int32_t> singles;
std::vector<int32_t> pairs;
this->parseRangeText(inputstr, singles, pairs);
// 2. Set to data storage
if (tomask)
{
for (size_t i = 0; i < singles.size(); i ++)
{

Zhou, Wenduo
committed
mask_specid_single.push_back(singles[i]);
}
for (size_t i = 0; i < pairs.size()/2; i ++)
{

Zhou, Wenduo
committed
mask_specid_pair_low.push_back(pairs[2*i]);
mask_specid_pair_up.push_back(pairs[2*i+1]);
}
} else
{
for (size_t i = 0; i < singles.size(); i ++)
{

Zhou, Wenduo
committed
unmask_specid_single.push_back(singles[i]);
}
for (size_t i = 0; i < pairs.size()/2; i ++)
{

Zhou, Wenduo
committed
unmask_specid_pair_low.push_back(pairs[2*i]);
unmask_specid_pair_up.push_back(pairs[2*i+1]);
}
}
return;
}
//----------------------------------------------------------------------------------------------
/** Parse input string for spectrum ID

Zhou, Wenduo
committed
*/
void LoadMask::parseDetectorIDs(std::string inputstr, bool tomask)
{

Zhou, Wenduo
committed
// g_log.information() << "Detector IDs: " << inputstr << std::endl;
// 1. Parse range out
std::vector<int32_t> singles;
std::vector<int32_t> pairs;
this->parseRangeText(inputstr, singles, pairs);
// 2. Set to data storage
if (tomask){
for (size_t i = 0; i < singles.size(); i ++){

Zhou, Wenduo
committed
mask_detid_single.push_back(singles[i]);
}
for (size_t i = 0; i < pairs.size()/2; i ++){

Zhou, Wenduo
committed
mask_detid_pair_low.push_back(pairs[2*i]);
mask_detid_pair_up.push_back(pairs[2*i+1]);
}
} else {
for (size_t i = 0; i < singles.size(); i ++){

Zhou, Wenduo
committed
unmask_detid_single.push_back(singles[i]);
}
for (size_t i = 0; i < pairs.size()/2; i ++){

Zhou, Wenduo
committed
unmask_detid_pair_low.push_back(pairs[2*i]);
unmask_detid_pair_up.push_back(pairs[2*i+1]);
}
}
return;
}
/*
* Parse index range text to singles and pairs
* Example: 3,4,9-10,33
*/
void LoadMask::parseRangeText(std::string inputstr, std::vector<int32_t>& singles, std::vector<int32_t>& pairs){

Zhou, Wenduo
committed
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
// 1. Split ','
std::vector<std::string> rawstrings;
this->splitString(inputstr, rawstrings, ",");
// 2. Filter
std::vector<std::string> strsingles;
std::vector<std::string> strpairs;
for (size_t i = 0; i < rawstrings.size(); i ++){
// a) Find '-':
bool containto = false;
const char* tempchs = rawstrings[i].c_str();
for (size_t j = 0; j < rawstrings[i].size(); j ++)
if (tempchs[j] == '-'){
containto = true;
break;
}
// b) Rebin
if (containto)
strpairs.push_back(rawstrings[i]);
else
strsingles.push_back(rawstrings[i]);
} // ENDFOR i
// 3. Treat singles
for (size_t i = 0; i < strsingles.size(); i ++){
int32_t itemp = atoi(strsingles[i].c_str());
singles.push_back(itemp);
}
// 4. Treat pairs
for (size_t i = 0; i < strpairs.size(); i ++){
// a) split and check
std::vector<std::string> ptemp;
this->splitString(strpairs[i], ptemp, "-");
if (ptemp.size() != 2){
g_log.error() << "Range string " << strpairs[i] << " has a wrong format!" << std::endl;
throw std::invalid_argument("Wrong format");
}
// b) parse
int32_t intstart = atoi(ptemp[0].c_str());
int32_t intend = atoi(ptemp[1].c_str());
if (intstart >= intend){
g_log.error() << "Range string " << strpairs[i] << " has a reversed order" << std::endl;
throw std::invalid_argument("Wrong format");
}
pairs.push_back(intstart);
pairs.push_back(intend);
}
return;
}
void LoadMask::splitString(std::string inputstr, std::vector<std::string>& strings, std::string sep){

Zhou, Wenduo
committed
// std::vector<std::string> SplitVec;
boost::split(strings, inputstr, boost::is_any_of(sep), boost::token_compress_on);
// g_log.information() << "Inside... split size = " << strings.size() << std::endl;
return;
}
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
/*
* Load and parse an ISIS masking file
*/
void LoadMask::loadISISMaskFile(std::string isisfilename)
{
std::ifstream ifs;
ifs.open(isisfilename.c_str(), std::ios::in);
if (!ifs.is_open())
{
g_log.error() << "Cannot open ISIS mask file " << isisfilename << endl;
throw std::invalid_argument("Cannot open ISIS mask file");
}
std::string isisline;
while(getline(ifs, isisline))
{
boost::trim(isisline);
// a. skip empty line
if (isisline.size() == 0)
continue;
// b. skip comment line
if (isisline.c_str()[0] < '0' || isisline.c_str()[0] > '9')
continue;
// c. parse
g_log.debug() << "Input: " << isisline << std::endl;
parseISISStringToVector(isisline, mask_specid_pair_low, mask_specid_pair_up);
}
for (size_t i = 0; i < mask_specid_pair_low.size(); i ++)
{
g_log.debug() << i << ": " << mask_specid_pair_low[i] << ", " <<
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
mask_specid_pair_up[i] << std::endl;
}
ifs.close();
return;
}
/*
* Parse a line in an ISIS mask file string to vector
* Combination of 5 types of format for unit
* (1) a (2) a-b (3) a - b (4) a- b (5) a- b
* separated by space(s)
*/
void LoadMask::parseISISStringToVector(string ins, std::vector<int>& rangestartvec, std::vector<int>& rangeendvec)
{
// 1. Split by space
std::vector<string> splitstrings;
boost::split(splitstrings, ins, boost::is_any_of(" "), boost::token_compress_on);
// 2. Replace a-b to a - b, remove a-b and insert a, -, b
bool tocontinue = true;
size_t index = 0;
while (tocontinue)
{
// a) Determine end of loop. Note that loop size changes
if (index == splitstrings.size() - 1)
{
tocontinue = false;
}
// b) Need to split?
vector<string> temps;
boost::split(temps, splitstrings[index], boost::is_any_of("-"), boost::token_compress_on);
if (splitstrings[index].compare("-") == 0 || temps.size() == 1)
{
// Nothing to split
index++;
}
else if (temps.size() == 2)
{
// Has a '-' inside. Delete and Replace
temps.insert(temps.begin() + 1, "-");
splitstrings.erase(splitstrings.begin() + index);
for (size_t ic = 0; ic < 3; ic++)
{
if (temps[ic].size() > 0)
{
splitstrings.insert(splitstrings.begin() + index, temps[ic]);
index++;
}
}
}
else
{
// Exception
g_log.error() << "String " << splitstrings[index] << " has a wrong format. Too many '-'"
<< std::endl;
throw std::invalid_argument("Invalid string in input");
}
if (index >= splitstrings.size())
tocontinue = false;
} // END WHILE
// 3. Put to output integer vector
tocontinue = true;
index = 0;
while (tocontinue)
{
// i) push to the starting vector
rangestartvec.push_back(atoi(splitstrings[index].c_str()));
// ii) push the ending vector
if (index == splitstrings.size() - 1 || splitstrings[index + 1].compare("-") != 0)
{
// the next one is not '-'
rangeendvec.push_back(atoi(splitstrings[index].c_str()));
index++;
}
else
{
// the next one is '-', thus read '-', next
rangeendvec.push_back(atoi(splitstrings[index + 2].c_str()));
index += 3;
}
if (index >= splitstrings.size())
tocontinue = false;
} // END-WHILE
splitstrings.clear();
return;
}
//----------------------------------------------------------------------------------------------
/** Initialize the Mask Workspace with instrument

Zhou, Wenduo
committed
*/
void LoadMask::intializeMaskWorkspace()
{

Zhou, Wenduo
committed
// 1. Execute algorithm LoadInstrument() to a temporary Workspace
API::Algorithm_sptr childAlg = createChildAlgorithm("LoadInstrument");

Zhou, Wenduo
committed
MatrixWorkspace_sptr tempWS(new DataObjects::Workspace2D());
childAlg->setProperty<MatrixWorkspace_sptr>("Workspace", tempWS);
childAlg->setPropertyValue("InstrumentName", mInstrumentName);
childAlg->setProperty("RewriteSpectraMap", false);
childAlg->executeAsChildAlg();

Zhou, Wenduo
committed
if (!childAlg->isExecuted())
{
g_log.error() << "Unable to load Instrument " << mInstrumentName << std::endl;
throw std::invalid_argument("Incorrect instrument name given!");
}

Zhou, Wenduo
committed
// 2. Use the instrument in the temp Workspace for new MaskWorkspace
mMaskWS = DataObjects::MaskWorkspace_sptr(new DataObjects::MaskWorkspace(tempWS->getInstrument()));