- Timestamp:
- Feb 1, 2018, 3:54:27 PM (7 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 94e8c9a
- Parents:
- 283bed1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cards/delphes_card_CLICdet.tcl
r283bed1 r41a92e8 459 459 460 460 # set ECalResolutionFormula {resolution formula as a function of eta and energy} 461 # not from CLICdet462 #set ResolutionFormula { (abs(eta) <= 3.0) * sqrt(energy^2*0.01^2 + energy*0.15^2) }463 461 set ResolutionFormula { (abs(eta) <= 0.78) * sqrt(energy^2*0.009^2 + energy*0.156^2)+ 464 462 (abs(eta) > 0.78 && abs(eta) <=0.83 ) * sqrt( energy^2*2e-7^2 + energy*0.175^2 ) + … … 656 654 # set EfficiencyFormula {efficiency formula as a function of eta and pt} 657 655 set EfficiencyFormula { 658 (energy < 2.0 ) * (0.000) +659 (energy >= 2.0) * (abs( eta)<0.7 )*( 0.89)+660 (energy >= 2.0) * (abs(eta) > 0.7 && abs(eta) < 3)*( 0.8)}656 (energy < 5.0 ) * (0.000) + 657 (energy >= 5.0) * (abs( eta)<0.7 )*( 0.89)+ 658 (energy >= 5.0) * (abs(eta) > 0.7 && abs(eta) < 3)*( 0.8)} 661 659 662 660 … … 776 774 set OutputArray jets 777 775 778 # algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt 776 # algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt, 7 anti-kt with winner-take-all axis (for N-subjettiness), 8 N-jettiness, 9 Valencia 779 777 set JetAlgorithm 9 780 778 set ParameterR 0.5 … … 805 803 set OutputArray KTjets 806 804 807 # algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt 805 # algorithm: 1 CDFJetClu, 2 MidPoint, 3 SIScone, 4 kt, 5 Cambridge/Aachen, 6 antikt, 7 anti-kt with winner-take-all axis (for N-subjettiness), 8 N-jettiness, 9 Valencia 808 806 set JetAlgorithm 4 809 807 set ParameterR 0.5 … … 811 809 set JetPTMin 20.0 812 810 } 811 812 ################ 813 # Jet finder VLC 814 ################ 815 813 816 814 817 source CLICdet/CLICdet_JetReco.tcl … … 859 862 860 863 # add EfficiencyFormula {abs(PDG code)} {efficiency formula as a function of eta and pt} 861 864 # not from CLICdet 862 865 # default efficiency formula (misidentification rate) 863 866 add EfficiencyFormula {0} {0.001} … … 866 869 } 867 870 868 #####################################################869 # Find uniquely identified photons/electrons/tau/jets870 #####################################################871 872 #module UniqueObjectFinder UniqueObjectFinder {873 # # earlier arrays take precedence over later ones874 # # add InputArray InputArray OutputArray875 # add InputArray PhotonIsolation/photons photons876 # add InputArray ElectronIsolation/electrons electrons877 # add InputArray MuonIsolation/muons muons878 # add InputArray JetEnergyScale/jets jets879 ####not necessary any more, since these objects have already been removed if necessary??880 #}881 #882 871 883 872 ################## … … 922 911 add Branch FastJetFinderVLC_R15_N6/VLCjetsR15N6 VLCjetR15N6 Jet 923 912 924 # add Branch BTaggingWP50/jets BTagged Jet 925 # add Branch FastJetFinderVLC_R05_N2/VLCjetsR05N2 BTagged Jet 926 927 add Branch GenMissingET/momentum GenMissingET MissingET 913 add Branch GenMissingET/momentum GenMissingET MissingET 928 914 929 915 add Branch TrackMerger/tracks Track Track … … 934 920 add Branch HCal/eflowNeutralHadrons EFlowNeutralHadron Tower 935 921 936 # add Branch UniqueObjectFinder/photons Photon Photon937 # add Branch UniqueObjectFinder/electrons Electron Electron938 # add Branch UniqueObjectFinder/muons Muon Muon939 # add Branch UniqueObjectFinder/jets Jet Jet940 #941 942 # add Branch PhotonIsolation/photons Photon Photon943 # add Branch ElectronIsolation/electrons Electron Electron944 # add Branch MuonIsolation/muons Muon Muon945 946 922 add Branch EFlowFilter/photons Photon Photon 947 923 add Branch EFlowFilter/electrons Electron Electron 948 924 add Branch EFlowFilter/muons Muon Muon 949 925 950 951 952 926 add Branch MissingET/momentum MissingET MissingET 953 927 add Branch ScalarHT/energy ScalarHT ScalarHT
Note:
See TracChangeset
for help on using the changeset viewer.