CMS 3D CMS Logo

relativeConstraints.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 
3 from __future__ import print_function
4 import sys, optparse, re, math
5 from Alignment.MuonAlignment.geometryXMLparser import MuonGeometry
6 
7 usage = """./%prog GeomGlobal.xml AbsConstrints.[phiy|phipos|phiz] frameName
8 
9 Calculates constraints from AbsConstraints relative to GeomGlobal for
10 use in CSCOverlapsAlignmentAlgorithm. Assumes that constraints (including
11 chamber names) are properly formatted.
12 
13 GeomGlobal CSC geometry represented as a relativeto="none" XML file
14  (standard format--- must be MuonGeometryDBConverter output)
15 AbsConstrints text file listing absolute phiy, phipos, or phiz constraints
16  as "chambername measuredvalue uncertainty"
17 frameName name of coordinate system frame (all constraints are
18  relative to this coordinate system"""
19 
20 parser = optparse.OptionParser(usage)
21 parser.add_option("--scaleErrors",
22  help="factor to scale errors: 1 is default, 10 *weakens* constraint by a factor of 10, etc.",
23  type="string",
24  default=1,
25  dest="scaleErrors")
26 parser.add_option("--disks",
27  help="align whole disks, rather than individual rings",
28  action="store_true",
29  dest="disks")
30 
31 if len(sys.argv) < 4:
32  raise SystemError("Too few arguments.\n\n"+parser.format_help())
33 
34 if sys.argv[2][-5:] == ".phiy": mode = "phiy"
35 elif sys.argv[2][-7:] == ".phipos": mode = "phipos"
36 elif sys.argv[2][-5:] == ".phiz": mode = "phiz"
37 else: raise Exception
38 
39 geometry = MuonGeometry(sys.argv[1])
40 constraints = file(sys.argv[2])
41 frameName = sys.argv[3]
42 
43 options, args = parser.parse_args(sys.argv[4:])
44 options.scaleErrors = float(options.scaleErrors)
45 
46 empty = True
47 byRing = {"ME+1/1": [], "ME+1/2": [], "ME+2/1": [], "ME+2/2": [], "ME+3/1": [], "ME+3/2": [], "ME+4/1": [], "ME+4/2": [], "ME-1/1": [], "ME-1/2": [], "ME-2/1": [], "ME-2/2": [], "ME-3/1": [], "ME-3/2": [], "ME-4/1": [], "ME-4/2": []}
48 if options.disks: byRing = {"ME+1/1": [], "YE+1": [], "YE+2": [], "ME+4/1": [], "ME+4/2": [], "ME-1/1": [], "YE-1": [], "YE-2": [], "ME-4/1": [], "ME-4/2": []}
49 
50 for line in constraints.readlines():
51  match = re.match(r"(ME[\+\-/0-9]+)\s+([\+\-\.eE0-9]+)\s+([\+\-\.eE0-9]+)", line)
52  if match is not None:
53  chamber, value, error = match.groups()
54  ringName = chamber[0:6]
55  value = float(value)
56  error = float(error) * options.scaleErrors
57 
58  if options.disks:
59  if ringName in ("ME+1/2", "ME+1/3"): ringName = "YE+1"
60  elif ringName in ("ME+2/1", "ME+2/2", "ME+3/1", "ME+3/2"): ringName = "YE+2"
61  elif ringName in ("ME-1/2", "ME-1/3"): ringName = "YE-1"
62  elif ringName in ("ME-2/1", "ME-2/2", "ME-3/1", "ME-3/2"): ringName = "YE-2"
63 
64  if chamber[2] == "+": endcap = 1
65  elif chamber[2] == "-": endcap = 2
66  else: raise Exception
67  station = int(chamber[3])
68  ring = int(chamber[5])
69  cham = int(chamber[7:9])
70 
71  if mode == "phiy":
72  geom = geometry.csc[endcap, station, ring, cham].phiy
73  elif mode == "phipos":
74  geom = math.atan2(geometry.csc[endcap, station, ring, cham].y, geometry.csc[endcap, station, ring, cham].x)
75  elif mode == "phiz":
76  geom = geometry.csc[endcap, station, ring, cham].phiz
77 
78  relative = value - geom
79 
80  if mode in ("phiy", "phipos", "phiz"):
81  while relative > math.pi: relative -= 2.*math.pi
82  while relative <= -math.pi: relative += 2.*math.pi
83 
84  if ringName in byRing:
85  byRing[ringName].append("""cms.PSet(i = cms.string("%(frameName)s"), j = cms.string("%(chamber)s"), value = cms.double(%(relative)g), error = cms.double(%(error)g))""" % vars())
86  empty = False
87 
88 if not empty:
89  keys = sorted(byRing.keys())
90  print("for fitter in process.looper.algoConfig.fitters:")
91  for ringName in keys:
92  if len(byRing[ringName]) > 0:
93  print(" if fitter.name.value() == \"%(ringName)s\":" % vars())
94  print(" fitter.alignables.append(\"%(frameName)s\")" % vars())
95  for line in byRing[ringName]:
96  print(" fitter.constraints.append(%(line)s)" % vars())
dqmMemoryStats.float
float
Definition: dqmMemoryStats.py:127
geometryDiff.file
file
Definition: geometryDiff.py:13
print
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:46
mps_setup.append
append
Definition: mps_setup.py:85
createfilelist.int
int
Definition: createfilelist.py:10