Fork me on GitHub

Ignore:
Timestamp:
Feb 1, 2018, 3:54:27 PM (7 years ago)
Author:
Ulrike Schnoor <schnooru@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
94e8c9a
Parents:
283bed1
Message:

clean up and fixed energy range for electron id efficiency in CLICdet

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cards/delphes_card_CLICdet.tcl

    r283bed1 r41a92e8  
    459459
    460460    # set ECalResolutionFormula {resolution formula as a function of eta and energy}
    461     # not from CLICdet
    462     #set ResolutionFormula { (abs(eta) <= 3.0)                   * sqrt(energy^2*0.01^2 + energy*0.15^2) }
    463461    set ResolutionFormula { (abs(eta) <= 0.78)                   * sqrt(energy^2*0.009^2 + energy*0.156^2)+
    464462        (abs(eta) > 0.78 && abs(eta) <=0.83 ) * sqrt( energy^2*2e-7^2 + energy*0.175^2  ) +
     
    656654    # set EfficiencyFormula {efficiency formula as a function of eta and pt}
    657655    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)}
    661659
    662660   
     
    776774    set OutputArray jets
    777775
    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
    779777    set JetAlgorithm 9
    780778    set ParameterR 0.5
     
    805803    set OutputArray KTjets
    806804
    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
    808806    set JetAlgorithm 4
    809807    set ParameterR 0.5
     
    811809    set JetPTMin 20.0
    812810}
     811
     812################
     813# Jet finder VLC
     814################
     815
    813816
    814817source CLICdet/CLICdet_JetReco.tcl
     
    859862
    860863    # add EfficiencyFormula {abs(PDG code)} {efficiency formula as a function of eta and pt}
    861 
     864    # not from CLICdet
    862865    # default efficiency formula (misidentification rate)
    863866    add EfficiencyFormula {0} {0.001}
     
    866869}
    867870
    868 #####################################################
    869 # Find uniquely identified photons/electrons/tau/jets
    870 #####################################################
    871 
    872 #module UniqueObjectFinder UniqueObjectFinder {
    873 #    # earlier arrays take precedence over later ones
    874 #    # add InputArray InputArray OutputArray
    875 #    add InputArray PhotonIsolation/photons photons
    876 #    add InputArray ElectronIsolation/electrons electrons
    877 #    add InputArray MuonIsolation/muons muons
    878 #    add InputArray JetEnergyScale/jets jets
    879 ####not necessary any more, since these objects have already been removed if necessary??
    880 #}
    881 #
    882871
    883872##################
     
    922911    add Branch FastJetFinderVLC_R15_N6/VLCjetsR15N6 VLCjetR15N6 Jet
    923912
    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
    928914
    929915    add Branch TrackMerger/tracks Track Track
     
    934920    add Branch HCal/eflowNeutralHadrons EFlowNeutralHadron Tower
    935921   
    936 #    add Branch UniqueObjectFinder/photons Photon Photon
    937 #    add Branch UniqueObjectFinder/electrons Electron Electron
    938 #    add Branch UniqueObjectFinder/muons Muon Muon
    939 #    add Branch UniqueObjectFinder/jets Jet Jet
    940 #   
    941 
    942 #    add Branch PhotonIsolation/photons Photon Photon
    943 #    add Branch ElectronIsolation/electrons Electron Electron
    944 #    add Branch MuonIsolation/muons Muon Muon
    945 
    946922    add Branch EFlowFilter/photons Photon Photon
    947923    add Branch EFlowFilter/electrons Electron Electron
    948924    add Branch EFlowFilter/muons Muon Muon
    949925   
    950        
    951    
    952926    add Branch MissingET/momentum MissingET MissingET
    953927    add Branch ScalarHT/energy ScalarHT ScalarHT
Note: See TracChangeset for help on using the changeset viewer.