@@ -397,6 +397,7 @@ struct SingleTrackQCMC {
397397 fRegistry .add (" Track/PromptLF/positive/hPtGen_DeltaEta" , " muon #eta resolution;p_{T}^{gen} (GeV/c);#eta^{rec} - #eta^{gen}" , o2::framework::HistType::kTH2F , {{200 , 0 , 10 }, {100 , -0 .05f , 0 .05f }}, true );
398398 fRegistry .add (" Track/PromptLF/positive/hPtGen_DeltaPhi" , " muon #varphi resolution;p_{T}^{gen} (GeV/c);#varphi^{rec} - #varphi^{gen} (rad.)" , o2::framework::HistType::kTH2F , {{200 , 0 , 10 }, {100 , -0 .05f , 0 .05f }}, true );
399399 fRegistry .add (" Track/PromptLF/positive/hdR_Chi2MatchMCHMFT" , " dr vs. matching chi2 MCH-MFT;chi2 match MCH-MFT;#DeltaR;" , o2::framework::HistType::kTH2F , {{200 , 0 .0f , 100 }, {200 , 0 , 0.5 }}, false );
400+ fRegistry .add (" Track/PromptLF/positive/hLog10Chi2IP" , " chi2IP;log_{10}(#chi^{2}_{IP})" , o2::framework::HistType::kTH1F , {{100 , -5 , 5 }}, false );
400401 }
401402 fRegistry .addClone (" Track/PromptLF/positive/" , " Track/PromptLF/negative/" );
402403 fRegistry .addClone (" Track/PromptLF/" , " Track/NonPromptLF/" );
@@ -793,6 +794,7 @@ struct SingleTrackQCMC {
793794 fRegistry .fill (HIST (" Track/" ) + HIST (lepton_source_types[lepton_source_id]) + HIST (" positive/hChi2MatchMCHMFT_Pt" ), track.pt (), track.chi2MatchMCHMFT ());
794795 fRegistry .fill (HIST (" Track/" ) + HIST (lepton_source_types[lepton_source_id]) + HIST (" positive/hMFTClusterMap" ), track.mftClusterMap ());
795796 fRegistry .fill (HIST (" Track/" ) + HIST (lepton_source_types[lepton_source_id]) + HIST (" positive/hdR_Chi2MatchMCHMFT" ), track.chi2MatchMCHMFT (), std::sqrt (deta * deta + dphi * dphi));
797+ fRegistry .fill (HIST (" Track/" ) + HIST (lepton_source_types[lepton_source_id]) + HIST (" positive/hLog10Chi2IP" ), std::log10 (track.chi2IP ()));
796798 fRegistry .fill (HIST (" Track/" ) + HIST (lepton_source_types[lepton_source_id]) + HIST (" positive/hPtGen_DeltaPtOverPtGen" ), mctrack.pt (), (track.pt () - mctrack.pt ()) / mctrack.pt ());
797799 fRegistry .fill (HIST (" Track/" ) + HIST (lepton_source_types[lepton_source_id]) + HIST (" positive/hPtGen_DeltaEta" ), mctrack.pt (), track.eta () - mctrack.eta ());
798800 fRegistry .fill (HIST (" Track/" ) + HIST (lepton_source_types[lepton_source_id]) + HIST (" positive/hPtGen_DeltaPhi" ), mctrack.pt (), track.phi () - mctrack.phi ());
@@ -826,6 +828,7 @@ struct SingleTrackQCMC {
826828 fRegistry .fill (HIST (" Track/" ) + HIST (lepton_source_types[lepton_source_id]) + HIST (" negative/hChi2MatchMCHMFT_Pt" ), track.pt (), track.chi2MatchMCHMFT ());
827829 fRegistry .fill (HIST (" Track/" ) + HIST (lepton_source_types[lepton_source_id]) + HIST (" negative/hMFTClusterMap" ), track.mftClusterMap ());
828830 fRegistry .fill (HIST (" Track/" ) + HIST (lepton_source_types[lepton_source_id]) + HIST (" negative/hdR_Chi2MatchMCHMFT" ), track.chi2MatchMCHMFT (), std::sqrt (deta * deta + dphi * dphi));
831+ fRegistry .fill (HIST (" Track/" ) + HIST (lepton_source_types[lepton_source_id]) + HIST (" negative/hLog10Chi2IP" ), std::log10 (track.chi2IP ()));
829832 fRegistry .fill (HIST (" Track/" ) + HIST (lepton_source_types[lepton_source_id]) + HIST (" negative/hPtGen_DeltaPtOverPtGen" ), mctrack.pt (), (track.pt () - mctrack.pt ()) / mctrack.pt ());
830833 fRegistry .fill (HIST (" Track/" ) + HIST (lepton_source_types[lepton_source_id]) + HIST (" negative/hPtGen_DeltaEta" ), mctrack.pt (), track.eta () - mctrack.eta ());
831834 fRegistry .fill (HIST (" Track/" ) + HIST (lepton_source_types[lepton_source_id]) + HIST (" negative/hPtGen_DeltaPhi" ), mctrack.pt (), track.phi () - mctrack.phi ());
0 commit comments