Changeset 1f34dac in git for cards/CMS_PhaseII/CMS_PhaseII_200PU.tcl
- Timestamp:
- May 17, 2016, 11:48:35 AM (9 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- b0fa9af
- Parents:
- 0e2f49b (diff), db7f5e4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cards/CMS_PhaseII/CMS_PhaseII_200PU.tcl
r0e2f49b r1f34dac 24 24 25 25 ChargedHadronMomentumSmearing 26 Electron MomentumSmearing26 ElectronEnergySmearing 27 27 MuonMomentumSmearing 28 28 … … 218 218 } 219 219 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 220 ################################# 221 # Energy resolution for electrons 222 ################################# 223 224 module EnergySmearing ElectronEnergySmearing { 225 set InputArray ElectronTrackingEfficiency/electrons 227 226 set OutputArray electrons 227 228 # set ResolutionFormula {resolution formula as a function of eta and energy} 229 228 230 # resolution formula for electrons 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 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 } 234 243 235 244 ############################### … … 258 267 # add InputArray InputArray 259 268 add InputArray ChargedHadronMomentumSmearing/chargedHadrons 260 add InputArray Electron MomentumSmearing/electrons269 add InputArray ElectronEnergySmearing/electrons 261 270 add InputArray MuonMomentumSmearing/muons 262 271 set OutputArray tracks … … 353 362 # set ResolutionFormula {resolution formula as a function of eta and energy} 354 363 355 # for the ECAL barrel (|eta| < 1.5), see hep-ex/1306.2016 .364 # for the ECAL barrel (|eta| < 1.5), see hep-ex/1306.2016 and 1502.02701 356 365 # for the endcaps (1.5 < |eta| < 3.0), we take HGCAL see LHCC-P-008, Fig. 3.39, p.117 357 366 358 set ResolutionFormula { (abs(eta) <= 1.50) * sqrt(energy^2*0.005^2 + energy*0.027^2 + 0.15^2) + \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) + 359 368 (abs(eta) > 1.50 && abs(eta) <= 1.75) * sqrt(energy^2*0.006^2 + energy*0.20^2) + \ 360 369 (abs(eta) > 1.75 && abs(eta) <= 2.15) * sqrt(energy^2*0.007^2 + energy*0.21^2) + \ 361 370 (abs(eta) > 2.15 && abs(eta) <= 3.00) * sqrt(energy^2*0.008^2 + energy*0.24^2) + \ 362 (abs(eta) > 3.0 && abs(eta) <= 5.0)* sqrt(energy^2*0.08^2 + energy*1.98^2)}371 (abs(eta) >= 3.0 && abs(eta) <= 5.0) * sqrt(energy^2*0.08^2 + energy*1.98^2)} 363 372 364 373 }
Note:
See TracChangeset
for help on using the changeset viewer.