Skip to content

Commit

Permalink
Re #8837 Load dead times after checking specified spectra
Browse files Browse the repository at this point in the history
  • Loading branch information
raquelalvarezbanos committed Mar 3, 2015
1 parent 583fbab commit 71291c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Code/Mantid/Framework/DataHandling/src/LoadMuonNexus1.cpp
Expand Up @@ -122,9 +122,6 @@ void LoadMuonNexus1::exec() {
m_numberOfPeriods = nxload.t_nper;
}

// Try to load dead time info
loadDeadTimes(root);

bool autoGroup = getProperty("AutoGroup");

// Grouping info should be returned if user has set the property
Expand Down Expand Up @@ -156,6 +153,9 @@ void LoadMuonNexus1::exec() {
// Call private method to validate the optional parameters, if set
checkOptionalProperties();

// Try to load dead time info
loadDeadTimes(root);

// Read the number of time channels (i.e. bins) from the Nexus file
const int channelsPerSpectrum = nxload.t_ntc1;
// Read in the time bin boundaries
Expand Down

0 comments on commit 71291c0

Please sign in to comment.