Fork me on GitHub

Changeset 283bed1 in git for cards


Ignore:
Timestamp:
Feb 1, 2018, 11:56:05 AM (7 years ago)
Author:
Ulrike Schnoor <schnooru@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
41a92e8
Parents:
0788cd8
Message:

fixed electron, photon and muon efficiencies for low energy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cards/delphes_card_CLICdet.tcl

    r0788cd8 r283bed1  
    460460    # set ECalResolutionFormula {resolution formula as a function of eta and energy}
    461461    # not from CLICdet
    462     set ResolutionFormula { (abs(eta) <= 3.0)                   * sqrt(energy^2*0.01^2 + energy*0.15^2) }
    463 
     462    #set ResolutionFormula { (abs(eta) <= 3.0)                   * sqrt(energy^2*0.01^2 + energy*0.15^2) }
     463    set ResolutionFormula { (abs(eta) <= 0.78)                   * sqrt(energy^2*0.009^2 + energy*0.156^2)+
     464        (abs(eta) > 0.78 && abs(eta) <=0.83 ) * sqrt( energy^2*2e-7^2 + energy*0.175^2  ) +
     465        (abs(eta) <= 3 && abs(eta) > 0.83) * sqrt( energy^2*0.0057^2 + energy*0.151^2  )}
    464466}
    465467
     
    620622    # efficiency formula for photons
    621623    # current full simulation of CLICdet yields:
    622         set EfficiencyFormula {(abs(eta) < 0.7)*(0.94) + (abs(eta) >=0.7 && abs(eta) <=3.0) * (0.9)     }
     624    set EfficiencyFormula {
     625        (energy < 2.0 ) * (0.000) +
     626        (energy >= 2.0) * (abs(eta) < 0.7)*(0.94) +
     627        (energy >= 2.0) * (abs(eta) >=0.7 && abs(eta) <=3.0) * (0.9)    }
    623628
    624629}
     
    650655
    651656    # set EfficiencyFormula {efficiency formula as a function of eta and pt}
    652         set EfficiencyFormula {(abs( eta)<0.7 )*(  0.89)+
    653                 (abs(eta) > 0.7 && abs(eta) < 3)*( 0.8)}
    654 
    655     # efficiency formula for electrons
    656 #    set EfficiencyFormula {                                      (pt <= 10.0) * (0.00) +
    657 #       (abs(eta) <= 1.5) * (pt > 10.0)  * (0.95) +
    658 #       (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 10.0)  * (0.95) +
    659 #       (abs(eta) > 2.5)                                   * (0.00)}
     657    set EfficiencyFormula {
     658        (energy < 2.0 ) * (0.000) +
     659        (energy >= 2.0) * (abs( eta)<0.7 )*(  0.89)+
     660        (energy >= 2.0) * (abs(eta) > 0.7 && abs(eta) < 3)*( 0.8)}
     661
     662   
    660663}
    661664
     
    689692    # efficiency formula for muons
    690693    # current full simulation of CLICdet yields:
    691         set EfficiencyFormula {(energy  < 50 )*(0.98) + (energy>=50) *(0.999)}
     694    set EfficiencyFormula {
     695        (energy < 2.0 ) * (0.000) +
     696        (energy  < 50 && energy >=2.0 )*(0.98) + (energy>=50) *(0.999)}
    692697}
    693698
Note: See TracChangeset for help on using the changeset viewer.