114 def draw_disk(geom1, geom2, endcap, station, filename, length_factor=1., angle_factor=100., colors=csc_colors):
115 if station == 1: disk_template = load_svg(
"disk1_template.svg")
116 if station
in (2, 3): disk_template = load_svg(
"disk23_template.svg")
117 if endcap == 1
and station == 4: disk_template = load_svg(
"diskp4_template.svg")
118 if endcap == 2
and station == 4: disk_template = load_svg(
"diskm4_template.svg")
124 for treeindex, svgitem
in disk_template:
125 if isinstance(svgitem, SVG)
and "id" in svgitem.attr
and svgitem[
"id"] ==
"fakecenter":
130 for i, di
in enumerate(fakecenter.d):
131 if di[0]
in (
"M",
"L"):
138 for treeindex, svgitem
in disk_template:
139 if isinstance(svgitem, SVG)
and "id" in svgitem.attr
and svgitem[
"id"][:3] ==
"ME_":
140 m = re.match(
"ME_([0-9]+)_([0-9]+)", svgitem[
"id"])
141 if m
is None:
raise Exception
143 ring, chamber = int(m.group(1)), int(m.group(2))
144 xdiff = scale_factor * length_factor * (geom1.csc[endcap, station, ring, chamber].x - geom2.csc[endcap, station, ring, chamber].x) * signConventions[
"CSC", endcap, station, ring, chamber][0]
145 ydiff = -scale_factor * length_factor * (geom1.csc[endcap, station, ring, chamber].y - geom2.csc[endcap, station, ring, chamber].y) * signConventions[
"CSC", endcap, station, ring, chamber][1]
146 phizdiff = -angle_factor * (geom1.csc[endcap, station, ring, chamber].phiz - geom2.csc[endcap, station, ring, chamber].phiz) * signConventions[
"CSC", endcap, station, ring, chamber][2]
148 svgitem[
"style"] =
"fill:#e1e1e1;fill-opacity:1;stroke:#000000;stroke-width:1.0;stroke-dasharray:1, 1;stroke-dashoffset:0"
154 for i, di
in enumerate(newBox.d):
155 if not first
and di[0] ==
"m":
158 newBox.d[i] = tuple(di)
168 for i, di
in enumerate(newBox.d):
176 phipos = atan2(centery - originy, centerx - originx) - pi/2.
177 for i, di
in enumerate(newBox.d):
178 if di[0]
in (
"M",
"L"):
180 di[1] +=
cos(phipos)*xdiff -
sin(phipos)*ydiff
181 di[2] +=
sin(phipos)*xdiff +
cos(phipos)*ydiff
182 newBox.d[i] = tuple(di)
184 centerx +=
cos(phipos)*xdiff -
sin(phipos)*ydiff
185 centery +=
sin(phipos)*xdiff +
cos(phipos)*ydiff
187 for i, di
in enumerate(newBox.d):
188 if di[0]
in (
"M",
"L"):
190 dispx =
cos(phizdiff) * (di[1] - centerx) -
sin(phizdiff) * (di[2] - centery)
191 dispy =
sin(phizdiff) * (di[1] - centerx) +
cos(phizdiff) * (di[2] - centery)
192 di[1] = dispx + centerx
193 di[2] = dispy + centery
194 newBox.d[i] = tuple(di)
196 newBox = newBox.SVG()
197 newBox[
"style"] =
"fill:%s;fill-opacity:0.5;stroke:#000000;stroke-width:1.0;stroke-opacity:1;stroke-dasharray:none" %
colors(endcap, station, ring, chamber)
198 newBox[
"id"] = newBox[
"id"] +
"_moved"
200 new_boxes.append(newBox)
202 for treeindex, svgitem
in disk_template:
203 if isinstance(svgitem, SVG)
and svgitem.t ==
"g" and "id" in svgitem.attr
and svgitem[
"id"] ==
"chambers":
204 svgitem.append(new_boxes)
206 elif isinstance(svgitem, SVG)
and "id" in svgitem.attr
and svgitem[
"id"] ==
"diskx":
207 if endcap == 1: svgitem[0] =
"Disk %+d" % station
208 else: svgitem[0] =
"Disk %+d" % (-station)
209 svgitem[0] +=
" (length x%g, angle x%g)" % (length_factor, angle_factor)
211 disk_template.save(filename)
Sin< T >::type sin(const T &t)
std::vector< Color_t > colors
Cos< T >::type cos(const T &t)
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run