VBFTriggerLepHad2012

Introduction

This twiki provides documentation for the VBF triggers in HSG4.

Contact: Alex Tuna (tuna @ cern), Justin Griffiths (griffith @ cern), and Xiaowen Lei (xiaowen.lei @ cern).

Usage

See the Lepton_VBF_Trigger_LVT section of the HSG4 lep-had twiki for usage in your analysis!

Logic for avoiding L1 trigger bias

We want to measure the efficiency for an offline jet to be matched to a L1.5 jet. For W+jet events, we need to avoid trigger bias at L1. To do this, we need to require that something other than our jet fires the tau piece of the L1 trigger. Here is one way we could do this.

def atLeastOneTag(jets):
    for jet in jets:
        if matchedL1(jet):
            return True
    return False

def matchedL1(jet):
    < trigger matching voodoo >

for probejet in selectedjets:
    otherjets = copy(selectedjets)
    otherjets.remove(probejet)
    if atLeastOneTag(otherjets):
        # you now have unbiased probe jet!
        histogram.Fill(probejet.pt)

Ntuples

v00-03-03

  • First pass at p1344 tau d3pds
  • Analyzed periods G+ (Muons) and H+ (Egamma)
  • Required at least one selected muon (Muons) or electron (Egamma)
  • Missing: L1_2TAU11I_EM14VH

dq2-ls "user.tuna.data12_8TeV.*.Muons.NTUP_TAU.*p1344.httlh.v00-03-03/"
dq2-ls "user.tuna.data12_8TeV.*.Egamma.NTUP_TAU.*p1344.httlh.v00-03-03/"

Talks

Edit | Attach | Watch | Print version | History: r2 < r1 | Backlinks | Raw View | WYSIWYG | More topic actions
Topic revision: r2 - 2013-02-15 - unknown
 
    • Cern Search Icon Cern Search
    • TWiki Search Icon TWiki Search
    • Google Search Icon Google Search

    Main All webs login

This site is powered by the TWiki collaboration platform Powered by PerlCopyright &© 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
or Ideas, requests, problems regarding TWiki? use Discourse or Send feedback