Changeset a3784f9 in git
- Timestamp:
- Oct 15, 2021, 11:55:33 AM (3 years ago)
- Branches:
- master
- Children:
- 26a21bd
- Parents:
- 10c0ebe
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cards/delphes_card_IDEA.tcl
r10c0ebe ra3784f9 122 122 123 123 # We use only one efficiency, we set only 0 effincency out of eta bounds: 124 125 124 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) 130 128 } 131 129 } … … 144 142 # Current full simulation with CLICdet provides for electrons: 145 143 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) 150 147 } 151 148 } … … 163 160 # Current full simulation with CLICdet provides for muons: 164 161 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) 169 165 } 170 166 } … … 589 585 set InputArray Calorimeter/eflowPhotons 590 586 set OutputArray photons 587 set UseMomentumVector true 591 588 592 589 # set EfficiencyFormula {efficiency formula as a function of eta and pt} … … 649 646 set InputArray ElectronFilter/electrons 650 647 set OutputArray electrons 648 set UseMomentumVector true 651 649 652 650 # set EfficiencyFormula {efficiency formula as a function of eta and pt} … … 685 683 set InputArray MuonFilter/muons 686 684 set OutputArray muons 685 set UseMomentumVector true 687 686 688 687 # set EfficiencyFormula {efficiency as a function of eta and pt}
Note:
See TracChangeset
for help on using the changeset viewer.