Skip to content

Commit

Permalink
Refs #11006. Fixing determination of tetragonal crystal system
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Wedel committed Mar 2, 2015
1 parent abcd4bd commit 69521a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Geometry/src/Crystal/PointGroup.cpp
Expand Up @@ -156,7 +156,7 @@ PointGroup::CrystalSystem PointGroup::getCrystalSystemFromGroup() const {
return Trigonal;
}

if (symbolMap["4"].size() == 1) {
if (symbolMap["4"].size() == 1 || symbolMap["-4"].size() == 1) {
return Tetragonal;
}

Expand Down

0 comments on commit 69521a4

Please sign in to comment.