@@ -141,12 +141,11 @@ struct sigmaminustask {
141141 // BC ID comparison histograms
142142 rSigmaMinus.add (" hMcCollIdCoherence" , " McCollId (coll == daug)" , {HistType::kTH1F , {boolAxis}});
143143 rSigmaMinus.add (" h2CollId_BCId" , " (McCollId coherence) vs (EvSelBC == McBC)" , {HistType::kTH2F , {boolAxis, boolAxis}});
144- rSigmaMinus.add (" h2BCId_comp1" , " (BC == McBC) vs (BC == EvSelBC)" , {HistType::kTH2F , {boolAxis, boolAxis}});
145- rSigmaMinus.add (" h2BCId_comp2" , " (McBC == EvSelBC) vs (BC == EvSelBC)" , {HistType::kTH2F , {boolAxis, boolAxis}});
144+ rSigmaMinus.add (" h2BCId_comp" , " (McBC == EvSelBC) vs (BC == EvSelBC)" , {HistType::kTH2F , {boolAxis, boolAxis}});
146145 }
147146
148147 if (doprocessFindable) {
149- std::vector<std::string> filterLabels = {" Initial" , " ITS/TPC present" , " ITS/TPC quality" , " Moth p_{T}" , " min #eta" , " max #Delta#phi" , " max #Delta Z" , " max DCAmoth" , " min DCAdaug" , " min Radius" , " sel8 coll" , " Daug TOF" };
148+ std::vector<std::string> filterLabels = {" Initial" , " ITS/TPC present" , " ITS/TPC quality" , " Moth p_{T}" , " max #eta" , " max #Delta#phi" , " max #Delta Z" , " max DCAmoth" , " min DCAdaug" , " min Radius" , " sel8 coll" , " Daug TOF" };
150149
151150 // Add findable Sigma histograms
152151 rFindable.add (" hfakeITSfindable" , " hfakeITSfindable" , {HistType::kTH1F , {fakeITSAxis}});
@@ -314,14 +313,13 @@ struct sigmaminustask {
314313 }
315314 // Check bunch crossing ID coherence
316315 auto mcCollision = mcTrackPiDau.template mcCollision_as <aod::McCollisions>();
317- bool BCId_vs_MCBCId = collision.bcId () == mcCollision.bcId ();
316+ // bool BCId_vs_MCBCId = collision.bcId() == mcCollision.bcId();
318317 bool BCId_vs_EvSel = collision.bcId () == collision.foundBCId ();
319318 bool EvSel_vs_MCBCId = collision.foundBCId () == mcCollision.bcId ();
320319
321320 rSigmaMinus.fill (HIST (" hMcCollIdCoherence" ), static_cast <int >(mcCollisionIdCheck));
322321 rSigmaMinus.fill (HIST (" h2CollId_BCId" ), static_cast <int >(mcCollisionIdCheck), static_cast <int >(EvSel_vs_MCBCId));
323- rSigmaMinus.fill (HIST (" h2BCId_comp1" ), static_cast <int >(BCId_vs_MCBCId), static_cast <int >(BCId_vs_EvSel));
324- rSigmaMinus.fill (HIST (" h2BCId_comp2" ), static_cast <int >(EvSel_vs_MCBCId), static_cast <int >(BCId_vs_EvSel));
322+ rSigmaMinus.fill (HIST (" h2BCId_comp" ), static_cast <int >(EvSel_vs_MCBCId), static_cast <int >(BCId_vs_EvSel));
325323
326324 rSigmaMinus.fill (HIST (" h2MassPtMCRec" ), kinkCand.mothSign () * kinkCand.ptMoth (), kinkCand.mSigmaMinus ());
327325 rSigmaMinus.fill (HIST (" h2MassResolution" ), kinkCand.mothSign () * kinkCand.ptMoth (), (kinkCand.mSigmaMinus () - MotherMassMC) / MotherMassMC);
0 commit comments