Fork me on GitHub

Changes between Version 19 and Version 20 of WorkBook/Tutorials/Mc4Bsm


Ignore:
Timestamp:
Jul 21, 2016, 4:29:38 AM (8 years ago)
Author:
Michele Selvaggi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkBook/Tutorials/Mc4Bsm

    v19 v20  
    169169}}}
    170170
    171 6. Now improve the calorimeter resolution in the card, both energy and angular resolutions (by a factor 20)
    172 {{{
     1716. Now create a copy of the existing CMS card:
     172{{{
     173cp cards/delphes_card_CMS.tcl cards/delphes_card_CMS_nc.tcl
     174}}}
     1757. Now edit "cards/delphes_card_CMS_nc.tcl" edit the copy to improve the calorimeter resolution, both energy and angular resolutions (by a factor 20) :
     176{{{
     177#############
     178# Calorimeter
     179#############
     180
     181...
     182
    173183set PhiBins {}
    174184  for {set i -360} {$i <= 360} {incr i} {
     
    182192  }
    183193
    184 
    185194 ...
    186195
    187   # set ECalResolutionFormula {resolution formula as a function of eta and energy}
    188   # Eta shape from arXiv:1306.2016, Energy shape from arXiv:1502.02701
     196 # Eta shape from arXiv:1306.2016, Energy shape from arXiv:1502.02701
    189197  set ECalResolutionFormula {                  (abs(eta) <= 1.5) *0.05*(1+0.64*eta^2) * sqrt(energy^2*0.008^2 + energy*0.11^2 + 0.40^2) +
    190198                             (abs(eta) > 1.5 && abs(eta) <= 2.5) *0.05* (2.16 + 5.6*(abs(eta)-2)^2) * sqrt(energy^2*0.008^2 + energy*0.11^2 + 0.40^2) +
    191199                             (abs(eta) > 2.5 && abs(eta) <= 5.0) *0.05* sqrt(energy^2*0.107^2 + energy*2.08^2)}
    192200
     201# set HCalResolutionFormula {resolution formula as a function of eta and energy}
     202  set HCalResolutionFormula {                  (abs(eta) <= 3.0) *0.05 sqrt(energy^2*0.050^2 + energy*1.50^2) +
     203                             (abs(eta) > 3.0 && abs(eta) <= 5.0) * 0.05* sqrt(energy^2*0.130^2 + energy*2.70^2)}
    193204
    194205}}}