Advanced objects hands-on
Overview
Teaching: 0 min
Exercises: 40 minQuestions
How can I visualize the effect of the muon corrections?
How do I access other b tagging discriminators?
How do I apply the b tagging scale factors and visualize the uncertainty?
Objectives
Practice plotting histograms in ROOT to view POET histograms.
Implement multiple b taggers and count the number of b-tagged jets
Apply the central and shifted b tagging scale factors
Choose your exercise! Complete exercise #1 on the muon corrections, and then choose one of the options for exercise #2 on b-tagging.
Exercise 1: results of the muon correction
Check that the corrections have been applied correctly by plotting the corrected and uncorrected invariant mass of μ+μ- on the ROOT command line. If everything went right with the corrections, there should be a difference in the invariant masses. Cut the x-axis to be from 84 to 98.
Hint: You can find the branch names of the invariant masses from Analysis.C.
Solution
Exercise 2 option A: alternate b taggers
The statements printed from
addJetCollection
when runningpoet_cfg.py
shows the options for strings that can be used in thebdiscriminator()
function:The bdiscriminators below will be written to the jet collection in the PATtuple (default is all, see PatAlgos/PhysicsTools/python/tools/jetTools.py) jetBProbabilityBJetTags jetProbabilityBJetTags trackCountingHighPurBJetTags trackCountingHighEffBJetTags simpleSecondaryVertexHighEffBJetTags simpleSecondaryVertexHighPurBJetTags combinedSecondaryVertexBJetTags
Add 1-2 new branches for alternate taggers and compare those discriminants to CSV.
After editing
PatJetAnalyzer.cc
,$ scram b $ cmsRun python/poet_cfg.py False True $ root -l myoutput.root [0] TBrowser b
Solution
Exercise 2 option B: count medium CSV b tags
Calculate the number of jets per event that are b tagged according to the medium working point of the CSV algorithm. Store a branch called
jet_nCSVM
and draw it 3 times, applying the scale factor weights and demonstrating the uncertainty.After editing
PatJetAnalyzer.cc
,$ scram b $ cmsRun python/poet_cfg.py False True $ root -l myoutput.root [0] _file0->cd("myjets") [1] Events->Draw("jet_nCSVM","(btagWeight)") [2] Events->Draw("jet_nCSVM","(btagWeightUp)","p hist same") [3] Events->Draw("jet_nCSVM","(btagWeightDown)","p hist same")
Solution
Key Points
Muon corrections are a precision adjustment to a dimuon mass histogram.
B tagging scale factors and uncertainties should be considered for any distribution that relies on b-tagged jets