@@ -317,7 +317,7 @@ struct qVectorsTable {
317317 auto modeCorrQvecEse = getForTsOrRun<TH3F>(fullPath, timestamp, runnumber);
318318 if (!modeCorrQvecEse) {
319319 fullPath = cfgQvecCalibPath; // cfgQvecEseCalibPath;
320- fullPath += " /v2" ; // "/eseq2";
320+ fullPath += " /v2" ; // "/eseq2";
321321 modeCorrQvecEse = getForTsOrRun<TH3F>(fullPath, timestamp, runnumber);
322322 }
323323 corrsQvecEse.push_back (modeCorrQvecEse);
@@ -405,12 +405,12 @@ struct qVectorsTable {
405405 // / \param QvecImRaw is the vector with the raw imaginary part of the q-vector for each detector and correction step
406406 // / \param QvecAmp is the vector with the amplitude of the q-vector for each detector and correction step
407407 // / \param normType is the type of normalization to apply to the q-vectors
408- void NormalizeQvec (std::vector<float >& QvecReNorm,
409- std::vector<float >& QvecImNorm,
410- std::vector<float > QvecReRaw,
411- std::vector<float > QvecImRaw,
412- std::vector<float >& QvecAmp,
413- MultNorms normType)
408+ void NormalizeQvec (std::vector<float >& QvecReNorm,
409+ std::vector<float >& QvecImNorm,
410+ std::vector<float > QvecReRaw,
411+ std::vector<float > QvecImRaw,
412+ std::vector<float >& QvecAmp,
413+ MultNorms normType)
414414 {
415415 for (std::size_t i = 0 ; i < kNDetectors ; i++) {
416416 float qVecDetReNorm{999 .}, qVecDetImNorm{999 .};
@@ -430,7 +430,7 @@ struct qVectorsTable {
430430 }
431431 std::cout << " [NORMALIZED] " << i << " Re: " << qVecDetReNorm << " , Im: " << qVecDetImNorm << " , amp: " << QvecAmp[i] << std::endl;
432432 }
433- for (int iCorr= 0 ; iCorr < Corrections::kNCorrections ; iCorr++) {
433+ for (int iCorr = 0 ; iCorr < Corrections::kNCorrections ; iCorr++) {
434434 QvecReNorm.push_back (qVecDetReNorm);
435435 QvecImNorm.push_back (qVecDetImNorm);
436436 }
@@ -443,7 +443,8 @@ struct qVectorsTable {
443443 // / \param qvecIm is the vector with the imaginary part of the q-vector for each detector and correction step
444444 // / \param histsCorrs is the vector with the histograms with the correction constants for each detector and correction step
445445 // / \param nMode is the modulation of interest
446- void CorrectQvec (float cent, std::vector<float >& qvecRe, std::vector<float >& qvecIm, TH3F* histsCorrs, int nMode) {
446+ void CorrectQvec (float cent, std::vector<float >& qvecRe, std::vector<float >& qvecIm, TH3F* histsCorrs, int nMode)
447+ {
447448 int nCorrections = static_cast <int >(Corrections::kNCorrections );
448449 if (cent < cfgMaxCentrality) {
449450 for (auto i{0u }; i < kTPCall + 1 ; i++) {
@@ -563,9 +564,9 @@ struct qVectorsTable {
563564 float qVectFT0C[2 ] = {-999 ., -999 .};
564565 float qVectFT0M[2 ] = {-999 ., -999 .};
565566 float qVectFV0A[2 ] = {-999 ., -999 .};
566- float qVectTPCpos[2 ] = {0 ., 0 .}; // Always computed
567- float qVectTPCneg[2 ] = {0 ., 0 .}; // Always computed
568- float qVectTPCall[2 ] = {0 ., 0 .}; // Always computed
567+ float qVectTPCpos[2 ] = {0 ., 0 .}; // Always computed
568+ float qVectTPCneg[2 ] = {0 ., 0 .}; // Always computed
569+ float qVectTPCall[2 ] = {0 ., 0 .}; // Always computed
569570
570571 TComplex QvecDet (0 );
571572 TComplex QvecFT0M (0 );
@@ -703,7 +704,6 @@ struct qVectorsTable {
703704 LOG (info) << " [RAW] qVectTPCpos: " << qVectTPCpos[0 ] << " , " << qVectTPCpos[1 ] << " , nTrk: " << nTrkTPCpos;
704705 LOG (info) << " [RAW] qVectTPCneg: " << qVectTPCneg[0 ] << " , " << qVectTPCneg[1 ] << " , nTrk: " << nTrkTPCneg;
705706 LOG (info) << " [RAW] qVectTPCall: " << qVectTPCall[0 ] << " , " << qVectTPCall[1 ] << " , nTrk: " << nTrkTPCall;
706-
707707 }
708708
709709 void process (MyCollisions::iterator const & coll, aod::BCsWithTimestamps const &, aod::FT0s const &, aod::FV0As const &, MyTracks const & tracks)
@@ -852,7 +852,6 @@ struct qVectorsTable {
852852 std::cout << " [CORRECTED] TPCneg, Re: " << qvecReTPCnegSp.at (0 ) << " , Im: " << qvecImTPCnegSp.at (0 ) << std::endl;
853853 std::cout << " [CORRECTED] TPCall, Re: " << qvecReTPCallSp.at (0 ) << " , Im: " << qvecImTPCallSp.at (0 ) << std::endl;
854854
855-
856855 qVectorFT0CVec (IsCalibrated, qvecReFT0CSp, qvecImFT0CSp, qvecAmp[kFT0C ]);
857856 qVectorFT0AVec (IsCalibrated, qvecReFT0ASp, qvecImFT0ASp, qvecAmp[kFT0A ]);
858857 qVectorFT0MVec (IsCalibrated, qvecReFT0MSp, qvecImFT0MSp, qvecAmp[kFT0M ]);
0 commit comments