Skip to content

Commit

Permalink
Re #7452 Cleanup warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricardo Leal committed Feb 3, 2014
1 parent d624438 commit b665bbc
Showing 1 changed file with 6 additions and 6 deletions.
@@ -1,5 +1,5 @@
/*WIKI*
Create a PropertyManager object setting the reduction options for EQSANS.
Create a PropertyManager object setting the reduction options for ILL D33 SANS TOF instrument.
The property manager object is then added to the PropertyManagerDataService.
See [http://www.mantidproject.org/Reduction_for_HFIR_SANS SANS Reduction] documentation for details.
Expand Down Expand Up @@ -494,7 +494,7 @@ void SetupILLD33Reduction::exec()

// Store normalization algorithm
const std::string normalization = getProperty("Normalisation");
bool loadMonitors = getProperty("LoadMonitors");
// bool loadMonitors = getProperty("LoadMonitors");
const std::string monitorRefFile = getPropertyValue("MonitorReferenceFile");

if (!boost::contains(normalization, "None")) {
Expand All @@ -512,7 +512,7 @@ void SetupILLD33Reduction::exec()
}
else if (boost::contains(normalization, "Monitor"))
{
loadMonitors = true;
// loadMonitors = true;
if (monitorRefFile.size()==0)
{
g_log.error() << "ERROR: normalize-to-monitor was turned ON but no reference data was selected" << std::endl;
Expand Down Expand Up @@ -677,10 +677,10 @@ void SetupILLD33Reduction::exec()
{
const std::string nBins = getPropertyValue("IQNumberOfBins");
const bool logBinning = getProperty("IQLogBinning");
const double sampleApert = getProperty("SampleApertureDiameter");
//const double sampleApert = getProperty("SampleApertureDiameter");
const bool computeResolution = getProperty("ComputeResolution");
const bool indepBinning = getProperty("IQIndependentBinning");
const bool scaleResults = getProperty("IQScaleResults");
//const bool indepBinning = getProperty("IQIndependentBinning");
//const bool scaleResults = getProperty("IQScaleResults");

IAlgorithm_sptr iqAlg = createChildAlgorithm("SANSAzimuthalAverage1D");
iqAlg->setPropertyValue("NumberOfBins", nBins);
Expand Down

0 comments on commit b665bbc

Please sign in to comment.