3 from Alignment.MuonAlignment.geometryXMLparser
import MuonGeometry, dtorder, cscorder
6 usage =
"Usage: geometryDiff.py [-h|--help] [-e|--epsilon epsilon] geometry1.xml geometry2.xml" 9 opts, args = getopt.getopt(sys.argv[1:],
"he:", [
"help",
"epsilon="])
10 except getopt.GetoptError
as msg:
11 print >>sys.stderr, usage
15 print >>sys.stderr, usage
20 if "-h" in opts
or "--help" in opts:
25 if "-e" in opts: epsilon =
float(opts[
"-e"])
26 if "--epsilon" in opts: epsilon =
float(opts[
"--epsilon"])
28 geom1 = MuonGeometry(
file(args[0]))
29 geom2 = MuonGeometry(
file(args[1]))
31 from math
import sin, cos, sqrt
32 sqrtepsilon =
sqrt(epsilon)
35 return [[sum([i*j
for i, j
in zip(row, col)])
for col
in zip(*b)]
for row
in a]
38 return [[a[j][i]
for j
in range(len(a[i]))]
for i
in range(len(a))]
41 phix, phiy, phiz = g.phix, g.phiy, g.phiz
42 rotX = [[1., 0., 0., ],
43 [0.,
cos(phix),
sin(phix),],
44 [0., -
sin(phix),
cos(phix),]]
45 rotY = [[
cos(phiy), 0., -
sin(phiy),],
47 [
sin(phiy), 0.,
cos(phiy),]]
48 rotZ = [[
cos(phiz),
sin(phiz), 0., ],
49 [-
sin(phiz),
cos(phiz), 0., ],
54 s1, s2, s3 =
sin(g.alpha),
sin(g.beta),
sin(g.gamma)
55 c1, c2, c3 =
cos(g.alpha),
cos(g.beta),
cos(g.gamma)
56 return [[c2 * c3, c1 * s3 + s1 * s2 * c3, s1 * s3 - c1 * s2 * c3,],
57 [-c2 * s3, c1 * c3 - s1 * s2 * s3, s1 * c3 + c1 * s2 * s3,],
58 [s2, -s1 * c2, c1 * c2, ]]
62 keys = geom1.dt.keys()
66 keys = geom1.csc.keys()
79 if g1.relativeto != g2.relativeto:
80 print "%s %s relativeto=\"%s\" versus relativeto=\"%s\"" % (which,
str(key), g1.relativeto, g2.relativeto)
82 if abs(g1.x - g2.x) > epsilon
or abs(g1.y - g2.y) > epsilon
or abs(g1.z - g2.z) > epsilon:
83 print "%s %s position difference: (%g, %g, %g) - (%g, %g, %g) = (%g, %g, %g)" % \
84 (which,
str(key), g1.x, g1.y, g1.z, g2.x, g2.y, g2.z, g1.x - g2.x, g1.y - g2.y, g1.z - g2.z)
86 if "phix" in g1.__dict__:
88 g1a, g1b, g1c = g1.phix, g1.phiy, g1.phiz
92 g1a, g1b, g1c = g1.alpha, g1.beta, g1.gamma
95 if "phix" in g2.__dict__:
97 g2a, g2b, g2c = g2.phix, g2.phiy, g2.phiz
101 g2a, g2b, g2c = g2.alpha, g2.beta, g2.gamma
105 if abs(diff[0][0] - 1.) > sqrtepsilon
or abs(diff[1][1] - 1.) > sqrtepsilon
or abs(diff[2][2] - 1.) > sqrtepsilon
or \
106 abs(diff[0][1]) > epsilon
or abs(diff[0][2]) > epsilon
or abs(diff[1][2]) > epsilon:
107 print "%s %s rotation difference: %s(%g, %g, %g) - %s(%g, %g, %g) = %s" % \
108 (which,
str(key), g1type, g1a, g1b, g1c, g2type, g2a, g2b, g2c,
str(diff))
Sin< T >::type sin(const T &t)
OutputIterator zip(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, OutputIterator result, Compare comp)
Cos< T >::type cos(const T &t)
Abs< T >::type abs(const T &t)