Fork me on GitHub

Ignore:
Timestamp:
Dec 5, 2017, 11:24:17 AM (7 years ago)
Author:
Ulrike Schnoor <schnooru@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
197fed7
Parents:
b5b42e8
Message:

added various combinations of R param and Njets (excl. clustering) to CLICdet card

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cards/delphes_card_CLICdet.tcl

    rb5b42e8 rd85c7c5  
     1#######################################
     2# CLICdet model
     3# based on CLICdp-Note-2017-001
     4# Ulrike Schnoor ulrike.schnoor@cern.ch
     5#
     6# Jet finding with Valencia algorithm:
     7# use exclusive clustering with njets
     8# according to final state
     9#
    110#######################################
    211# Order of execution of various modules
     
    3847    GenJetFinder
    3948    FastJetFinderKt
    40     FastJetFinderVLC_05_2
    41     FastJetFinderVLC_05_3
     49    FastJetFinderVLC_R05_N2
     50    FastJetFinderVLC_R05_N3
     51    FastJetFinderVLC_R05_N4
     52    FastJetFinderVLC_R05_N5
     53    FastJetFinderVLC_R05_N6
     54    FastJetFinderVLC_R07_N2
     55    FastJetFinderVLC_R07_N3
     56    FastJetFinderVLC_R07_N4
     57    FastJetFinderVLC_R07_N5
     58    FastJetFinderVLC_R07_N6
     59    FastJetFinderVLC_R10_N2
     60    FastJetFinderVLC_R10_N3
     61    FastJetFinderVLC_R10_N4
     62    FastJetFinderVLC_R10_N5
     63    FastJetFinderVLC_R10_N6
     64    FastJetFinderVLC_R12_N2
     65    FastJetFinderVLC_R12_N3
     66    FastJetFinderVLC_R12_N4
     67    FastJetFinderVLC_R12_N5
     68    FastJetFinderVLC_R12_N6
     69    FastJetFinderVLC_R15_N2
     70    FastJetFinderVLC_R15_N3
     71    FastJetFinderVLC_R15_N4
     72    FastJetFinderVLC_R15_N5
     73    FastJetFinderVLC_R15_N6
     74
    4275
    4376
     
    556589# Jet finder VLC
    557590############
    558 
    559 module FastJetFinder FastJetFinderVLC_05_2 {
     591#R05 N2
     592module FastJetFinder FastJetFinderVLC_R05_N2 {
    560593    #  set InputArray Calorimeter/towers
    561594    set InputArray EFlowMerger/eflow
    562595
    563     set OutputArray VLCjets052
     596    set OutputArray VLCjetsR05N2
    564597
    565598    # 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
     
    573606    set JetPTMin 20.0
    574607}
    575 
    576 
    577 module FastJetFinder FastJetFinderVLC_05_3 {
    578     #  set InputArray Calorimeter/towers
    579     set InputArray EFlowMerger/eflow
    580 
    581     set OutputArray VLCjets053
    582 
     608#R05 N3
     609module FastJetFinder FastJetFinderVLC_R05_N3 {
     610    set InputArray EFlowMerger/eflow
     611    set OutputArray VLCjetsR05N3
    583612    set NJets 3
    584613    set ExclusiveClustering true
     
    587616    set Beta 1.0
    588617    set Gamma 1.0
    589 
    590     set JetPTMin 20.0
    591 }
    592 
     618    set JetPTMin 20.0
     619}
     620#R05 N4
     621module FastJetFinder FastJetFinderVLC_R05_N4 {
     622    set InputArray EFlowMerger/eflow
     623    set OutputArray VLCjetsR05N4
     624    set NJets 4
     625    set ExclusiveClustering true
     626    set JetAlgorithm 9
     627    set ParameterR 0.5
     628    set Beta 1.0
     629    set Gamma 1.0
     630    set JetPTMin 20.0
     631}
     632#R05 N5
     633module FastJetFinder FastJetFinderVLC_R05_N5 {
     634    set InputArray EFlowMerger/eflow
     635    set OutputArray VLCjetsR05N5
     636    set NJets 5
     637    set ExclusiveClustering true
     638    set JetAlgorithm 9
     639    set ParameterR 0.5
     640    set Beta 1.0
     641    set Gamma 1.0
     642    set JetPTMin 20.0
     643}
     644#R05 N6
     645module FastJetFinder FastJetFinderVLC_R05_N6 {
     646    set InputArray EFlowMerger/eflow
     647    set OutputArray VLCjetsR05N6
     648    set NJets 6
     649    set ExclusiveClustering true
     650    set JetAlgorithm 9
     651    set ParameterR 0.5
     652    set Beta 1.0
     653    set Gamma 1.0
     654    set JetPTMin 20.0
     655}
     656#R07 N2
     657module FastJetFinder FastJetFinderVLC_R07_N2 {
     658    set InputArray EFlowMerger/eflow
     659    set OutputArray VLCjetsR07N2
     660    set NJets 2
     661    set ExclusiveClustering true
     662    set JetAlgorithm 9
     663    set ParameterR 0.7
     664    set Beta 1.0
     665    set Gamma 1.0
     666    set JetPTMin 20.0
     667}
     668#R07 N3
     669module FastJetFinder FastJetFinderVLC_R07_N3 {
     670    set InputArray EFlowMerger/eflow
     671    set OutputArray VLCjetsR07N3
     672    set NJets 3
     673    set ExclusiveClustering true
     674    set JetAlgorithm 9
     675    set ParameterR 0.7
     676    set Beta 1.0
     677    set Gamma 1.0
     678    set JetPTMin 20.0
     679}
     680#R07 N4
     681module FastJetFinder FastJetFinderVLC_R07_N4 {
     682    set InputArray EFlowMerger/eflow
     683    set OutputArray VLCjetsR07N4
     684    set NJets 4
     685    set ExclusiveClustering true
     686    set JetAlgorithm 9
     687    set ParameterR 0.7
     688    set Beta 1.0
     689    set Gamma 1.0
     690    set JetPTMin 20.0
     691}
     692#R07 N5
     693module FastJetFinder FastJetFinderVLC_R07_N5 {
     694    set InputArray EFlowMerger/eflow
     695    set OutputArray VLCjetsR07N5
     696    set NJets 5
     697    set ExclusiveClustering true
     698    set JetAlgorithm 9
     699    set ParameterR 0.7
     700    set Beta 1.0
     701    set Gamma 1.0
     702    set JetPTMin 20.0
     703}
     704#R07 N6
     705module FastJetFinder FastJetFinderVLC_R07_N6 {
     706    set InputArray EFlowMerger/eflow
     707    set OutputArray VLCjetsR07N6
     708    set NJets 6
     709    set ExclusiveClustering true
     710    set JetAlgorithm 9
     711    set ParameterR 0.7
     712    set Beta 1.0
     713    set Gamma 1.0
     714    set JetPTMin 20.0
     715}
     716
     717#R10N2
     718module FastJetFinder FastJetFinderVLC_R10_N2 {
     719    set InputArray EFlowMerger/eflow
     720    set OutputArray VLCjetsR10N2
     721    set NJets 2
     722    set ExclusiveClustering true
     723    set JetAlgorithm 9
     724    set ParameterR 1.0
     725    set Beta 1.0
     726    set Gamma 1.0
     727    set JetPTMin 20.0
     728}
     729#R10 N3
     730module FastJetFinder FastJetFinderVLC_R10_N3 {
     731    set InputArray EFlowMerger/eflow
     732    set OutputArray VLCjetsR10N3
     733    set NJets 3
     734    set ExclusiveClustering true
     735    set JetAlgorithm 9
     736    set ParameterR 1.0
     737    set Beta 1.0
     738    set Gamma 1.0
     739    set JetPTMin 20.0
     740}
     741#R10 N4
     742module FastJetFinder FastJetFinderVLC_R10_N4 {
     743    set InputArray EFlowMerger/eflow
     744    set OutputArray VLCjetsR10N4
     745    set NJets 4
     746    set ExclusiveClustering true
     747    set JetAlgorithm 9
     748    set ParameterR 1.0
     749    set Beta 1.0
     750    set Gamma 1.0
     751    set JetPTMin 20.0
     752}
     753#R10 N5
     754module FastJetFinder FastJetFinderVLC_R10_N5 {
     755    set InputArray EFlowMerger/eflow
     756    set OutputArray VLCjetsR10N5
     757    set NJets 5
     758    set ExclusiveClustering true
     759    set JetAlgorithm 9
     760    set ParameterR 1.0
     761    set Beta 1.0
     762    set Gamma 1.0
     763    set JetPTMin 20.0
     764}
     765#R10 N6
     766module FastJetFinder FastJetFinderVLC_R10_N6 {
     767    set InputArray EFlowMerger/eflow
     768    set OutputArray VLCjetsR10N6
     769    set NJets 6
     770    set ExclusiveClustering true
     771    set JetAlgorithm 9
     772    set ParameterR 1.0
     773    set Beta 1.0
     774    set Gamma 1.0
     775    set JetPTMin 20.0
     776}
     777
     778#R12 N2
     779module FastJetFinder FastJetFinderVLC_R12_N2 {
     780    set InputArray EFlowMerger/eflow
     781    set OutputArray VLCjetsR12N2
     782    set NJets 2
     783    set ExclusiveClustering true
     784    set JetAlgorithm 9
     785    set ParameterR 1.2
     786    set Beta 1.0
     787    set Gamma 1.0
     788    set JetPTMin 20.0
     789}
     790#R12 N3
     791module FastJetFinder FastJetFinderVLC_R12_N3 {
     792    set InputArray EFlowMerger/eflow
     793    set OutputArray VLCjetsR12N3
     794    set NJets 3
     795    set ExclusiveClustering true
     796    set JetAlgorithm 9
     797    set ParameterR 1.2
     798    set Beta 1.0
     799    set Gamma 1.0
     800    set JetPTMin 20.0
     801}
     802#R12 N4
     803module FastJetFinder FastJetFinderVLC_R12_N4 {
     804    set InputArray EFlowMerger/eflow
     805    set OutputArray VLCjetsR12N4
     806    set NJets 4
     807    set ExclusiveClustering true
     808    set JetAlgorithm 9
     809    set ParameterR 1.2
     810    set Beta 1.0
     811    set Gamma 1.0
     812    set JetPTMin 20.0
     813}
     814#R12 N5
     815module FastJetFinder FastJetFinderVLC_R12_N5 {
     816    set InputArray EFlowMerger/eflow
     817    set OutputArray VLCjetsR12N5
     818    set NJets 5
     819    set ExclusiveClustering true
     820    set JetAlgorithm 9
     821    set ParameterR 1.2
     822    set Beta 1.0
     823    set Gamma 1.0
     824    set JetPTMin 20.0
     825}
     826#R12 N6
     827module FastJetFinder FastJetFinderVLC_R12_N6 {
     828    set InputArray EFlowMerger/eflow
     829    set OutputArray VLCjetsR12N6
     830    set NJets 6
     831    set ExclusiveClustering true
     832    set JetAlgorithm 9
     833    set ParameterR 1.2
     834    set Beta 1.0
     835    set Gamma 1.0
     836    set JetPTMin 20.0
     837}
     838
     839
     840#R15 N2
     841module FastJetFinder FastJetFinderVLC_R15_N2 {
     842    set InputArray EFlowMerger/eflow
     843    set OutputArray VLCjetsR15N2
     844    set NJets 2
     845    set ExclusiveClustering true
     846    set JetAlgorithm 9
     847    set ParameterR 1.5
     848    set Beta 1.0
     849    set Gamma 1.0
     850    set JetPTMin 20.0
     851}
     852#R15 N3
     853module FastJetFinder FastJetFinderVLC_R15_N3 {
     854    set InputArray EFlowMerger/eflow
     855    set OutputArray VLCjetsR15N3
     856    set NJets 3
     857    set ExclusiveClustering true
     858    set JetAlgorithm 9
     859    set ParameterR 1.5
     860    set Beta 1.0
     861    set Gamma 1.0
     862    set JetPTMin 20.0
     863}
     864#R15 N4
     865module FastJetFinder FastJetFinderVLC_R15_N4 {
     866    set InputArray EFlowMerger/eflow
     867    set OutputArray VLCjetsR15N4
     868    set NJets 4
     869    set ExclusiveClustering true
     870    set JetAlgorithm 9
     871    set ParameterR 1.5
     872    set Beta 1.0
     873    set Gamma 1.0
     874    set JetPTMin 20.0
     875}
     876#R15 N5
     877module FastJetFinder FastJetFinderVLC_R15_N5 {
     878    set InputArray EFlowMerger/eflow
     879    set OutputArray VLCjetsR15N5
     880    set NJets 5
     881    set ExclusiveClustering true
     882    set JetAlgorithm 9
     883    set ParameterR 1.5
     884    set Beta 1.0
     885    set Gamma 1.0
     886    set JetPTMin 20.0
     887}
     888#R15 N6
     889module FastJetFinder FastJetFinderVLC_R15_N6 {
     890    set InputArray EFlowMerger/eflow
     891    set OutputArray VLCjetsR15N6
     892    set NJets 6
     893    set ExclusiveClustering true
     894    set JetAlgorithm 9
     895    set ParameterR 1.5
     896    set Beta 1.0
     897    set Gamma 1.0
     898    set JetPTMin 20.0
     899}
    593900##################
    594901# Jet Energy Scale
     
    8001107
    8011108    add Branch FastJetFinderKt/KTjets KTjet Jet
    802     add Branch FastJetFinderVLC_05_2/VLCjets052 VLCjet052 Jet
    803     add Branch FastJetFinderVLC_05_3/VLCjets053 VLCjet053 Jet
    804 
     1109    add Branch FastJetFinderVLC_R05_N2/VLCjetsR05N2 VLCjetR05N2 Jet
     1110    add Branch FastJetFinderVLC_R05_N3/VLCjetsR05N3 VLCjetR05N3 Jet
     1111    add Branch FastJetFinderVLC_R05_N4/VLCjetsR05N4 VLCjetR05N4 Jet
     1112    add Branch FastJetFinderVLC_R05_N5/VLCjetsR05N5 VLCjetR05N5 Jet
     1113    add Branch FastJetFinderVLC_R05_N6/VLCjetsR05N6 VLCjetR05N6 Jet
     1114
     1115    add Branch FastJetFinderVLC_R07_N2/VLCjetsR07N2 VLCjetR07N2 Jet
     1116    add Branch FastJetFinderVLC_R07_N3/VLCjetsR07N3 VLCjetR07N3 Jet
     1117    add Branch FastJetFinderVLC_R07_N4/VLCjetsR07N4 VLCjetR07N4 Jet
     1118    add Branch FastJetFinderVLC_R07_N5/VLCjetsR07N5 VLCjetR07N5 Jet
     1119    add Branch FastJetFinderVLC_R07_N6/VLCjetsR07N6 VLCjetR07N6 Jet
     1120
     1121    add Branch FastJetFinderVLC_R10_N2/VLCjetsR10N2 VLCjetR10N2 Jet
     1122    add Branch FastJetFinderVLC_R10_N3/VLCjetsR10N3 VLCjetR10N3 Jet
     1123    add Branch FastJetFinderVLC_R10_N4/VLCjetsR10N4 VLCjetR10N4 Jet
     1124    add Branch FastJetFinderVLC_R10_N5/VLCjetsR10N5 VLCjetR10N5 Jet
     1125    add Branch FastJetFinderVLC_R10_N6/VLCjetsR10N6 VLCjetR10N6 Jet
     1126
     1127    add Branch FastJetFinderVLC_R12_N2/VLCjetsR12N2 VLCjetR12N2 Jet
     1128    add Branch FastJetFinderVLC_R12_N3/VLCjetsR12N3 VLCjetR12N3 Jet
     1129    add Branch FastJetFinderVLC_R12_N4/VLCjetsR12N4 VLCjetR12N4 Jet
     1130    add Branch FastJetFinderVLC_R12_N5/VLCjetsR12N5 VLCjetR12N5 Jet
     1131    add Branch FastJetFinderVLC_R12_N6/VLCjetsR12N6 VLCjetR12N6 Jet
     1132
     1133    add Branch FastJetFinderVLC_R15_N2/VLCjetsR15N2 VLCjetR15N2 Jet
     1134    add Branch FastJetFinderVLC_R15_N3/VLCjetsR15N3 VLCjetR15N3 Jet
     1135    add Branch FastJetFinderVLC_R15_N4/VLCjetsR15N4 VLCjetR15N4 Jet
     1136    add Branch FastJetFinderVLC_R15_N5/VLCjetsR15N5 VLCjetR15N5 Jet
     1137    add Branch FastJetFinderVLC_R15_N6/VLCjetsR15N6 VLCjetR15N6 Jet
     1138
     1139   
    8051140    add Branch GenMissingET/momentum GenMissingET MissingET
    8061141
Note: See TracChangeset for help on using the changeset viewer.