Skip to content

Commit

Permalink
Re #3622 Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mdoucet committed Nov 7, 2011
1 parent 26f7f1e commit a36e82d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Code/Mantid/Framework/DataHandling/src/LoadMaskingFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ namespace DataHandling
void LoadMaskingFile::processMaskOnDetectors(bool tomask, std::vector<int32_t> singledetids, std::vector<int32_t> pairdetids_low,
std::vector<int32_t> pairdetids_up){

UNUSED_ARG(pairdetids_up)
// 1. Initialize
if (tomask){
for (size_t i = 0; i < mMaskWS->getNumberHistograms(); i ++){
Expand Down Expand Up @@ -241,6 +242,9 @@ namespace DataHandling
std::vector<int32_t>& detectors,
std::vector<int32_t>& detectorpairslow, std::vector<int32_t>& detectorpairsup){

UNUSED_ARG(detectors)
UNUSED_ARG(detectorpairslow)
UNUSED_ARG(detectorpairsup)
g_log.error() << "SpectrumID in XML File (ids) Is Not Supported! Spectrum IDs" << std::endl;

for (size_t i = 0; i < singles.size(); i ++){
Expand All @@ -258,6 +262,8 @@ namespace DataHandling
void LoadMaskingFile::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)

/*
for (size_t i = 0; i < singles.size(); i ++){
Expand Down

0 comments on commit a36e82d

Please sign in to comment.