- Timestamp:
- Aug 15, 2013, 3:40:22 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/delphes_card_ATLAS.tcl
r1099 r1258 32 32 FastJetFinder 33 33 34 ConstituentFilter34 JetEnergyScale 35 35 36 36 BTagging … … 135 135 136 136 # resolution formula for charged hadrons 137 set ResolutionFormula { (abs(eta) <= 1.5) * (pt > 0.1 && pt <= 1.0) * (0.02) + \ 138 (abs(eta) <= 1.5) * (pt > 1.0 && pt <= 1.0e1) * (0.01) + \ 139 (abs(eta) <= 1.5) * (pt > 1.0e1 && pt <= 2.0e2) * (0.03) + \ 140 (abs(eta) <= 1.5) * (pt > 2.0e2) * (0.05) + \ 141 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1 && pt <= 1.0) * (0.03) + \ 142 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0 && pt <= 1.0e1) * (0.02) + \ 143 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0e1 && pt <= 2.0e2) * (0.04) + \ 144 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 2.0e2) * (0.05)} 137 set ResolutionFormula { (abs(eta) <= 1.5) * (pt > 0.1 && pt <= 1.0e1) * (0.20) + \ 138 (abs(eta) <= 1.5) * (pt > 1.0e1 && pt <= 2.0e2) * (0.20) + \ 139 (abs(eta) <= 1.5) * (pt > 2.0e2) * (0.20) + \ 140 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0 && pt <= 1.0e1) * (0.20) + \ 141 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0e1 && pt <= 2.0e2) * (0.20) + \ 142 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 2.0e2) * (0.20)} 145 143 } 146 144 … … 174 172 # resolution formula for muons 175 173 set ResolutionFormula { (abs(eta) <= 1.5) * (pt > 0.1 && pt <= 1.0) * (0.03) + \ 176 (abs(eta) <= 1.5) * (pt > 1.0 && pt <= 1.0e1) * (0.02) + \177 (abs(eta) <= 1.5) * (pt > 1.0e1 && pt <= 2.0e2) * (0.03) + \178 (abs(eta) <= 1.5) * (pt > 2.0e2) * (0.05) + \174 (abs(eta) <= 1.5) * (pt > 1.0 && pt <= 5.0e1) * (0.03) + \ 175 (abs(eta) <= 1.5) * (pt > 5.0e1 && pt <= 1.0e2) * (0.04) + \ 176 (abs(eta) <= 1.5) * (pt > 1.0e2) * (0.07) + \ 179 177 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1 && pt <= 1.0) * (0.04) + \ 180 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0 && pt <= 1.0e1) * (0.03) + \181 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0e1 && pt <= 2.0e2) * (0.04) + \182 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 2.0e2) * (0.05)}178 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0 && pt <= 5.0e1) * (0.04) + \ 179 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 5.0e1 && pt <= 1.0e2) * (0.05) + \ 180 (abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 1.0e2) * (0.10)} 183 181 } 184 182 … … 302 300 module Isolation PhotonIsolation { 303 301 set CandidateInputArray PhotonEfficiency/photons 304 set IsolationInputArray EFlowMerger/eflow302 set IsolationInputArray TrackMerger/tracks 305 303 306 304 set OutputArray photons … … 336 334 module Isolation ElectronIsolation { 337 335 set CandidateInputArray ElectronEfficiency/electrons 338 set IsolationInputArray EFlowMerger/eflow336 set IsolationInputArray TrackMerger/tracks 339 337 340 338 set OutputArray electrons … … 370 368 module Isolation MuonIsolation { 371 369 set CandidateInputArray MuonEfficiency/muons 372 set IsolationInputArray EFlowMerger/eflow370 set IsolationInputArray TrackMerger/tracks 373 371 374 372 set OutputArray muons … … 400 398 add InputArray UniqueObjectFinder/electrons 401 399 add InputArray UniqueObjectFinder/photons 402 add InputArray MuonIsolation/muons400 add InputArray UniqueObjectFinder/muons 403 401 set EnergyOutputArray energy 404 402 } … … 415 413 # algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt 416 414 set JetAlgorithm 6 417 set ParameterR 0.7 418 419 set ConeRadius 0.5 420 set SeedThreshold 1.0 421 set ConeAreaFraction 1.0 422 set AdjacencyCut 2.0 423 set OverlapThreshold 0.75 424 425 set MaxIterations 100 426 set MaxPairSize 2 427 set Iratch 1 415 set ParameterR 0.6 428 416 429 417 set JetPTMin 20.0 … … 435 423 436 424 module FastJetFinder FastJetFinder { 437 # set InputArray Calorimeter/towers 438 set InputArray EFlowMerger/eflow 425 set InputArray Calorimeter/towers 439 426 440 427 set OutputArray jets … … 442 429 # algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt 443 430 set JetAlgorithm 6 444 set ParameterR 0.7 445 446 set ConeRadius 0.5 447 set SeedThreshold 1.0 448 set ConeAreaFraction 1.0 449 set AdjacencyCut 2.0 450 set OverlapThreshold 0.75 451 452 set MaxIterations 100 453 set MaxPairSize 2 454 set Iratch 1 431 set ParameterR 0.6 455 432 456 433 set JetPTMin 20.0 457 434 } 458 435 459 #################### 460 # Constituent filter 461 #################### 462 463 module ConstituentFilter ConstituentFilter { 464 465 # add JetInputArray InputArray 466 add JetInputArray GenJetFinder/jets 467 add JetInputArray FastJetFinder/jets 468 469 # add ConstituentInputArray InputArray OutputArray 470 add ConstituentInputArray Delphes/stableParticles stableParticles 471 add ConstituentInputArray Calorimeter/eflowTracks eflowTracks 472 add ConstituentInputArray Calorimeter/eflowTowers eflowTowers 473 add ConstituentInputArray MuonMomentumSmearing/muons muons 436 ################## 437 # Jet Energy Scale 438 ################## 439 440 module EnergyScale JetEnergyScale { 441 set InputArray FastJetFinder/jets 442 set OutputArray jets 443 444 # scale formula for jets 445 set ScaleFormula {1.08} 474 446 } 475 447 … … 496 468 # default efficiency formula (misidentification rate) 497 469 add EfficiencyFormula {0} {0.001} 470 498 471 # efficiency formula for c-jets (misidentification rate) 499 add EfficiencyFormula {4} {0.1} 472 add EfficiencyFormula {4} { (pt <= 15.0) * (0.000) + \ 473 (abs(eta) <= 1.2) * (pt > 15.0) * (0.2*tanh(pt*0.03 - 0.4)) + \ 474 (abs(eta) > 1.2 && abs(eta) <= 2.5) * (pt > 15.0) * (0.1*tanh(pt*0.03 - 0.4)) + \ 475 (abs(eta) > 2.5) * (0.000)} 476 500 477 # efficiency formula for b-jets 501 add EfficiencyFormula {5} {0.4} 478 add EfficiencyFormula {5} { (pt <= 15.0) * (0.000) + \ 479 (abs(eta) <= 1.2) * (pt > 15.0) * (0.5*tanh(pt*0.03 - 0.4)) + \ 480 (abs(eta) > 1.2 && abs(eta) <= 2.5) * (pt > 15.0) * (0.4*tanh(pt*0.03 - 0.4)) + \ 481 (abs(eta) > 2.5) * (0.000)} 502 482 } 503 483 … … 530 510 add InputArray PhotonIsolation/photons photons 531 511 add InputArray ElectronIsolation/electrons electrons 512 add InputArray MuonIsolation/muons muons 532 513 add InputArray FastJetFinder/jets jets 533 514 } … … 542 523 add Branch TrackMerger/tracks Track Track 543 524 add Branch Calorimeter/towers Tower Tower 544 add Branch ConstituentFilter/eflowTracks EFlowTrack Track545 add Branch ConstituentFilter/eflowTowers EFlowTower Tower546 add Branch ConstituentFilter/muons EFlowMuon Muon525 # add Branch Calorimeter/eflowTracks EFlowTrack Track 526 # add Branch Calorimeter/eflowTowers EFlowTower Tower 527 # add Branch MuonMomentumSmearing/muons EFlowMuon Muon 547 528 add Branch GenJetFinder/jets GenJet Jet 548 529 add Branch UniqueObjectFinder/jets Jet Jet 549 530 add Branch UniqueObjectFinder/electrons Electron Electron 550 531 add Branch UniqueObjectFinder/photons Photon Photon 551 add Branch MuonIsolation/muons Muon Muon532 add Branch UniqueObjectFinder/muons Muon Muon 552 533 add Branch MissingET/momentum MissingET MissingET 553 534 add Branch ScalarHT/energy ScalarHT ScalarHT
Note:
See TracChangeset
for help on using the changeset viewer.