Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
PH4100 MSci Major Project - Inspecting a signal ntupleFirst look at the signal ntupleBelow are the commands, on linappserv, to start root, get a ROOT-object browser up (to look at the contents of an ntuple) and then link to one of the signal "ntuples" (simulated event sample). To start ROOT enter> rooton the Linux command prompt. Once ROOT has started, enter the following commands at the ROOT prompt: > TBrowser b; > TFile f1("/scratch2/ptd/ATLAS/MC2017-new/ttH_PoPy8_FS_17.root")Once you have done this, on the ROOT browser, you need to:
Plotting distributions with cutsA slightly more powerful way of looking at variable distributions (without having to do any clicking) is to type the following directly on the root prompt:> nominal_Loose->Draw("nJets");(which results in a plot of the distribution of the nJets variable). If you wish to, for instance, look at this distribution but only for events where the Higgs boson has decayed to two b-quarks, you need to apply a cut on the truth_HDecay variable, when you "Draw" the plot: > nominal_Loose->Draw("nJets", "truth_HDecay == 0");(Note how the cut is specified using C++ syntax: "==".) If, in addition, you only wished to look at events with at least one reconstructed muon, the command would be > nominal_Loose->Draw("nJets", "(truth_HDecay == 0) && (nMuons >= 1)");... and so on. Variables in the ntupleThe nominal_Loose ntuple has more than 300 different variables, recorded for each event. Below is an initial list of basic variables to look at, mostly related to the hadronic jets, electrons, muons and missing energy, and their respective properties.- Mll - pTll | ||||||||
Changed: | ||||||||
< < | - HTall | |||||||
> > | - HT_all | |||||||
- nBTags_MV2c10_60 (70/77/85)
- nJets
- nJets_Pt40
- nElectrons
- nMuons
- nTaus (hadronic taus reconstructed)
- truth_HDecay
- mcChannelNumber (DSID)
- truth_top_dilep_filter
- jet_pt[], jet_eta[], jet_phi[], jet_e[], jet_mv2c10[], jet_jvt[]
- el_pt[] + eta/phi/e/charge;
- mu_pt[] + eta/phi/e/charge;
- met_met, met_phi
Selecting a specific Higgs decay mode (truth_HDecay)In the simulated event samples (as opposed to the real data samples) if a Higgs particle is generated its decay is recorded via the truth_HDecay variable in the ntuple. This is an integer between 0 and 8:
![]() Comments |