Skip to content
Snippets Groups Projects
Commit 593e0474 authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'align.InDetPrepRawData-20190308' into 'master'

InDetPrepRawData: Fix alignment of eigen objects for cling,

See merge request atlas/athena!21751
parents 03990224 383ba9ed
No related branches found
No related tags found
No related merge requests found
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
/////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////
...@@ -96,8 +96,9 @@ namespace InDet { ...@@ -96,8 +96,9 @@ namespace InDet {
// Private data: // Private data:
/////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////
private: private:
Amg::Vector2D m_colrow;//<col, row> // Need to force proper alignment; otherwise cling gets it wrong.
Amg::Vector2D m_phirzWidth; alignas(16) Amg::Vector2D m_colrow;//<col, row>
alignas(16) Amg::Vector2D m_phirzWidth;
}; };
MsgStream& operator << (MsgStream& stream, const SiWidth& prd); MsgStream& operator << (MsgStream& stream, const SiWidth& prd);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment