@@ -386,10 +386,14 @@ struct Kstarqa {
386386 hInvMass.add (" CorrFactors/h3dGenKstarVsMultMCVsMultiplicity" , " MC centrality vs centrality vs p_{T}" , kTH3D , {axisNch, {101 , 0 .0f , 101 .0f }, ptAxis});
387387<<<<<<< HEAD
388388<<<<<<< HEAD
389+ <<<<<<< HEAD
390+ =======
391+ >>>>>>> c669bd852 (corrected event loss histograms)
389392 hInvMass.add (" CorrFactors/hSignalLossDenominator" , " Kstar generated before event selection" , kTH2F , {{ptAxis}, {axisNch}});
390393 hInvMass.add (" CorrFactors/hSignalLossNumerator" , " Kstar generated after event selection" , kTH2F , {{ptAxis}, {axisNch}});
391394 hInvMass.add (" CorrFactors/MultiplicityRec" , " Multiplicity in generated MC with at least 1 reconstruction" , kTH1F , {axisNch});
392395 hInvMass.add (" CorrFactors/MultiplicityGen" , " Multiplicity in generated MC" , kTH1F , {axisNch});
396+ <<<<<<< HEAD
393397=======
394398 hInvMass.add (" CorrFactors/hSignalLossDenominator" , " Kstar generated before event selection" , kTH2F , {{ptAxis}, {multiplicityAxis}});
395399 hInvMass.add (" CorrFactors/hSignalLossNumerator" , " Kstar generated after event selection" , kTH2F , {{ptAxis}, {multiplicityAxis}});
@@ -402,6 +406,8 @@ struct Kstarqa {
402406 hInvMass.add (" CorrFactors/MultiplicityRec2D" , " Multiplicity in generated MC with at least 1 reconstruction" , kTH2F , {{multiplicityAxis}, axisNch});
403407 hInvMass.add (" CorrFactors/MultiplicityGen2D" , " Multiplicity in generated MC" , kTH2F , {{multiplicityAxis}, axisNch});
404408>>>>>>> 2ddf06887 (minor fix to code)
409+ =======
410+ >>>>>>> c669bd852 (corrected event loss histograms)
405411 }
406412
407413 rEventSelection.add (" tracksCheckData" , " No. of events in the data" , kTH1I , {{10 , 0 , 10 }});
@@ -1802,11 +1808,14 @@ struct Kstarqa {
18021808 hInvMass.fill (HIST (" CorrFactors/hGenEvents" ), multiplicityNch, 2.5 );
18031809
18041810 float multiplicity = -1.0 ;
1811+ <<<<<<< HEAD
18051812 bool isSelectedEvent = false ;
18061813
18071814<<<<<<< HEAD
18081815=======
18091816 float multiplicity = 100 .5f ;
1817+ =======
1818+ >>>>>>> c669bd852 (corrected event loss histograms)
18101819 bool isSelectedEvent = false ;
18111820
18121821>>>>>>> 087e3b03d (different event/signal loss method)
@@ -1833,6 +1842,7 @@ struct Kstarqa {
18331842 // auto multiplicityGen = -1;
18341843 // multiplicityGen = mcCollision.centFT0M();
18351844
1845+ <<<<<<< HEAD
18361846<<<<<<< HEAD
18371847 hInvMass.fill (HIST (" CorrFactors/hMultiplicityVsMultMC" ), multiplicity, multiplicityNch);
18381848 hInvMass.fill (HIST (" CorrFactors/hNrecInGen" ), collisions.size ());
@@ -1847,11 +1857,18 @@ struct Kstarqa {
18471857>>>>>>> 087e3b03d (different event/signal loss method)
18481858=======
18491859 hInvMass.fill (HIST (" CorrFactors/hMultiplicityVsMultMC" ), multiplicity, mcCollision.multMCNParticlesEta08 ());
1860+ =======
1861+ hInvMass.fill (HIST (" CorrFactors/hMultiplicityVsMultMC" ), multiplicity, multiplicityNch);
1862+ >>>>>>> c669bd852 (corrected event loss histograms)
18501863 hInvMass.fill (HIST (" CorrFactors/hNrecInGen" ), collisions.size ());
1851- hInvMass.fill (HIST (" CorrFactors/MultiplicityGen2D " ), multiplicity, mcCollision. multMCNParticlesEta08 () );
1864+ hInvMass.fill (HIST (" CorrFactors/MultiplicityGen " ), multiplicityNch );
18521865 if (isSelectedEvent) {
1866+ <<<<<<< HEAD
18531867 hInvMass.fill (HIST (" CorrFactors/MultiplicityRec2D" ), multiplicity, mcCollision.multMCNParticlesEta08 ());
18541868>>>>>>> 2ddf06887 (minor fix to code)
1869+ =======
1870+ hInvMass.fill (HIST (" CorrFactors/MultiplicityRec" ), multiplicityNch);
1871+ >>>>>>> c669bd852 (corrected event loss histograms)
18551872 }
18561873
18571874 for (const auto & mcParticle : mcParticles) {
@@ -1897,6 +1914,7 @@ struct Kstarqa {
18971914 mother = daughter1 + daughter2; // Kstar meson
18981915
18991916 hInvMass.fill (HIST (" CorrFactors/h2dGenKstar" ), multiplicity, mother.Pt ());
1917+ <<<<<<< HEAD
19001918<<<<<<< HEAD
19011919 hInvMass.fill (HIST (" CorrFactors/h3dGenKstarVsMultMCVsMultiplicity" ), multiplicityNch, multiplicity, mother.Pt ());
19021920 hInvMass.fill (HIST (" CorrFactors/hSignalLossDenominator" ), mother.pt (), multiplicityNch);
@@ -1912,6 +1930,12 @@ struct Kstarqa {
19121930=======
19131931 hInvMass.fill (HIST (" CorrFactors/hSignalLossNumerator3D" ), mother.pt (), multiplicity, mcCollision.multMCNParticlesEta08 ());
19141932>>>>>>> 2ddf06887 (minor fix to code)
1933+ =======
1934+ hInvMass.fill (HIST (" CorrFactors/h3dGenKstarVsMultMCVsMultiplicity" ), multiplicityNch, multiplicity, mother.Pt ());
1935+ hInvMass.fill (HIST (" CorrFactors/hSignalLossDenominator" ), mother.pt (), multiplicityNch);
1936+ if (isSelectedEvent) {
1937+ hInvMass.fill (HIST (" CorrFactors/hSignalLossNumerator" ), mother.pt (), multiplicityNch);
1938+ >>>>>>> c669bd852 (corrected event loss histograms)
19151939 }
19161940 }
19171941 }
0 commit comments