mantidproject / mantid

Main repository for Mantid code
https://www.mantidproject.org
GNU General Public License v3.0
210 stars 122 forks source link

Adjust HET IDF defaults #8602

Closed Anders-Markvardsen closed 9 years ago

Anders-Markvardsen commented 11 years ago

A default is currently:

<defaults>

<location x="0.0" y="0.0" z="0.0" type="quaternion" rot="0.0" 
                  axis-x="0.0" axis-y="0.0" axis-z="1.0"/>

</defaults>

This default happens to be for information only. However the syntax for this location tag should still be according to how a location element is otherwise defined, i.e. type is not a valid attribute for location.

Hence change the above to

<defaults>

<location x="0.0" y="0.0" z="0.0" rot="0.0" 
                  axis-x="0.0" axis-y="0.0" axis-z="1.0"/>

</defaults>

A new schema is in the process of being created by Mike Thomas

Anders-Markvardsen commented 9 years ago

This issue was originally trac ticket 7757