Changes in / [1f34dac:0e2f49b] in git
- Location:
- cards/CMS_PhaseII
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cards/CMS_PhaseII/CMS_PhaseII_0PU.tcl
r1f34dac r0e2f49b 21 21 22 22 ChargedHadronMomentumSmearing 23 Electron EnergySmearing23 ElectronMomentumSmearing 24 24 MuonMomentumSmearing 25 25 … … 168 168 } 169 169 170 ################################# 171 # Energy resolution for electrons 172 ################################# 173 174 module EnergySmearing ElectronEnergySmearing { 175 set InputArray ElectronTrackingEfficiency/electrons 170 ######################################## 171 # Momentum resolution for electrons 172 ######################################## 173 174 module MomentumSmearing ElectronMomentumSmearing { 175 ## hadrons after having applied the tracking efficiency 176 set InputArray ElectronTrackingEfficiency/electrons 176 177 set OutputArray electrons 177 178 # set ResolutionFormula {resolution formula as a function of eta and energy}179 180 178 # resolution formula for electrons 181 182 # taking something flat in energy for now, ECAL will take over at high energy anyway. 183 # inferred from hep-ex/1306.2016 and 1502.02701 184 set ResolutionFormula { 185 186 (abs(eta) <= 1.5) * (1+0.64*abs(eta)^2)*(energy*0.028) + 187 (abs(eta) > 1.5 && abs(eta) <= 1.75) * (energy*0.037) + 188 (abs(eta) > 1.75 && abs(eta) <= 2.15) * (energy*0.038) + 189 (abs(eta) > 2.15 && abs(eta) <= 3.00) * (energy*0.044) + 190 (abs(eta) > 3.00 && abs(eta) <= 4.00) * (energy*0.10)} 191 192 } 179 # from http://mersi.web.cern.ch/mersi/layouts/.private/Baseline_tilted_200_Pixel_1_1_1/index.html 180 source trackMomentumResolution.tcl 181 182 } 183 193 184 194 185 ############################### … … 215 206 # add InputArray InputArray 216 207 add InputArray ChargedHadronMomentumSmearing/chargedHadrons 217 add InputArray Electron EnergySmearing/electrons208 add InputArray ElectronMomentumSmearing/electrons 218 209 add InputArray MuonMomentumSmearing/muons 219 210 set OutputArray tracks … … 310 301 # set ResolutionFormula {resolution formula as a function of eta and energy} 311 302 312 # for the ECAL barrel (|eta| < 1.5), see hep-ex/1306.2016 and 1502.02701303 # for the ECAL barrel (|eta| < 1.5), see hep-ex/1306.2016. 313 304 # for the endcaps (1.5 < |eta| < 3.0), we take HGCAL see LHCC-P-008, Fig. 3.39, p.117 314 305 315 set ResolutionFormula { (abs(eta) <= 1.50) * (1+0.64*abs(eta)^2)*sqrt(energy^2*0.009^2 + energy*0.12^2 + 0.45^2) +306 set ResolutionFormula { (abs(eta) <= 1.50) * sqrt(energy^2*0.005^2 + energy*0.027^2 + 0.15^2) + \ 316 307 (abs(eta) > 1.50 && abs(eta) <= 1.75) * sqrt(energy^2*0.006^2 + energy*0.20^2) + \ 317 308 (abs(eta) > 1.75 && abs(eta) <= 2.15) * sqrt(energy^2*0.007^2 + energy*0.21^2) + \ 318 309 (abs(eta) > 2.15 && abs(eta) <= 3.00) * sqrt(energy^2*0.008^2 + energy*0.24^2) + \ 319 (abs(eta) >= 3.0 && abs(eta) <= 5.0) * sqrt(energy^2*0.08^2 + energy*1.98^2)} 310 (abs(eta) > 3.0 && abs(eta) <= 5.0) * sqrt(energy^2*0.08^2 + energy*1.98^2)} 311 320 312 } 321 313 -
cards/CMS_PhaseII/CMS_PhaseII_200PU.tcl
r1f34dac r0e2f49b 24 24 25 25 ChargedHadronMomentumSmearing 26 Electron EnergySmearing26 ElectronMomentumSmearing 27 27 MuonMomentumSmearing 28 28 … … 218 218 } 219 219 220 ################################# 221 # Energy resolution for electrons 222 ################################# 223 224 module EnergySmearing ElectronEnergySmearing { 225 set InputArray ElectronTrackingEfficiency/electrons 220 ######################################## 221 # Momentum resolution for electrons 222 ######################################## 223 224 module MomentumSmearing ElectronMomentumSmearing { 225 ## hadrons after having applied the tracking efficiency 226 set InputArray ElectronTrackingEfficiency/electrons 226 227 set OutputArray electrons 227 228 # set ResolutionFormula {resolution formula as a function of eta and energy}229 230 228 # resolution formula for electrons 231 232 # taking something flat in energy for now, ECAL will take over at high energy anyway. 233 # inferred from hep-ex/1306.2016 and 1502.02701 234 set ResolutionFormula { 235 236 (abs(eta) <= 1.5) * (1+0.64*abs(eta)^2)*(energy*0.028) + 237 (abs(eta) > 1.5 && abs(eta) <= 1.75) * (energy*0.037) + 238 (abs(eta) > 1.75 && abs(eta) <= 2.15) * (energy*0.038) + 239 (abs(eta) > 2.15 && abs(eta) <= 3.00) * (energy*0.044) + 240 (abs(eta) > 3.00 && abs(eta) <= 4.00) * (energy*0.10)} 241 242 } 229 # from http://mersi.web.cern.ch/mersi/layouts/.private/Baseline_tilted_200_Pixel_1_1_1/index.html 230 source trackMomentumResolution.tcl 231 232 } 233 243 234 244 235 ############################### … … 267 258 # add InputArray InputArray 268 259 add InputArray ChargedHadronMomentumSmearing/chargedHadrons 269 add InputArray Electron EnergySmearing/electrons260 add InputArray ElectronMomentumSmearing/electrons 270 261 add InputArray MuonMomentumSmearing/muons 271 262 set OutputArray tracks … … 362 353 # set ResolutionFormula {resolution formula as a function of eta and energy} 363 354 364 # for the ECAL barrel (|eta| < 1.5), see hep-ex/1306.2016 and 1502.02701355 # for the ECAL barrel (|eta| < 1.5), see hep-ex/1306.2016. 365 356 # for the endcaps (1.5 < |eta| < 3.0), we take HGCAL see LHCC-P-008, Fig. 3.39, p.117 366 357 367 set ResolutionFormula { (abs(eta) <= 1.50) * (1+0.64*abs(eta)^2)*sqrt(energy^2*0.009^2 + energy*0.12^2 + 0.45^2) +358 set ResolutionFormula { (abs(eta) <= 1.50) * sqrt(energy^2*0.005^2 + energy*0.027^2 + 0.15^2) + \ 368 359 (abs(eta) > 1.50 && abs(eta) <= 1.75) * sqrt(energy^2*0.006^2 + energy*0.20^2) + \ 369 360 (abs(eta) > 1.75 && abs(eta) <= 2.15) * sqrt(energy^2*0.007^2 + energy*0.21^2) + \ 370 361 (abs(eta) > 2.15 && abs(eta) <= 3.00) * sqrt(energy^2*0.008^2 + energy*0.24^2) + \ 371 (abs(eta) > = 3.0 && abs(eta) <= 5.0)* sqrt(energy^2*0.08^2 + energy*1.98^2)}362 (abs(eta) > 3.0 && abs(eta) <= 5.0) * sqrt(energy^2*0.08^2 + energy*1.98^2)} 372 363 373 364 }
Note:
See TracChangeset
for help on using the changeset viewer.