Fork me on GitHub

Changeset 2b1e147 in git


Ignore:
Timestamp:
Oct 4, 2016, 5:46:40 PM (8 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
2dfc52a
Parents:
bdcf74c
Message:

allow for reconstructing lower energy photons in FCC card

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cards/FCC/FCChh.tcl

    rbdcf74c r2b1e147  
    549549
    550550  set EfficiencyFormula {
    551   (pt <= 10.0) * (0.00) + \
    552   (abs(eta) <= 1.5) * (pt > 10.0)  * (0.95) + \
    553   (abs(eta) > 1.5 && abs(eta) <= 4.0) * (pt > 10.0)  * (0.90) + \
    554   (abs(eta) > 4.0 && abs(eta) <= 6.0) * (pt > 10.0)  * (0.80) + \
     551  (pt <= 1.0) * (0.00) + \
     552  (abs(eta) <= 1.5) * (pt > 1.0 && pt < 5.0)  * (0.70) +
     553  (abs(eta) <= 1.5) * (pt > 5.0 && pt < 10.0) * (0.85) +
     554  (abs(eta) <= 1.5) * (pt > 10.0)             * (0.95) +
     555   
     556  (abs(eta) > 1.5 && abs(eta) <= 4.0) * (pt > 1.0 && pt < 5.0)  * (0.60) +
     557  (abs(eta) > 1.5 && abs(eta) <= 4.0) * (pt > 5.0 && pt < 10.0) * (0.80) +
     558  (abs(eta) > 1.5 && abs(eta) <= 4.0) * (pt > 10.0)             * (0.90) +   
     559 
     560  (abs(eta) > 4.0 && abs(eta) <= 6.0) * (pt > 1.0 && pt < 5.0)  * (0.50) + \
     561  (abs(eta) > 4.0 && abs(eta) <= 6.0) * (pt > 5.0 && pt < 10.0) * (0.70) + \
     562  (abs(eta) > 4.0 && abs(eta) <= 6.0) * (pt > 10.0)             * (0.80) + \
    555563  (abs(eta) > 6.0) * (0.00)}
    556564
Note: See TracChangeset for help on using the changeset viewer.