|
| 1 | +%YAML 1.2 |
| 2 | +--- |
| 3 | +# Each collimator is a dictionary, with the following set of keys: |
| 4 | +# required keys: |
| 5 | +# gap [sigma], length [m], angle [deg], material [BE/AL/CU/W/PB/C/C2/Si/Ge/MoGR/CuCD/Mo/Glid/Iner/VA/BL], stage |
| 6 | +# (a gap equal to 'null' disables the collimator from tracking) |
| 7 | +# optional keys: |
| 8 | +# offset [m], side [left/right], tilt [deg] (or tilt_left and tilt_right if different for each jaw) |
| 9 | +# special keys: |
| 10 | +# active [bool] : Whether or not a collimator is still active in operation. If false, the gap is set to null. |
| 11 | +# The difference with just manually setting the gap to 'null' is mainly semantic: these are collimators that are in principle no longer used but still present in the machine. |
| 12 | +# crystal [strip/quasi-mosaic] : Use when the collimator is a crystal of the specified type. |
| 13 | +# It allows for some extra keys: bend [m], xdim [m], ydim [m], miscut [deg], thick [m] (the thickness of the amorphous layer) |
| 14 | +# |
| 15 | +# For ease of use, the collimators can be collected in families using standard YAML syntax. |
| 16 | +# Each family contains the keys for which all members have the same value (though keys can be overwritten again in the individual collimators). |
| 17 | +# |
| 18 | +# YAML syntax refresher: |
| 19 | +# - indentation matters (spaces, no tabs) |
| 20 | +# - comments are preceded with # |
| 21 | +# - lists are represented by one item per line preceded with a dash, or in inline format as [ , ... ] |
| 22 | +# - dictoraries are represented by one "key : value" per line, or in inline format as { key : value , ... } |
| 23 | +# - the & represents a unique name tag |
| 24 | +# - the * dereferences the named element |
| 25 | +# - the merge operator << merges the subsequent element with the surrounding container (giving higher priority to the other elements in the container than those in the merged element, as to allow overwriting) |
| 26 | +All: |
| 27 | + - &ALL { parking: 0.025 } |
| 28 | + |
| 29 | +families: |
| 30 | + # Momentum cleaning |
| 31 | + - &TCP3 { <<: *ALL, gap: 15, stage: primary, material: C, length: 0.6 } |
| 32 | + - &TCSG3 { <<: *ALL, gap: 18, stage: secondary, material: C, length: 1 } |
| 33 | + - &TCLA3 { <<: *ALL, gap: 20, stage: tertiary, material: Iner, length: 1 } |
| 34 | + # Betatron cleaning |
| 35 | + - &TCP7 { <<: *ALL, gap: 6, stage: primary, material: C, length: 0.6 } |
| 36 | + - &TCSG7 { <<: *ALL, gap: 6.5, stage: secondary, material: C, length: 1 } |
| 37 | + - &TCLA7 { <<: *ALL, gap: 8, stage: tertiary, material: Iner, length: 1 } |
| 38 | + - &CRY7 { <<: *ALL, gap: null, stage: special, material: Si, length: 0.004, side: left, crystal: strip, active: false } |
| 39 | + # Injection protection |
| 40 | + - &TCLI { <<: *ALL, gap: null, stage: tertiary, material: C, length: 1, angle: 90 } |
| 41 | + - &TDI { <<: *ALL, gap: null, stage: tertiary, material: CU, length: 1.565, angle: 90 } |
| 42 | + # Dump protection |
| 43 | + - &TCDQ { <<: *ALL, gap: 7.3, stage: tertiary, material: C, length: 3, angle: 0, side: left } |
| 44 | + - &TCSP { <<: *ALL, gap: 7.3, stage: secondary, material: C, length: 1, angle: 0 } |
| 45 | + # Physics background minimalisation |
| 46 | + - &TCT15 { <<: *ALL, gap: 9.5, stage: tertiary, material: Iner, length: 1, parking: 0.020 } |
| 47 | + - &TCT2 { <<: *ALL, gap: 37, stage: tertiary, material: Iner, length: 1, } |
| 48 | + - &TCT8 { <<: *ALL, gap: 11.5, stage: tertiary, material: Iner, length: 1, } |
| 49 | + # Physics debris |
| 50 | + - &TCL4 { <<: *ALL, gap: 17, stage: tertiary, material: CU, length: 1, angle: 0} |
| 51 | + - &TCL5 { <<: *ALL, gap: 42, stage: tertiary, material: CU, length: 1, angle: 0} |
| 52 | + - &TCL6 { <<: *ALL, gap: 20, stage: tertiary, material: Iner, length: 1, angle: 0} |
| 53 | + # Physics debris in ALICE (only for ions) |
| 54 | + - &TCLD { <<: *ALL, gap: null, stage: tertiary, material: Iner, length: 0.6, angle: 0} |
| 55 | + |
| 56 | +emittance: |
| 57 | + x: 3.5e-6 |
| 58 | + y: 3.5e-6 |
| 59 | + |
| 60 | +collimators: |
| 61 | + b1: |
| 62 | + tcl.4r1.b1: { <<: *TCL4 } |
| 63 | + tcl.5r1.b1: { <<: *TCL5 } |
| 64 | + tcl.6r1.b1: { <<: *TCL6 } |
| 65 | + tctph.4l2.b1: { <<: *TCT2, angle: 0 } |
| 66 | + tctpv.4l2.b1: { <<: *TCT2, angle: 90 } |
| 67 | + tdisa.a4l2.b1: { <<: *TDI } |
| 68 | + tdisb.a4l2.b1: { <<: *TDI } |
| 69 | + tdisc.a4l2.b1: { <<: *TDI } |
| 70 | + tclia.4r2: { <<: *TCLI } |
| 71 | + tclib.6r2.b1: { <<: *TCLI } |
| 72 | + tcld.a11r2.b1: { <<: *TCLD } |
| 73 | + tcp.6l3.b1: { <<: *TCP3, angle: 0 } |
| 74 | + tcsg.5l3.b1: { <<: *TCSG3, angle: 0 } |
| 75 | + tcsg.4r3.b1: { <<: *TCSG3, angle: 0 } |
| 76 | + tcsg.a5r3.b1: { <<: *TCSG3, angle: 170.7 } |
| 77 | + tcsg.b5r3.b1: { <<: *TCSG3, angle: 10.8 } |
| 78 | + tcla.a5r3.b1: { <<: *TCLA3, angle: 90 } |
| 79 | + tcla.b5r3.b1: { <<: *TCLA3, angle: 0 } |
| 80 | + tcla.6r3.b1: { <<: *TCLA3, angle: 0 } |
| 81 | + tcla.7r3.b1: { <<: *TCLA3, angle: 0 } |
| 82 | + tctph.4l5.b1: { <<: *TCT15, angle: 0 } |
| 83 | + tctpv.4l5.b1: { <<: *TCT15, angle: 90 } |
| 84 | + tcl.4r5.b1: { <<: *TCL4, } |
| 85 | + tcl.5r5.b1: { <<: *TCL5, } |
| 86 | + tcl.6r5.b1: { <<: *TCL6, } |
| 87 | + tcdqa.a4r6.b1: { <<: *TCDQ } |
| 88 | + tcdqa.c4r6.b1: { <<: *TCDQ } |
| 89 | + tcdqa.b4r6.b1: { <<: *TCDQ } |
| 90 | + tcsp.a4r6.b1: { <<: *TCSP } |
| 91 | + tcp.d6l7.b1: { <<: *TCP7, angle: 90, material: MoGR } |
| 92 | + tcp.c6l7.b1: { <<: *TCP7, angle: 0, material: MoGR } |
| 93 | + tcp.b6l7.b1: { <<: *TCP7, angle: 127.5 } |
| 94 | + tcsg.a6l7.b1: { <<: *TCSG7, angle: 141.1 } |
| 95 | + tcpcv.a6l7.b1: { <<: *CRY7, angle: 90, bending_radius: 85.10, xdim: 5.0e-3, ydim: 30.0e-3 } |
| 96 | + tcsg.b5l7.b1: { <<: *TCSG7, angle: 143.5 } |
| 97 | + tcsg.a5l7.b1: { <<: *TCSG7, angle: 40.7 } |
| 98 | + tcsg.d4l7.b1: { <<: *TCSG7, angle: 90, material: MoGR } |
| 99 | + tcpch.a4l7.b1: { <<: *CRY7, angle: 0, bending_radius: 61.54, xdim: 2.0e-3, ydim: 50.0e-3 } |
| 100 | + tcsg.b4l7.b1: { <<: *TCSG7, angle: 0, active: false } |
| 101 | + tcspm.b4l7.b1: { <<: *TCSG7, angle: 0, material: MoGR } |
| 102 | + tcsg.a4l7.b1: { <<: *TCSG7, angle: 134.6 } |
| 103 | + tcsg.a4r7.b1: { <<: *TCSG7, angle: 46.3 } |
| 104 | + tcsg.b5r7.b1: { <<: *TCSG7, angle: 141.5 } |
| 105 | + tcsg.d5r7.b1: { <<: *TCSG7, angle: 51.4 } |
| 106 | + tcsg.e5r7.b1: { <<: *TCSG7, angle: 130.5, active: false } |
| 107 | + tcspm.e5r7.b1: { <<: *TCSG7, angle: 130.5, material: MoGR } |
| 108 | + tcsg.6r7.b1: { <<: *TCSG7, angle: 0.5, active: false } |
| 109 | + tcspm.6r7.b1: { <<: *TCSG7, angle: 0.5, material: MoGR } |
| 110 | + tcla.a6r7.b1: { <<: *TCLA7, angle: 90 } |
| 111 | + tcla.b6r7.b1: { <<: *TCLA7, angle: 0 } |
| 112 | + tcla.c6r7.b1: { <<: *TCLA7, angle: 90 } |
| 113 | + tcla.d6r7.b1: { <<: *TCLA7, angle: 0 } |
| 114 | + tcla.a7r7.b1: { <<: *TCLA7, angle: 0 } |
| 115 | + tctph.4l8.b1: { <<: *TCT8, angle: 0 } |
| 116 | + tctpv.4l8.b1: { <<: *TCT8, angle: 90 } |
| 117 | + tctph.4l1.b1: { <<: *TCT15, angle: 0 } |
| 118 | + tctpv.4l1.b1: { <<: *TCT15, angle: 90 } |
| 119 | + |
| 120 | + b2: |
| 121 | + tcl.4l1.b2: { <<: *TCL4 } |
| 122 | + tcl.5l1.b2: { <<: *TCL5 } |
| 123 | + tcl.6l1.b2: { <<: *TCL6 } |
| 124 | + tctph.4r8.b2: { <<: *TCT8, angle: 0 } |
| 125 | + tctpv.4r8.b2: { <<: *TCT8, angle: 90 } |
| 126 | + tdisa.a4r8.b2: { <<: *TDI } |
| 127 | + tdisb.a4r8.b2: { <<: *TDI } |
| 128 | + tdisc.a4r8.b2: { <<: *TDI } |
| 129 | + tclia.4l8: { <<: *TCLI } |
| 130 | + tclib.6l8.b2: { <<: *TCLI } |
| 131 | + tcp.d6r7.b2: { <<: *TCP7, angle: 90, material: MoGR } |
| 132 | + tcp.c6r7.b2: { <<: *TCP7, angle: 0, material: MoGR } |
| 133 | + tcp.b6r7.b2: { <<: *TCP7, angle: 127.5 } |
| 134 | + tcsg.a6r7.b2: { <<: *TCSG7, angle: 141.1 } |
| 135 | + tcpcv.a6r7.b2: { <<: *CRY7, angle: 90, bending_radius: 74.88, xdim: 5.0e-3, ydim: 30.0e-3 } |
| 136 | + tcsg.b5r7.b2: { <<: *TCSG7, angle: 143.5 } |
| 137 | + tcsg.a5r7.b2: { <<: *TCSG7, angle: 40.7 } |
| 138 | + tcpch.a5r7.b2: { <<: *CRY7, angle: 0, bending_radius: 80.00, xdim: 2.0e-3, ydim: 50.0e-3 } |
| 139 | + tcsg.d4r7.b2: { <<: *TCSG7, angle: 90, material: MoGR } |
| 140 | + tcspm.d4r7.b2: { <<: *TCSG7, angle: 90, material: MoGR, active: false } # prototype |
| 141 | + tcsg.b4r7.b2: { <<: *TCSG7, angle: 0, active: false } |
| 142 | + tcspm.b4r7.b2: { <<: *TCSG7, angle: 0, material: MoGR } |
| 143 | + tcsg.a4r7.b2: { <<: *TCSG7, angle: 134.6 } |
| 144 | + tcsg.a4l7.b2: { <<: *TCSG7, angle: 46.3 } |
| 145 | + tcsg.b5l7.b2: { <<: *TCSG7, angle: 141.5 } |
| 146 | + tcsg.d5l7.b2: { <<: *TCSG7, angle: 51.4 } |
| 147 | + tcsg.e5l7.b2: { <<: *TCSG7, angle: 130.5, active: false } |
| 148 | + tcspm.e5l7.b2: { <<: *TCSG7, angle: 130.5, material: MoGR } |
| 149 | + tcsg.6l7.b2: { <<: *TCSG7, angle: 0.5, active: false } |
| 150 | + tcspm.6l7.b2: { <<: *TCSG7, angle: 0.5, material: MoGR } |
| 151 | + tcla.a6l7.b2: { <<: *TCLA7, angle: 90 } |
| 152 | + tcla.b6l7.b2: { <<: *TCLA7, angle: 0 } |
| 153 | + tcla.c6l7.b2: { <<: *TCLA7, angle: 90 } |
| 154 | + tcla.d6l7.b2: { <<: *TCLA7, angle: 0 } |
| 155 | + tcla.a7l7.b2: { <<: *TCLA7, angle: 0 } |
| 156 | + tcdqa.a4l6.b2: { <<: *TCDQ } |
| 157 | + tcdqa.c4l6.b2: { <<: *TCDQ } |
| 158 | + tcdqa.b4l6.b2: { <<: *TCDQ } |
| 159 | + tcsp.a4l6.b2: { <<: *TCSP } |
| 160 | + tctph.4r5.b2: { <<: *TCT15, angle: 0 } |
| 161 | + tctpv.4r5.b2: { <<: *TCT15, angle: 90 } |
| 162 | + tcl.4l5.b2: { <<: *TCL4 } |
| 163 | + tcl.5l5.b2: { <<: *TCL5 } |
| 164 | + tcl.6l5.b2: { <<: *TCL6 } |
| 165 | + tcp.6r3.b2: { <<: *TCP3, angle: 0 } |
| 166 | + tcsg.5r3.b2: { <<: *TCSG3, angle: 0 } |
| 167 | + tcsg.4l3.b2: { <<: *TCSG3, angle: 0 } |
| 168 | + tcsg.a5l3.b2: { <<: *TCSG3, angle: 170.7 } |
| 169 | + tcsg.b5l3.b2: { <<: *TCSG3, angle: 10.8 } |
| 170 | + tcla.a5l3.b2: { <<: *TCLA3, angle: 90 } |
| 171 | + tcla.b5l3.b2: { <<: *TCLA3, angle: 0 } |
| 172 | + tcla.6l3.b2: { <<: *TCLA3, angle: 0 } |
| 173 | + tcla.7l3.b2: { <<: *TCLA3, angle: 0 } |
| 174 | + tctph.4r2.b2: { <<: *TCT2, angle: 0 } |
| 175 | + tctpv.4r2.b2: { <<: *TCT2, angle: 90 } |
| 176 | + tcld.a11l2.b2: { <<: *TCLD } |
| 177 | + tctph.4r1.b2: { <<: *TCT15, angle: 0 } |
| 178 | + tctpv.4r1.b2: { <<: *TCT15, angle: 90 } |
| 179 | + |
0 commit comments