@@ -185,7 +185,7 @@ struct upcRhoAnalysis {
185185 QC.add (" QC/tracks/raw/hTpcNClsCrossedRows" , " ;TPC crossed rows;counts" , kTH1D , {{200 , 0.0 , 200.0 }});
186186 QC.add (" QC/tracks/raw/hPt" , " ;p_{T} (GeV/#it{c});counts" , kTH1D , {{1000 , 0.0 , 10.0 }});
187187 QC.add (" QC/tracks/raw/hEta" , " ;y;counts" , kTH1D , {{180 , -0.9 , 0.9 }});
188- QC.add (" QC/tracks/raw/hPhi" , " ;#phi;counts" , kTH1D , {{180 , 0.0 , o2::constants::math::TwoPI}});// tracks passing selections
188+ QC.add (" QC/tracks/raw/hPhi" , " ;#phi;counts" , kTH1D , {{180 , 0.0 , o2::constants::math::TwoPI}}); // tracks passing selections
189189 QC.add (" QC/tracks/cut/hTpcNSigmaPi2D" , " ;TPC n#sigma(#pi_{leading});TPC n#sigma(#pi_{subleading});counts" , kTH2D , {{400 , -10.0 , 30.0 }, {400 , -10.0 , 30.0 }});
190190 QC.add (" QC/tracks/cut/hTpcNSigmaEl2D" , " ;TPC n#sigma(e_{leading});TPC n#sigma(e_{subleading});counts" , kTH2D , {{400 , -10.0 , 30.0 }, {400 , -10.0 , 30.0 }});
191191 QC.add (" QC/tracks/cut/hTpcSignalVsP" , " ;p (GeV/#it{c});TPC signal;counts" , kTH2D , {ptAxis, {500 , 0.0 , 500.0 }});
@@ -726,7 +726,7 @@ struct upcRhoAnalysis {
726726 tofClass = 2 ;
727727 else if (leadingMomentumTrack.hasTOF () && subleadingMomentumTrack.hasTOF ())
728728 tofClass = 3 ;
729-
729+
730730 // fill tree
731731 std::vector<int > trackSigns = {leadingMomentumTrack.sign (), subleadingMomentumTrack.sign ()};
732732 std::vector<double > trackPts = {leadingPt, subleadingPt};
@@ -738,9 +738,9 @@ struct upcRhoAnalysis {
738738 std::vector<double > trackDcaXYs = {leadingMomentumTrack.dcaXY (), subleadingMomentumTrack.dcaXY ()};
739739 std::vector<double > trackDcaZs = {leadingMomentumTrack.dcaZ (), subleadingMomentumTrack.dcaZ ()};
740740 std::vector<double > trackTpcSignals = {leadingMomentumTrack.tpcSignal (), subleadingMomentumTrack.tpcSignal ()};
741- Tree (collision.runNumber (), collision.globalBC (), collision.numContrib (), collision.posX (), collision.posY (), collision.posZ (), collision.totalFT0AmplitudeA (), collision.totalFT0AmplitudeC (), collision.totalFV0AmplitudeA (), collision.totalFDDAmplitudeA (), collision.totalFDDAmplitudeC (), collision.timeFT0A (), collision.timeFT0C (), collision.timeFV0A (), collision.timeFDDA (), collision.timeFDDC (), collision.energyCommonZNA (), collision.energyCommonZNC (), collision.timeZNA (), collision.timeZNC (), neutronClass,
742- totalCharge, pT, system.Eta (), system.Phi (), mass, phiRandom, phiCharge,
743- trackSigns, trackPts, trackEtas, trackPhis, trackMs, trackPiPIDs, trackElPIDs, trackDcaXYs, trackDcaZs, trackTpcSignals, tofClass);
741+ Tree (collision.runNumber (), collision.globalBC (), collision.numContrib (), collision.posX (), collision.posY (), collision.posZ (), collision.totalFT0AmplitudeA (), collision.totalFT0AmplitudeC (), collision.totalFV0AmplitudeA (), collision.totalFDDAmplitudeA (), collision.totalFDDAmplitudeC (), collision.timeFT0A (), collision.timeFT0C (), collision.timeFV0A (), collision.timeFDDA (), collision.timeFDDC (), collision.energyCommonZNA (), collision.energyCommonZNC (), collision.timeZNA (), collision.timeZNC (), neutronClass,
742+ totalCharge, pT, system.Eta (), system.Phi (), mass, phiRandom, phiCharge,
743+ trackSigns, trackPts, trackEtas, trackPhis, trackMs, trackPiPIDs, trackElPIDs, trackDcaXYs, trackDcaZs, trackTpcSignals, tofClass);
744744 // fill raw histograms according to the total charge
745745 switch (totalCharge) {
746746 case 0 :
0 commit comments