@@ -146,7 +146,6 @@ struct matchingMFT {
146146 fRegistry .add (" MFTMCHMID/primary/correct/hPt" , " pT;p_{T} (GeV/c)" , kTH1F , {{100 , 0 .0f , 10 }}, false );
147147 fRegistry .add (" MFTMCHMID/primary/correct/hEtaPhi" , " #eta vs. #varphi;#varphi (rad.);#eta" , kTH2F , {{180 , 0 , 2 * M_PI}, {100 , -6 .f , -1 .f }}, false );
148148 fRegistry .add (" MFTMCHMID/primary/correct/hEtaPhi_MatchedMCHMID" , " #eta vs. #varphi;#varphi (rad.);#eta" , kTH2F , {{180 , 0 , 2 * M_PI}, {100 , -6 .f , -1 .f }}, false );
149- fRegistry .add (" MFTMCHMID/primary/correct/hDeltaEtaDeltaPhi" , " #Delta#eta vs. #Delta#varphi;#Delta#varphi = #varphi_{sa} - #varphi_{gl} (rad.);#Delta#eta = #eta_{sa} - #eta_{gl}" , kTH2F , {{180 , -M_PI, M_PI}, {400 , -2 .f , 2 .f }}, false );
150149 fRegistry .add (" MFTMCHMID/primary/correct/hDiffCollId" , " difference in collision index;collisionId_{TTCA} - collisionId_{MP}" , kTH1F , {{41 , -20.5 , +20.5 }}, false );
151150 fRegistry .add (" MFTMCHMID/primary/correct/hSign" , " sign;sign" , kTH1F , {{3 , -1.5 , +1.5 }}, false );
152151 fRegistry .add (" MFTMCHMID/primary/correct/hNclusters" , " Nclusters;Nclusters" , kTH1F , {{21 , -0 .5f , 20.5 }}, false );
@@ -283,17 +282,12 @@ struct matchingMFT {
283282 return ;
284283 }
285284
286- float deta = etaMatchedMCHMID - eta;
287- float dphi = phiMatchedMCHMID - phi;
288- o2::math_utils::bringToPMPi (dphi);
289-
290285 fRegistry .fill (HIST (" hMuonType" ), fwdtrack.trackType ());
291286 if (isPrimary) {
292287 if (isMatched) {
293288 fRegistry .fill (HIST (" MFTMCHMID/primary/correct/hPt" ), pt);
294289 fRegistry .fill (HIST (" MFTMCHMID/primary/correct/hEtaPhi" ), phi, eta);
295290 fRegistry .fill (HIST (" MFTMCHMID/primary/correct/hEtaPhi_MatchedMCHMID" ), phiMatchedMCHMID, etaMatchedMCHMID);
296- fRegistry .fill (HIST (" MFTMCHMID/primary/correct/hDeltaEtaDeltaPhi" ), dphi, deta);
297291 fRegistry .fill (HIST (" MFTMCHMID/primary/correct/hDiffCollId" ), collision.globalIndex () - fwdtrack.collisionId ());
298292 fRegistry .fill (HIST (" MFTMCHMID/primary/correct/hSign" ), fwdtrack.sign ());
299293 fRegistry .fill (HIST (" MFTMCHMID/primary/correct/hNclusters" ), fwdtrack.nClusters ());
@@ -322,7 +316,6 @@ struct matchingMFT {
322316 fRegistry .fill (HIST (" MFTMCHMID/primary/wrong/hPt" ), pt);
323317 fRegistry .fill (HIST (" MFTMCHMID/primary/wrong/hEtaPhi" ), phi, eta);
324318 fRegistry .fill (HIST (" MFTMCHMID/primary/wrong/hEtaPhi_MatchedMCHMID" ), phiMatchedMCHMID, etaMatchedMCHMID);
325- fRegistry .fill (HIST (" MFTMCHMID/primary/wrong/hDeltaEtaDeltaPhi" ), dphi, deta);
326319 fRegistry .fill (HIST (" MFTMCHMID/primary/wrong/hDiffCollId" ), collision.globalIndex () - fwdtrack.collisionId ());
327320 fRegistry .fill (HIST (" MFTMCHMID/primary/wrong/hSign" ), fwdtrack.sign ());
328321 fRegistry .fill (HIST (" MFTMCHMID/primary/wrong/hNclusters" ), fwdtrack.nClusters ());
@@ -353,7 +346,6 @@ struct matchingMFT {
353346 fRegistry .fill (HIST (" MFTMCHMID/secondary/correct/hPt" ), pt);
354347 fRegistry .fill (HIST (" MFTMCHMID/secondary/correct/hEtaPhi" ), phi, eta);
355348 fRegistry .fill (HIST (" MFTMCHMID/secondary/correct/hEtaPhi_MatchedMCHMID" ), phiMatchedMCHMID, etaMatchedMCHMID);
356- fRegistry .fill (HIST (" MFTMCHMID/secondary/correct/hDeltaEtaDeltaPhi" ), dphi, deta);
357349 fRegistry .fill (HIST (" MFTMCHMID/secondary/correct/hDiffCollId" ), collision.globalIndex () - fwdtrack.collisionId ());
358350 fRegistry .fill (HIST (" MFTMCHMID/secondary/correct/hSign" ), fwdtrack.sign ());
359351 fRegistry .fill (HIST (" MFTMCHMID/secondary/correct/hNclusters" ), fwdtrack.nClusters ());
@@ -382,7 +374,6 @@ struct matchingMFT {
382374 fRegistry .fill (HIST (" MFTMCHMID/secondary/wrong/hPt" ), pt);
383375 fRegistry .fill (HIST (" MFTMCHMID/secondary/wrong/hEtaPhi" ), phi, eta);
384376 fRegistry .fill (HIST (" MFTMCHMID/secondary/wrong/hEtaPhi_MatchedMCHMID" ), phiMatchedMCHMID, etaMatchedMCHMID);
385- fRegistry .fill (HIST (" MFTMCHMID/secondary/wrong/hDeltaEtaDeltaPhi" ), dphi, deta);
386377 fRegistry .fill (HIST (" MFTMCHMID/secondary/wrong/hDiffCollId" ), collision.globalIndex () - fwdtrack.collisionId ());
387378 fRegistry .fill (HIST (" MFTMCHMID/secondary/wrong/hSign" ), fwdtrack.sign ());
388379 fRegistry .fill (HIST (" MFTMCHMID/secondary/wrong/hNclusters" ), fwdtrack.nClusters ());
0 commit comments