Changeset a3c2d52 in git
- Timestamp:
- Oct 8, 2015, 4:48:05 PM (9 years ago)
- Children:
- b57435c
- Parents:
- c503d22
- Location:
- cards
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cards/delphes_card_ATLAS.tcl
rc503d22 ra3c2d52 502 502 503 503 # default efficiency formula (misidentification rate) 504 add EfficiencyFormula {0} {0.00 1}504 add EfficiencyFormula {0} {0.002+7.2984e-06*pt} 505 505 506 506 # efficiency formula for c-jets (misidentification rate) 507 add EfficiencyFormula {4} { (pt <= 15.0) * (0.000) + 508 (abs(eta) <= 1.2) * (pt > 15.0) * (0.2*tanh(pt*0.03 - 0.4)) + 509 (abs(eta) > 1.2 && abs(eta) <= 2.5) * (pt > 15.0) * (0.1*tanh(pt*0.03 - 0.4)) + 510 (abs(eta) > 2.5) * (0.000)} 507 add EfficiencyFormula {4} {0.20*tanh(0.02*pt)*(1/(1+0.0034*pt))} 511 508 512 509 # efficiency formula for b-jets 513 add EfficiencyFormula {5} { (pt <= 15.0) * (0.000) + 514 (abs(eta) <= 1.2) * (pt > 15.0) * (0.5*tanh(pt*0.03 - 0.4)) + 515 (abs(eta) > 1.2 && abs(eta) <= 2.5) * (pt > 15.0) * (0.4*tanh(pt*0.03 - 0.4)) + 516 (abs(eta) > 2.5) * (0.000)} 510 add EfficiencyFormula {5} {0.80*tanh(0.003*pt)*(1/(1+0.086*pt))} 517 511 } 518 512 -
cards/delphes_card_CMS.tcl
rc503d22 ra3c2d52 517 517 # https://twiki.cern.ch/twiki/bin/view/CMSPublic/PhysicsResultsBTV 518 518 # default efficiency formula (misidentification rate) 519 add EfficiencyFormula {0} {0.0 01}519 add EfficiencyFormula {0} {0.01+0.00038 * pt} 520 520 521 521 # efficiency formula for c-jets (misidentification rate) 522 add EfficiencyFormula {4} { (pt <= 15.0) * (0.000) + 523 (abs(eta) <= 1.2) * (pt > 15.0) * (0.2*tanh(pt*0.03 - 0.4)) + 524 (abs(eta) > 1.2 && abs(eta) <= 2.5) * (pt > 15.0) * (0.1*tanh(pt*0.03 - 0.4)) + 525 (abs(eta) > 2.5) * (0.000)} 522 add EfficiencyFormula {4} {0.25*tanh(0.018*pt)*(1/(1+ 0.0013*pt))} 526 523 527 524 # efficiency formula for b-jets 528 add EfficiencyFormula {5} { (pt <= 15.0) * (0.000) + 529 (abs(eta) <= 1.2) * (pt > 15.0) * (0.5*tanh(pt*0.03 - 0.4)) + 530 (abs(eta) > 1.2 && abs(eta) <= 2.5) * (pt > 15.0) * (0.4*tanh(pt*0.03 - 0.4)) + 531 (abs(eta) > 2.5) * (0.000)} 525 add EfficiencyFormula {5} { 0.85*tanh(0.0025*pt)*(25.0/(1+0.063*pt))} 532 526 } 533 527
Note:
See TracChangeset
for help on using the changeset viewer.