Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • examples/Example7.py

    rb03c0d0 rf8e61b2  
    3333
    3434# Get pointers to branches used in this analysis
    35 branchJet      = treeReader.UseBranch("JetPUPPITight")
     35branchJet = treeReader.UseBranch("JetPUPPITight")
    3636branchElectron = treeReader.UseBranch("ElectronMedium")
    37 branchWeight   = treeReader.UseBranch("Weight")
    38 branchEvent    = treeReader.UseBranch("Event")
     37branchWeight = treeReader.UseBranch("Weight")
    3938
    4039# Book histograms
     
    4746  treeReader.ReadEntry(entry)
    4847
    49   ## main MC event weight
    50   w =  branchEvent[0].Weight
     48  w = 1.0 
     49  ## read MC event weight
     50  if branchWeight.GetEntries() > 0: 
     51    weight = branchWeight.At(0).Weight
    5152
    52   ## read lhe event weight
    53   for weight in branchWeight: 
    54     lhe_weight = weight.Weight
    55     ## do stuff ...
    56     ## print lhe_weight
    57    
    5853  # If event contains at least 1 jet
    5954  if branchJet.GetEntries() > 0:
     
    8176    eta = abs(electron.Eta)
    8277
    83     ## looseCut = 0.3, mediumCut = 0.2, tightCut = 0.1
    8478    IsoCut = 0.2
    8579    IsoOk = electron.IsolationVar < IsoCut
Note: See TracChangeset for help on using the changeset viewer.