Changeset 3cd4c6e in git for cards/delphes_card_CircularEE.tcl
- Timestamp:
- Nov 26, 2020, 3:49:23 PM (4 years ago)
- Branches:
- master
- Children:
- eee976c2
- Parents:
- 8dd735c (diff), ae5b7b7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Aleksander Filip Żarnecki <zarnecki@…> (11/26/20 15:49:23)
- git-committer:
- GitHub <noreply@…> (11/26/20 15:49:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cards/delphes_card_CircularEE.tcl
r8dd735c r3cd4c6e 52 52 BTagging 53 53 CTagging 54 TauTagging 54 TauTaggingTight 55 TauTaggingLoose 55 56 56 57 BTaggingExclusive_N2 … … 62 63 CTaggingExclusive_N6 63 64 64 TauTaggingExclusive_N2 65 TauTaggingExclusive_N4 66 TauTaggingExclusive_N6 65 TauTaggingTightExclusive_N2 66 TauTaggingTightExclusive_N4 67 TauTaggingTightExclusive_N6 68 69 TauTaggingLooseExclusive_N2 70 TauTaggingLooseExclusive_N4 71 TauTaggingLooseExclusive_N6 67 72 68 73 ScalarHT … … 719 724 720 725 721 module TauTagging TauTagging {726 module TauTagging TauTaggingTight { 722 727 set ParticleInputArray Delphes/allParticles 723 728 set PartonInputArray Delphes/partons 724 729 set JetInputArray JetEnergyScale/jets 725 730 731 set BitNumber 0 732 726 733 set DeltaR 0.5 727 734 … … 740 747 741 748 749 ############# 750 # tau-tagging 751 ############# 752 753 754 module TauTagging TauTaggingLoose { 755 set ParticleInputArray Delphes/allParticles 756 set PartonInputArray Delphes/partons 757 set JetInputArray JetEnergyScale/jets 758 759 set BitNumber 1 760 761 set DeltaR 0.5 762 763 set TauPTMin 1.0 764 765 set TauEtaMax 3.0 766 767 # add EfficiencyFormula {abs(PDG code)} {efficiency formula as a function of eta and pt} 768 769 # default efficiency formula (misidentification rate) 770 add EfficiencyFormula {0} {0.1} 771 # efficiency formula for tau-jets 772 add EfficiencyFormula {15} {0.85} 773 } 774 775 776 742 777 ########### 743 778 # b-tagging … … 784 819 785 820 786 module TauTagging TauTagging Exclusive_N2 {821 module TauTagging TauTaggingTightExclusive_N2 { 787 822 set ParticleInputArray Delphes/allParticles 788 823 set PartonInputArray Delphes/partons 789 824 set JetInputArray ExclusiveFastJetFinder_N2/jets 790 825 826 set BitNumber 0 827 791 828 set DeltaR 0.5 792 829 … … 804 841 805 842 843 ############# 844 # tau-tagging 845 ############# 846 847 848 module TauTagging TauTaggingLooseExclusive_N2 { 849 set ParticleInputArray Delphes/allParticles 850 set PartonInputArray Delphes/partons 851 set JetInputArray ExclusiveFastJetFinder_N2/jets 852 853 set BitNumber 1 854 855 set DeltaR 0.5 856 857 set TauPTMin 1.0 858 859 set TauEtaMax 3.0 860 861 # add EfficiencyFormula {abs(PDG code)} {efficiency formula as a function of eta and pt} 862 863 # default efficiency formula (misidentification rate) 864 add EfficiencyFormula {0} {0.1} 865 # efficiency formula for tau-jets 866 add EfficiencyFormula {15} {0.85} 867 } 868 869 870 871 872 806 873 ########### 807 874 # b-tagging … … 848 915 849 916 850 module TauTagging TauTagging Exclusive_N4 {917 module TauTagging TauTaggingTightExclusive_N4 { 851 918 set ParticleInputArray Delphes/allParticles 852 919 set PartonInputArray Delphes/partons 853 920 set JetInputArray ExclusiveFastJetFinder_N4/jets 921 922 set BitNumber 0 854 923 855 924 set DeltaR 0.5 … … 866 935 add EfficiencyFormula {15} {0.4} 867 936 } 937 938 939 940 ############# 941 # tau-tagging 942 ############# 943 944 945 module TauTagging TauTaggingLooseExclusive_N4 { 946 set ParticleInputArray Delphes/allParticles 947 set PartonInputArray Delphes/partons 948 set JetInputArray ExclusiveFastJetFinder_N4/jets 949 950 set BitNumber 1 951 952 set DeltaR 0.5 953 954 set TauPTMin 1.0 955 956 set TauEtaMax 3.0 957 958 # add EfficiencyFormula {abs(PDG code)} {efficiency formula as a function of eta and pt} 959 960 # default efficiency formula (misidentification rate) 961 add EfficiencyFormula {0} {0.1} 962 # efficiency formula for tau-jets 963 add EfficiencyFormula {15} {0.85} 964 } 965 966 967 868 968 ########### 869 969 # b-tagging … … 910 1010 911 1011 912 module TauTagging TauTagging Exclusive_N6 {1012 module TauTagging TauTaggingTightExclusive_N6 { 913 1013 set ParticleInputArray Delphes/allParticles 914 1014 set PartonInputArray Delphes/partons 915 1015 set JetInputArray ExclusiveFastJetFinder_N6/jets 916 1016 1017 set BitNumber 0 1018 917 1019 set DeltaR 0.5 918 1020 … … 927 1029 # efficiency formula for tau-jets 928 1030 add EfficiencyFormula {15} {0.4} 1031 } 1032 1033 1034 ############# 1035 # tau-tagging 1036 ############# 1037 1038 1039 module TauTagging TauTaggingLooseExclusive_N6 { 1040 set ParticleInputArray Delphes/allParticles 1041 set PartonInputArray Delphes/partons 1042 set JetInputArray ExclusiveFastJetFinder_N6/jets 1043 1044 set BitNumber 1 1045 1046 set DeltaR 0.5 1047 1048 set TauPTMin 1.0 1049 1050 set TauEtaMax 3.0 1051 1052 # add EfficiencyFormula {abs(PDG code)} {efficiency formula as a function of eta and pt} 1053 1054 # default efficiency formula (misidentification rate) 1055 add EfficiencyFormula {0} {0.1} 1056 # efficiency formula for tau-jets 1057 add EfficiencyFormula {15} {0.85} 929 1058 } 930 1059
Note:
See TracChangeset
for help on using the changeset viewer.