Skip to content

Commit

Permalink
refs #6449 further fighting with Nix
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts authored and martyngigg committed Apr 10, 2013
1 parent 4d40637 commit 1bdc3d7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Code/Mantid/Framework/MDEvents/src/BoxControllerNxSIO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,14 @@ namespace MDEvents
{
m_BlockSize[1] = 4+m_bc->getNDims();

m_EventsTypesSupported.assign(EventTypes,std::end(EventTypes));
m_EventsTypeHeaders.assign(EventHeaders,std::end(EventHeaders));
for(size_t i=0;i<2;i++)
{
m_EventsTypesSupported.push_back(EventTypes[i]);
m_EventsTypeHeaders.push_back(EventHeaders[i]);
}

//m_EventsTypesSupported.assign(EventTypes,std::end(EventTypes));
//m_EventsTypeHeaders.assign(EventHeaders,std::end(EventHeaders));
}
/**get event type form its string representation*/
BoxControllerNxSIO::EventType BoxControllerNxSIO::TypeFromString(const std::vector<std::string> &typesSupported,const std::string typeName)
Expand Down

0 comments on commit 1bdc3d7

Please sign in to comment.