Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
Added: | ||||||||
> > | ||||||||
Changed: | ||||||||
< < |
| |||||||
> > |
Code information (from tutorial)Specifically the code for IP Taggers is: const Analysis::IPInfoBase* infob=myJet->tagInfo<Analysis::IPInfoBase>("IP3D"); // Probability for each hypothesis std::vector<double>prob=infob->tagLikelihood(); double pb=prob[0]; // b likelihood double pu=prob[1]; // udsg likelihood IPInfoPlus is not always on the AOD but can get more info, again for IP taggers: const Analysis::IPInfoPlus* infop = myJet->tagInfo<Analysis::IPInfoPlus>("IPInfoPlus"); int ntrk=infop->numTrackInfo(); // number of contributing tracks for (int i=0; i<ntrk; i++){ Analysis::IPTrackInfo trackInfo = infop->getTrackInfo(itinf); // Individual contributions for weights double w2D = trackInfo.trackWeight2D(); // for IP2D, also 3D and JP for IP3D and JetProb // Impact parameter information double d0val = trackInfo.d0Value(0); // also d0Significance and Z0 }Additional Inforamation: SVInfoPlusSVInfoPlus can be obtained from "SV0InfoPlus" in the argument to get the information (a correction on the tutorial mentioned above). Note that the InfoPlus object will be zero if there are no track satisfying the criterion. One could then choose an orthogonal sample using jetweight. For us this would be considered another channel. Detailed information on secondary vertex based taggers: SVInfoPlus const Analysis::SVInfoPlus* info= myJet->taginfo<Analysis::SVInfoPlus>("SVInfoPlus"); Information about secondary vertex: int ntrkv = info->getNGTrkInSvx() // number of good tracks in vertex double mass=info->getMass(); // mass of secondary vertex int n2t=info->getN2T(); // Number of two-track vertices double efrc = info->getEnergyFraction(); // energy fraction svx/jetMods for SV0Use the following to get the SV0 information const Analysis::SVInfoPlus* info= myJet->taginfo<Analysis::SVInfoPlus>("SV0InfoPlus"); Perhaps all the rest follows!MC Truthconst Trk::RecVertex& sv = info->getRecSvx(); // reference to svx When one looks for a jet, see if it is labeled as b, then c then tau. If not it is light. To get the label std::string lable="N/A"; const Analysis::TruthInfo *mcinfo=myJet->tagInfo<Analysis::TruthInfo>("TruthInfo"); if (mcinfo){ label=mcinfo->jetTruthLabel(); } Label is "B", "C", "T", "N/A" for b,c,tau and usdg jets. Distance to closest heavy flavor parton on tau lepton: double drMinToB = mcinfo->deltaRMinTo("B"); double drMinToC = mcinfo->deltaRMinTo("C"); double drMinToT = mcinfo->deltaRMinTo("T");Retrieving CalibrationTo retrieve calibration to get efficiencies and rejection rates plus uncerrtainties use CalibrationDataInterface. Choose between the athena based and standalone tool. CalibrationDataInterfaceROOT tool("SV0"); Analysis::CalibrationDataVariables test; Analysis::CalibrationDataInterfaceROOT::Uncertainty uncsf=CalibrationDataInterfaceROOT::total std::pair<double, double> sf= tool.getScaleFactor(test,flav,"5.72",uncsf); std::pair<double, double> eff= tool.Efficiency(test,flav,"5.72",uncsf); std::pair<double, double> effMC= tool.getMCEfficiency(test,flav,"5.72",uncsf); Can also retrieve stat and sys error. JetTagAna.cxxExample analysesThe file JetTagAna.cxx shows example analysis of jets. The analysis ttbar lepton + jets used the weights to fit them to get cross section. The dijet and jx MC samples are used for calibration but the jx samples need reweighting and are tricky to get right. Flavor Tagging uses the BTaggingCalibrationDataInterface. The plots in the sharepoint link![]() ![]() | |||||||
-- RichardStDenis - 2011-03-29 |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Added: | ||||||||
> > |
|