@@ -76,6 +76,10 @@ DECLARE_SOA_COLUMN(S11A, s11a, float); //! Weighted multiplicity (p = 1,
7676DECLARE_SOA_COLUMN (S12A , s12a, float ); // ! Weighted multiplicity (p = 1, k = 2)
7777DECLARE_SOA_COLUMN (S13A , s13a, float ); // ! Weighted multiplicity (p = 1, k = 3)
7878DECLARE_SOA_COLUMN (S31A , s31a, float ); // ! Weighted multiplicity (p = 3, k = 1)
79+ DECLARE_SOA_COLUMN (S21A , s21a, float ); // ! Weighted multiplicity (p = 2, k = 1)
80+ DECLARE_SOA_COLUMN (S22A , s22a, float ); // ! Weighted multiplicity (p = 2, k = 2)
81+ DECLARE_SOA_COLUMN (S41A , s41a, float ); // ! Weighted multiplicity (p = 4, k = 1)
82+ DECLARE_SOA_COLUMN (S14A , s14a, float ); // ! Weighted multiplicity (p = 1, k = 4)
7983DECLARE_SOA_COLUMN (CORR2REF , corr2ref, float ); // ! Ref Flow correlator <2>
8084DECLARE_SOA_COLUMN (CORR4REF , corr4ref, float ); // ! Ref Flow correlator <4>
8185DECLARE_SOA_COLUMN (M11REF , m11ref, float ); // ! Weighted multiplicity of <<2>> for reference flow
@@ -110,7 +114,7 @@ DECLARE_SOA_TABLE(ReducedEventsQvector, "AOD", "REQVECTOR", //! Event Q-vecto
110114
111115DECLARE_SOA_TABLE (ReducedEventsQvectorExtra, " AOD" , " REQVECTOREXTRA" , // ! Event Q-vector extra information
112116 reducedevent::Q42XA , reducedevent::Q42YA , reducedevent::Q23XA , reducedevent::Q23YA ,
113- reducedevent::S11A , reducedevent::S12A , reducedevent::S13A , reducedevent::S31A );
117+ reducedevent::S11A , reducedevent::S12A , reducedevent::S21A , reducedevent:: S13A , reducedevent::S31A );
114118
115119DECLARE_SOA_TABLE (ReducedEventsQvectorCentr, " AOD" , " REQVECTORCTR" , // ! Event Q-vector information from central framework
116120 qvec::QvecFT0ARe, qvec::QvecFT0AIm, qvec::QvecFT0CRe, qvec::QvecFT0CIm, qvec::QvecFT0MRe, qvec::QvecFT0MIm, qvec::QvecFV0ARe, qvec::QvecFV0AIm, qvec::QvecBPosRe, qvec::QvecBPosIm, qvec::QvecBNegRe, qvec::QvecBNegIm,
@@ -530,6 +534,11 @@ DECLARE_SOA_COLUMN(R2SP, r2sp, float); //! Eve
530534DECLARE_SOA_COLUMN (R2EP , r2ep, float ); // ! Event plane resolution for EP method
531535DECLARE_SOA_COLUMN (CORR2POI , corr2poi, float ); // ! POI FLOW CORRELATOR <2'>
532536DECLARE_SOA_COLUMN (CORR4POI , corr4poi, float ); // ! POI FLOW CORRELATOR <4'>
537+ DECLARE_SOA_COLUMN (CORR2REF , corr2ref, float ); // ! POI FLOW CORRELATOR <2> (by dimuons)
538+ DECLARE_SOA_COLUMN (CORR4REF , corr4ref, float ); // ! POI FLOW CORRELATOR <4> (by dimuons)
539+ DECLARE_SOA_COLUMN (M11REF , m11ref, float ); // ! Weighted multiplicity of <<2>> for reference flow (by dimuons)
540+ DECLARE_SOA_COLUMN (M1111REF , m1111ref, float ); // ! Weighted multiplicity of <<4>> for reference flow (by dimuons)
541+ DECLARE_SOA_COLUMN (MultA, multa, float ); // ! Multiplicity A of reference flow (by dimuons)
533542DECLARE_SOA_COLUMN (M01POI , m01poi, float ); // ! POI event weight for <2'>
534543DECLARE_SOA_COLUMN (M0111POI , m0111poi, float ); // ! POI event weight for <4'>
535544DECLARE_SOA_COLUMN (MultDimuons, multdimuons, int ); // ! Dimuon multiplicity
@@ -586,6 +595,14 @@ DECLARE_SOA_TABLE(DileptonsFlow, "AOD", "RTDILEPTONFLOW", //!
586595 reducedpair::Cos2DeltaPhi,
587596 reducedpair::Cos3DeltaPhi);
588597
598+ DECLARE_SOA_TABLE (RefFlowDimuons, " AOD" , " RTREFFLOWDIMUON" , // !
599+ reducedpair::CORR2REF ,
600+ reducedpair::CORR4REF ,
601+ reducedpair::M11REF ,
602+ reducedpair::M1111REF ,
603+ reducedpair::CentFT0C,
604+ reducedpair::MultA);
605+
589606// Dilepton collision information (joined with DileptonsExtra) allowing to connect different tables (cross PWGs)
590607DECLARE_SOA_TABLE (DileptonsInfo, " AOD" , " RTDILEPTONINFO" ,
591608 reducedpair::CollisionId, collision::PosX, collision::PosY, collision::PosZ);
@@ -631,6 +648,7 @@ using Dimuon = Dimuons::iterator;
631648using DielectronExtra = DielectronsExtra::iterator;
632649using DimuonExtra = DimuonsExtra::iterator;
633650using DileptonFlow = DileptonsFlow::iterator;
651+ using RefFlowDimuon = RefFlowDimuons::iterator;
634652using DileptonInfo = DileptonsInfo::iterator;
635653using DimuonAll = DimuonsAll::iterator;
636654
0 commit comments