Skip to content

Commit

Permalink
Re #11825 Fixing initialization list, adding missing members
Browse files Browse the repository at this point in the history
  • Loading branch information
raquelalvarezbanos committed May 22, 2015
1 parent 19d1658 commit aba85e9
Showing 1 changed file with 9 additions and 2 deletions.
Expand Up @@ -202,8 +202,15 @@ static string generateMappingfileName(EventWorkspace_sptr &wksp) {
/** Constructor
*/
FilterEventsByLogValuePreNexus::FilterEventsByLogValuePreNexus()
: Mantid::API::IFileLoader<Kernel::FileDescriptor>(), eventfile(NULL),
m_maxNumEvents(0) {}
: Mantid::API::IFileLoader<Kernel::FileDescriptor>(), proton_charge_tot(0),
eventfile(NULL), detid_max(0), num_events(0), num_pulses(0), numpixel(0),
num_good_events(0), num_error_events(0), num_bad_events(0),
num_wrongdetid_events(0), num_ignored_events(0), first_event(0),
m_maxNumEvents(0), using_mapping_file(false), loadOnlySomeSpectra(false),
longest_tof(0.0), shortest_tof(0.0), parallelProcessing(false),
pulsetimesincreasing(false), m_throwError(true), m_examEventLog(false),
m_pixelid2exam(0), m_numevents2write(0), m_freqHz(0), istep(0),
m_dbPixelID(0), m_useDBOutput(false), m_corretctTOF(false) {}

//----------------------------------------------------------------------------------------------
/** Desctructor
Expand Down

0 comments on commit aba85e9

Please sign in to comment.