Newer
Older
#include "MantidDataHandling/LoadLLB.h"
#include "MantidAPI/FileProperty.h"
#include "MantidKernel/UnitFactory.h"
#include "MantidAPI/Progress.h"
#include "MantidAPI/RegisterFileLoader.h"
#include "MantidGeometry/Instrument.h"
#include <limits>
#include <algorithm>
#include <iostream>
#include <vector>
#include <cmath>
namespace Mantid {
namespace DataHandling {
using namespace Kernel;
using namespace API;
using namespace NeXus;
DECLARE_NEXUS_FILELOADER_ALGORITHM(LoadLLB)
//----------------------------------------------------------------------------------------------
/** Constructor
*/
LoadLLB::LoadLLB()
: m_instrumentName(""), m_instrumentPath(""), m_localWorkspace(),
m_numberOfTubes(0), m_numberOfPixelsPerTube(0), m_numberOfChannels(0),
m_numberOfHistograms(0), m_wavelength(0.0), m_channelWidth(0.0),
m_loader() {
m_supportedInstruments.push_back("MIBEMOL");
}
//----------------------------------------------------------------------------------------------
/** Destructor
*/
//----------------------------------------------------------------------------------------------
/// Algorithm's name for identification. @see Algorithm::name
const std::string LoadLLB::name() const { return "LoadLLB"; }
/// Algorithm's version for identification. @see Algorithm::version
int LoadLLB::version() const { return 1; }
/// Algorithm's category for identification. @see Algorithm::category
const std::string LoadLLB::category() const { return "DataHandling"; }
/**
* Return the confidence with with this algorithm can load the file
* @param descriptor A descriptor for the file
* @returns An integer specifying the confidence level. 0 indicates it will not
* be used
int LoadLLB::confidence(Kernel::NexusDescriptor &descriptor) const {
// fields existent only at the LLB
if (descriptor.pathExists("/nxentry/program_name") &&
descriptor.pathExists("/nxentry/subrun_number") &&
descriptor.pathExists("/nxentry/total_subruns")) {
return 80;
} else {
return 0;
}
//----------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------
/** Initialize the algorithm's properties.
*/
void LoadLLB::init() {
std::vector<std::string> exts;
exts.push_back(".nxs");
exts.push_back(".hdf");
declareProperty(new FileProperty("Filename", "", FileProperty::Load, exts),
"The name of the Nexus file to load");
declareProperty(
new WorkspaceProperty<>("OutputWorkspace", "", Direction::Output),
"The name to use for the output workspace");
}
//----------------------------------------------------------------------------------------------
/** Execute the algorithm.
*/
void LoadLLB::exec() {
std::string filename = getPropertyValue("Filename");
NXRoot root(filename);
NXEntry entry = root.openFirstEntry();
setInstrumentName(entry);
initWorkSpace(entry);
runLoadInstrument(); // just to get IDF
loadTimeDetails(entry);
loadDataIntoTheWorkSpace(entry);
loadRunDetails(entry);
loadExperimentDetails(entry);
setProperty("OutputWorkspace", m_localWorkspace);
void LoadLLB::setInstrumentName(NeXus::NXEntry &entry) {
m_instrumentPath = "nxinstrument";
m_instrumentName =
m_loader.getStringFromNexusPath(entry, m_instrumentPath + "/name");
if (m_instrumentName == "") {
throw std::runtime_error(
"Cannot read the instrument name from the Nexus file!");
}
g_log.debug() << "Instrument Name: " << m_instrumentName
<< " in NxPath: " << m_instrumentPath << std::endl;
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
void LoadLLB::initWorkSpace(NeXus::NXEntry &entry) {
// read in the data
NXData dataGroup = entry.openNXData("nxdata");
NXInt data = dataGroup.openIntData();
m_numberOfTubes = static_cast<size_t>(data.dim0());
m_numberOfPixelsPerTube = 1;
m_numberOfChannels = static_cast<size_t>(data.dim1());
// dim0 * m_numberOfPixelsPerTube is the total number of detectors
m_numberOfHistograms = m_numberOfTubes * m_numberOfPixelsPerTube;
g_log.debug() << "NumberOfTubes: " << m_numberOfTubes << std::endl;
g_log.debug() << "NumberOfPixelsPerTube: " << m_numberOfPixelsPerTube
<< std::endl;
g_log.debug() << "NumberOfChannels: " << m_numberOfChannels << std::endl;
// Now create the output workspace
// Might need to get this value from the number of monitors in the Nexus file
// params:
// workspace type,
// total number of spectra + (number of monitors = 0),
// bin boundaries = m_numberOfChannels + 1
// Z/time dimension
m_localWorkspace = WorkspaceFactory::Instance().create(
"Workspace2D", m_numberOfHistograms, m_numberOfChannels + 1,
m_numberOfChannels);
m_localWorkspace->getAxis(0)->unit() = UnitFactory::Instance().create("TOF");
m_localWorkspace->setYUnitLabel("Counts");
void LoadLLB::loadTimeDetails(NeXus::NXEntry &entry) {
m_wavelength = entry.getFloat("nxbeam/incident_wavelength");
// Apparently this is in the wrong units
// http://iramis.cea.fr/Phocea/file.php?class=page&reload=1227895533&file=21/How_to_install_and_use_the_Fitmib_suite_v28112008.pdf
m_channelWidth = entry.getInt("nxmonitor/channel_width") * 0.1;
g_log.debug("Nexus Data:");
g_log.debug() << " ChannelWidth: " << m_channelWidth << std::endl;
g_log.debug() << " Wavelength: " << m_wavelength << std::endl;
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
void LoadLLB::loadDataIntoTheWorkSpace(NeXus::NXEntry &entry) {
// read in the data
NXData dataGroup = entry.openNXData("nxdata");
NXFloat data = dataGroup.openFloatData();
data.load();
// EPP
int calculatedDetectorElasticPeakPosition =
getDetectorElasticPeakPosition(data);
std::vector<double> timeBinning =
getTimeBinning(calculatedDetectorElasticPeakPosition, m_channelWidth);
// Assign time bin to first X entry
m_localWorkspace->dataX(0).assign(timeBinning.begin(), timeBinning.end());
Progress progress(this, 0, 1, m_numberOfTubes * m_numberOfPixelsPerTube);
size_t spec = 0;
for (size_t i = 0; i < m_numberOfTubes; ++i) {
for (size_t j = 0; j < m_numberOfPixelsPerTube; ++j) {
if (spec > 0) {
// just copy the time binning axis to every spectra
m_localWorkspace->dataX(spec) = m_localWorkspace->readX(0);
}
// Assign Y
float *data_p = &data(static_cast<int>(i), static_cast<int>(j));
m_localWorkspace->dataY(spec).assign(data_p, data_p + m_numberOfChannels);
// Assign Error
MantidVec &E = m_localWorkspace->dataE(spec);
std::transform(data_p, data_p + m_numberOfChannels, E.begin(),
LoadLLB::calculateError);
++spec;
progress.report();
}
}
g_log.debug() << "Data loading inti WS done...." << std::endl;
int LoadLLB::getDetectorElasticPeakPosition(const NeXus::NXFloat &data) {
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
std::vector<int> cumulatedSumOfSpectras(m_numberOfChannels, 0);
for (size_t i = 0; i < m_numberOfTubes; i++) {
float *data_p = &data(static_cast<int>(i), 0);
float currentSpec = 0;
for (size_t j = 0; j < m_numberOfChannels; ++j)
currentSpec += data_p[j];
if (i > 0) {
cumulatedSumOfSpectras[i] =
cumulatedSumOfSpectras[i - 1] + static_cast<int>(currentSpec);
} else {
cumulatedSumOfSpectras[i] = static_cast<int>(currentSpec);
}
}
auto it = std::max_element(cumulatedSumOfSpectras.begin(),
cumulatedSumOfSpectras.end());
int calculatedDetectorElasticPeakPosition;
if (it == cumulatedSumOfSpectras.end()) {
throw std::runtime_error(
"No Elastic peak position found while analyzing the data!");
} else {
// calculatedDetectorElasticPeakPosition = *it;
calculatedDetectorElasticPeakPosition =
static_cast<int>(std::distance(cumulatedSumOfSpectras.begin(), it));
if (calculatedDetectorElasticPeakPosition == 0) {
throw std::runtime_error("No Elastic peak position found while analyzing "
"the data. Elastic peak position is ZERO!");
} else {
g_log.debug() << "Calculated Detector EPP: "
<< calculatedDetectorElasticPeakPosition << std::endl;
}
}
return calculatedDetectorElasticPeakPosition;
std::vector<double> LoadLLB::getTimeBinning(int elasticPeakPosition,
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
double channelWidth) {
double l1 = m_loader.getL1(m_localWorkspace);
double l2 = m_loader.getL2(m_localWorkspace);
double theoreticalElasticTOF = (m_loader.calculateTOF(l1, m_wavelength) +
m_loader.calculateTOF(l2, m_wavelength)) *
1e6; // microsecs
g_log.debug() << "elasticPeakPosition : "
<< static_cast<float>(elasticPeakPosition) << std::endl;
g_log.debug() << "l1 : " << l1 << std::endl;
g_log.debug() << "l2 : " << l2 << std::endl;
g_log.debug() << "theoreticalElasticTOF : " << theoreticalElasticTOF
<< std::endl;
std::vector<double> detectorTofBins(m_numberOfChannels + 1);
for (size_t i = 0; i < m_numberOfChannels + 1; ++i) {
detectorTofBins[i] =
theoreticalElasticTOF +
channelWidth *
static_cast<double>(static_cast<int>(i) - elasticPeakPosition) -
channelWidth /
2; // to make sure the bin is in the middle of the elastic peak
}
return detectorTofBins;
void LoadLLB::loadRunDetails(NXEntry &entry) {
API::Run &runDetails = m_localWorkspace->mutableRun();
// int runNum = entry.getInt("run_number");
// std::string run_num = boost::lexical_cast<std::string>(runNum);
// runDetails.addProperty("run_number", run_num);
std::string start_time = entry.getString("start_time");
// start_time = getDateTimeInIsoFormat(start_time);
runDetails.addProperty("run_start", start_time);
std::string end_time = entry.getString("end_time");
// end_time = getDateTimeInIsoFormat(end_time);
runDetails.addProperty("run_end", end_time);
double wavelength = entry.getFloat("nxbeam/incident_wavelength");
runDetails.addProperty<double>("wavelength", wavelength);
double energy = m_loader.calculateEnergy(wavelength);
runDetails.addProperty<double>("Ei", energy, true); // overwrite
std::string title = entry.getString("title");
runDetails.addProperty("title", title);
m_localWorkspace->setTitle(title);
}
/*
* Load data about the Experiment.
*
* TODO: This is very incomplete. In ISIS they much more info in the nexus file
*than ILL.
*
* @param entry :: The Nexus entry
*/
void LoadLLB::loadExperimentDetails(NXEntry &entry) {
// TODO: Do the rest
// Pick out the geometry information
// std::string description = boost::lexical_cast<std::string>(
// entry.getFloat("sample/description"));
//
// m_localWorkspace->mutableSample().setName(description);
// m_localWorkspace->mutableSample().setThickness(static_cast<double>
//(isis_raw->spb.e_thick));
// m_localWorkspace->mutableSample().setHeight(static_cast<double>
//(isis_raw->spb.e_height));
// m_localWorkspace->mutableSample().setWidth(static_cast<double>
//(isis_raw->spb.e_width));
}
/**
* Run the Child Algorithm LoadInstrument.
*/
void LoadLLB::runLoadInstrument() {
IAlgorithm_sptr loadInst = createChildAlgorithm("LoadInstrument");
// Now execute the Child Algorithm. Catch and log any error, but don't stop.
try {
// TODO: depending on the m_numberOfPixelsPerTube we might need to load a
// different IDF
loadInst->setPropertyValue("InstrumentName", m_instrumentName);
loadInst->setProperty<MatrixWorkspace_sptr>("Workspace", m_localWorkspace);
loadInst->execute();
} catch (...) {
g_log.information("Cannot load the instrument definition.");
}
}
} // namespace DataHandling
} // namespace Mantid