Fork me on GitHub

Changeset a3784f9 in git for cards/delphes_card_IDEA.tcl


Ignore:
Timestamp:
Oct 15, 2021, 11:55:33 AM (3 years ago)
Author:
michele <michele.selvaggi@…>
Branches:
master
Children:
26a21bd
Parents:
10c0ebe
Message:

fixed IDEA tracking acceptance

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cards/delphes_card_IDEA.tcl

    r10c0ebe ra3784f9  
    122122
    123123    # We use only one efficiency, we set only 0 effincency out of eta bounds:
    124 
    125124    set EfficiencyFormula {
    126         (abs(eta) > 3.0)                                       * (0.000) +
    127         (pt >= 0.5) * (abs(eta) <= 3.0)                    * (0.997) +
    128         (pt < 0.5 && pt >= 0.3) * (abs(eta) <= 3.0)    * (0.65) +
    129         (pt < 0.3) * (abs(eta) <= 3.0)                     * (0.06)
     125        (abs(eta) > 2.56)                                  * (0.000) +
     126        (pt < 0.1) * (abs(eta) <= 2.56)                    * (0.000)
     127        (pt >= 0.1) * (abs(eta) <= 2.56)                   * (1.000)
    130128    }
    131129}
     
    144142    # Current full simulation with CLICdet provides for electrons:
    145143    set EfficiencyFormula {
    146         (abs(eta) > 3.0)                                       * (0.000) +
    147         (pt >= 0.5) * (abs(eta) <= 3.0)                    * (0.997) +
    148         (pt < 0.5 && pt >= 0.3) * (abs(eta) <= 3.0)    * (0.65) +
    149         (pt < 0.3) * (abs(eta) <= 3.0)                     * (0.06)
     144        (abs(eta) > 2.56)                                  * (0.000) +
     145        (pt < 0.1) * (abs(eta) <= 2.56)                    * (0.000)
     146        (pt >= 0.1) * (abs(eta) <= 2.56)                   * (1.000)
    150147    }
    151148}
     
    163160    # Current full simulation with CLICdet provides for muons:
    164161    set EfficiencyFormula {
    165         (abs(eta) > 3.0)                                       * (0.000) +
    166         (pt >= 0.5) * (abs(eta) <= 3.0)                    * (0.997) +
    167         (pt < 0.5 && pt >= 0.3) * (abs(eta) <= 3.0)    * (0.65) +
    168         (pt < 0.3) * (abs(eta) <= 3.0)                     * (0.06)
     162        (abs(eta) > 2.56)                                  * (0.000) +
     163        (pt < 0.1) * (abs(eta) <= 2.56)                    * (0.000)
     164        (pt >= 0.1) * (abs(eta) <= 2.56)                   * (1.000)
    169165    }
    170166}
     
    589585  set InputArray Calorimeter/eflowPhotons
    590586  set OutputArray photons
     587  set UseMomentumVector true
    591588
    592589  # set EfficiencyFormula {efficiency formula as a function of eta and pt}
     
    649646  set InputArray ElectronFilter/electrons
    650647  set OutputArray electrons
     648  set UseMomentumVector true
    651649
    652650  # set EfficiencyFormula {efficiency formula as a function of eta and pt}
     
    685683  set InputArray MuonFilter/muons
    686684  set OutputArray muons
     685  set UseMomentumVector true
    687686
    688687  # set EfficiencyFormula {efficiency as a function of eta and pt}
Note: See TracChangeset for help on using the changeset viewer.