@@ -921,7 +921,7 @@ struct cascadeFlow {
921921 histos.add (" ShiftTPCL" , " ShiftTPCL" , kTProfile3D , {CentAxis, basisAxis, shiftAxis});
922922 histos.add (" ShiftTPCR" , " ShiftTPCR" , kTProfile3D , {CentAxis, basisAxis, shiftAxis});
923923
924- // PID TPC
924+ // PID TPC
925925 histos.add (" hNsigmaTPCBachPi" , " hNsigmaTPCBachPi" , HistType::kTH2F , {axisNTPC, {20 , 0 , 10 }});
926926 histos.add (" hNsigmaTPCBachKa" , " hNsigmaTPCBachKa" , HistType::kTH2F , {axisNTPC, {20 , 0 , 10 }});
927927 histos.add (" hNsigmaTPCPi" , " hNsigmaTPCPi" , HistType::kTH2F , {axisNTPC, {20 , 0 , 10 }});
@@ -945,6 +945,11 @@ struct cascadeFlow {
945945 histos.add (" Psi_EP_FT0A_shifted" , " Psi_EP_FT0C_shifted" , HistType::kTH2D , {CentAxis, {100 , -o2::constants::math::PI , o2::constants::math::PI }});
946946 histos.add (" Psi_EP_TPCA_shifted" , " Psi_EP_FT0C_shifted" , HistType::kTH2D , {CentAxis, {100 , -o2::constants::math::PI , o2::constants::math::PI }});
947947 histos.add (" Psi_EP_TPCC_shifted" , " Psi_EP_FT0C_shifted" , HistType::kTH2D , {CentAxis, {100 , -o2::constants::math::PI , o2::constants::math::PI }});
948+ histos.add (" Psi_EP_FT0C_notshifted" , " Psi_EP_FT0C_notshifted" , HistType::kTH2D , {CentAxis, {100 , -o2::constants::math::PI , o2::constants::math::PI }});
949+ histos.add (" Psi_EP_FV0A_notshifted" , " Psi_EP_FT0C_notshifted" , HistType::kTH2D , {CentAxis, {100 , -o2::constants::math::PI , o2::constants::math::PI }});
950+ histos.add (" Psi_EP_FT0A_notshifted" , " Psi_EP_FT0C_notshifted" , HistType::kTH2D , {CentAxis, {100 , -o2::constants::math::PI , o2::constants::math::PI }});
951+ histos.add (" Psi_EP_TPCA_notshifted" , " Psi_EP_FT0C_notshifted" , HistType::kTH2D , {CentAxis, {100 , -o2::constants::math::PI , o2::constants::math::PI }});
952+ histos.add (" Psi_EP_TPCC_notshifted" , " Psi_EP_FT0C_notshifted" , HistType::kTH2D , {CentAxis, {100 , -o2::constants::math::PI , o2::constants::math::PI }});
948953 histos.add (" hPsiZDCA_vs_ZDCC" , " hPsiZDCA_vs_ZDCC" , HistType::kTH2D , {{100 , -o2::constants::math::PI , o2::constants::math::PI }, {100 , -o2::constants::math::PI , o2::constants::math::PI }});
949954 histos.add (" hEventNchCorrelation" , " hEventNchCorrelation" , kTH2F , {{5000 , 0 , 5000 }, {5000 , 0 , 2500 }});
950955 histos.add (" hEventPVcontributorsVsCentrality" , " hEventPVcontributorsVsCentrality" , kTH2F , {{100 , 0 , 100 }, {5000 , 0 , 5000 }});
@@ -1288,6 +1293,9 @@ struct cascadeFlow {
12881293 const float psiTPCA = std::atan2 (coll.qvecBPosIm (), coll.qvecBPosRe ()) * 0 .5f ;
12891294 const float psiTPCC = std::atan2 (coll.qvecBNegIm (), coll.qvecBNegRe ()) * 0 .5f ;
12901295 float psiT0CCorr = psiT0C;
1296+ histos.fill (HIST (" Psi_EP_FT0C_notshifted" ), coll.centFT0C (), psiT0C);
1297+ histos.fill (HIST (" Psi_EP_TPCA_notshifted" ), coll.centFT0C (), psiTPCA);
1298+ histos.fill (HIST (" Psi_EP_TPCC_notshifted" ), coll.centFT0C (), psiTPCC);
12911299
12921300 for (int ishift = 1 ; ishift <= 10 ; ishift++) {
12931301 histos.fill (HIST (" ShiftFT0C" ), coll.centFT0C (), 0.5 , ishift - 0.5 , std::sin (ishift * 2 * psiT0C));
@@ -1321,7 +1329,6 @@ struct cascadeFlow {
13211329 histos.fill (HIST (" hPsiT0C" ), psiT0CCorr);
13221330 histos.fill (HIST (" hPsiZDCA_vs_ZDCC" ), coll.psiZDCC (), coll.psiZDCA ());
13231331 histos.fill (HIST (" hPsiT0CvsCentFT0C" ), coll.centFT0C (), psiT0CCorr);
1324-
13251332 resolution.fill (HIST (" QVectorsT0CTPCA" ), eventplaneVecT0C.Dot (eventplaneVecTPCA), coll.centFT0C ());
13261333 resolution.fill (HIST (" QVectorsT0CTPCC" ), eventplaneVecT0C.Dot (eventplaneVecTPCC), coll.centFT0C ());
13271334 resolution.fill (HIST (" QVectorsTPCAC" ), eventplaneVecTPCA.Dot (eventplaneVecTPCC), coll.centFT0C ());
@@ -1613,6 +1620,9 @@ struct cascadeFlow {
16131620 const float psiT0C = std::atan2 (coll.qvecFT0CIm (), coll.qvecFT0CRe ()) * 0 .5f ;
16141621 const float psiTPCA = std::atan2 (coll.qvecBPosIm (), coll.qvecBPosRe ()) * 0 .5f ;
16151622 const float psiTPCC = std::atan2 (coll.qvecBNegIm (), coll.qvecBNegRe ()) * 0 .5f ;
1623+ histos.fill (HIST (" Psi_EP_FT0C_notshifted" ), coll.centFT0C (), psiT0C);
1624+ histos.fill (HIST (" Psi_EP_TPCA_notshifted" ), coll.centFT0C (), psiTPCA);
1625+ histos.fill (HIST (" Psi_EP_TPCC_notshifted" ), coll.centFT0C (), psiTPCC);
16161626 float psiT0CCorr = psiT0C;
16171627 for (int ishift = 1 ; ishift <= 10 ; ishift++) {
16181628 histos.fill (HIST (" ShiftFT0C" ), coll.centFT0C (), 0.5 , ishift - 0.5 , std::sin (ishift * 2 * psiT0C));
@@ -1965,6 +1975,11 @@ struct cascadeFlow {
19651975 const float psiT0A = std::atan2 (qvecImT0A, qvecReT0A) * 0 .5f ;
19661976 const float psiTPCA = std::atan2 (coll.qvecBPosIm (), coll.qvecBPosRe ()) * 0 .5f ;
19671977 const float psiTPCC = std::atan2 (coll.qvecBNegIm (), coll.qvecBNegRe ()) * 0 .5f ;
1978+ histos.fill (HIST (" Psi_EP_FT0C_notshifted" ), coll.centFT0C (), psiT0C);
1979+ histos.fill (HIST (" Psi_EP_FV0A_notshifted" ), coll.centFT0C (), psiV0A);
1980+ histos.fill (HIST (" Psi_EP_FT0A_notshifted" ), coll.centFT0C (), psiT0A);
1981+ histos.fill (HIST (" Psi_EP_TPCA_notshifted" ), coll.centFT0C (), psiTPCA);
1982+ histos.fill (HIST (" Psi_EP_TPCC_notshifted" ), coll.centFT0C (), psiTPCC);
19681983 float psiT0CCorr = psiT0C;
19691984 for (int ishift = 1 ; ishift <= 10 ; ishift++) {
19701985 histos.fill (HIST (" ShiftFT0C" ), collisionCentrality, 0.5 , ishift - 0.5 , std::sin (ishift * 2 * psiT0C));
@@ -2244,6 +2259,9 @@ struct cascadeFlow {
22442259 const float psiT0C = std::atan2 (coll.qvecFT0CIm (), coll.qvecFT0CRe ()) * 0 .5f ;
22452260 const float psiTPCA = std::atan2 (coll.qvecBPosIm (), coll.qvecBPosRe ()) * 0 .5f ;
22462261 const float psiTPCC = std::atan2 (coll.qvecBNegIm (), coll.qvecBNegRe ()) * 0 .5f ;
2262+ histos.fill (HIST (" Psi_EP_FT0C_notshifted" ), coll.centFT0C (), psiT0C);
2263+ histos.fill (HIST (" Psi_EP_TPCA_notshifted" ), coll.centFT0C (), psiTPCA);
2264+ histos.fill (HIST (" Psi_EP_TPCC_notshifted" ), coll.centFT0C (), psiTPCC);
22472265 float psiT0CCorr = psiT0C;
22482266 for (int ishift = 1 ; ishift <= 10 ; ishift++) {
22492267 histos.fill (HIST (" ShiftFT0C" ), coll.centFT0C (), 0.5 , ishift - 0.5 , std::sin (ishift * 2 * psiT0C));
0 commit comments