Newer
Older
Sofia Antony
committed
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include "MantidDataHandling/LoadRawSpectrum0.h"
#include "LoadRaw/isisraw2.h"
#include "MantidDataHandling/LoadLog.h"
#include "MantidKernel/FileProperty.h"
#include "MantidDataObjects/Workspace2D.h"
#include "MantidAPI/XMLlogfile.h"
#include "MantidAPI/MemoryManager.h"
#include "MantidAPI/SpectraDetectorMap.h"
#include "MantidAPI/WorkspaceGroup.h"
#include "MantidKernel/UnitFactory.h"
#include "MantidKernel/ConfigService.h"
#include "MantidKernel/ArrayProperty.h"
#include "Poco/Path.h"
#include "MantidKernel/TimeSeriesProperty.h"
#include <boost/shared_ptr.hpp>
#include "Poco/Path.h"
#include <cmath>
#include <cstdio> //Required for gcc 4.4
Sofia Antony
committed
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
namespace Mantid
{
namespace DataHandling
{
// Register the algorithm into the algorithm factory
DECLARE_ALGORITHM(LoadRawSpectrum0)
using namespace Kernel;
using namespace API;
/// Constructor
LoadRawSpectrum0::LoadRawSpectrum0() :
m_filename(), m_numberOfSpectra(0), m_numberOfPeriods(0),
m_specTimeRegimes(), m_prog(0.0)
{
}
LoadRawSpectrum0::~LoadRawSpectrum0()
{
}
/// Initialisation method.
void LoadRawSpectrum0::init()
{
LoadRawHelper::init();
}
/** Executes the algorithm. Reading in the file and creating and populating
* the output workspace
*
* @throw Exception::FileError If the RAW file cannot be found/opened
* @throw std::invalid_argument If the optional properties are set to invalid values
*/
void LoadRawSpectrum0::exec()
{
// Retrieve the filename from the properties
m_filename = getPropertyValue("Filename");
bool bLoadlogFiles = getProperty("LoadLogFiles");
//open the raw file
FILE* file=openRawFile(m_filename);
// Need to check that the file is not a text file as the ISISRAW routines don't deal with these very well, i.e
// reading continues until a bad_alloc is encountered.
if( isAscii(file) )
{
g_log.error() << "File \"" << m_filename << "\" is not a valid RAW file.\n";
throw std::invalid_argument("Incorrect file type encountered.");
}
std::string title;
readTitle(file,title);
readworkspaceParameters(m_numberOfSpectra,m_numberOfPeriods,m_lengthIn,m_noTimeRegimes);
// Calculate the size of a workspace, given its number of periods & spectra to read
const int total_specs = 1;
// Get the time channel array(s) and store in a vector inside a shared pointer
std::vector<boost::shared_ptr<MantidVec> > timeChannelsVec =
getTimeChannels(m_noTimeRegimes, m_lengthIn);
// Need to extract the user-defined output workspace name
const std::string localWSName = getPropertyValue("OutputWorkspace");
int histTotal = total_specs * m_numberOfPeriods;
int histCurrent = -1;
// Create the 2D workspace for the output
DataObjects::Workspace2D_sptr localWorkspace =createWorkspace(total_specs, m_lengthIn,m_lengthIn-1,title);
Gigg, Martyn Anthony
committed
Run& run = localWorkspace->mutableRun();
Sofia Antony
committed
if(bLoadlogFiles)
{
runLoadLog(m_filename,localWorkspace);
Property* log = createPeriodLog(1);
Gigg, Martyn Anthony
committed
if (log) run.addLogData(log);
Sofia Antony
committed
}
// Set the total proton charge for this run
Gigg, Martyn Anthony
committed
setProtonCharge(run);
Sofia Antony
committed
WorkspaceGroup_sptr wsgrp_sptr = createGroupWorkspace();
setWorkspaceProperty("OutputWorkspace", title, wsgrp_sptr, localWorkspace,m_numberOfPeriods, false);
// Loop over the number of periods in the raw file, putting each period in a separate workspace
for (int period = 0; period < m_numberOfPeriods; ++period)
{
if (period > 0)
{
localWorkspace = boost::dynamic_pointer_cast<DataObjects::Workspace2D>(
WorkspaceFactory::Instance().create(localWorkspace));
if(bLoadlogFiles)
{
//remove previous period data
std::stringstream prevPeriod;
prevPeriod << "PERIOD " << (period);
Gigg, Martyn Anthony
committed
Run& runObj = localWorkspace->mutableRun();
runObj.removeLogData(prevPeriod.str());
Sofia Antony
committed
//add current period data
Property* log = createPeriodLog(period+1);
if (log)
Gigg, Martyn Anthony
committed
{
runObj.addLogData(log);
Sofia Antony
committed
}
}
//skip all spectra except the first one in each period
for(int i=1;i<=m_numberOfSpectra;++i)
{
skipData(file, i+ (period-1)*(m_numberOfSpectra+1) );
}
}
int wsIndex = 0;
// for each period read first spectrum
int histToRead = period*(m_numberOfSpectra+1);
progress(m_prog, "Reading raw file data...");
//isisRaw->readData(file, histToRead);
//readData(file, histToRead);
//read spectrum
if (!readData(file, histToRead))
{
throw std::runtime_error("Error reading raw file");
}
Sofia Antony
committed
//set the workspace data
setWorkspaceData(localWorkspace, timeChannelsVec, wsIndex, 0, m_noTimeRegimes,m_lengthIn,1);
if (m_numberOfPeriods == 1)
{
if (++histCurrent % 100 == 0)
{
m_prog = double(histCurrent) / histTotal;
}
interruption_point();
}
if(m_numberOfPeriods>1)
{
setWorkspaceProperty(localWorkspace, wsgrp_sptr, period, false);
Sofia Antony
committed
// progress for workspace groups
m_prog = (double(period) / (m_numberOfPeriods - 1));
}
} // loop over periods
// Clean up
reset();
fclose(file);
}
}