@@ -181,8 +181,8 @@ class FemtoDreamCollisionSelection
181181 // / \param col Collision
182182 // / \return whether or not the collisions fulfills the specified selections
183183 template <typename C>
184- bool occupancySelection (C const & col,
185- int tpcOccupancyMin, int tpcOccupancyMax)
184+ bool occupancySelection (C const & col,
185+ int tpcOccupancyMin, int tpcOccupancyMax)
186186 {
187187 const auto occupancy = col.trackOccupancyInTimeRange ();
188188 if ((occupancy < tpcOccupancyMin || occupancy > tpcOccupancyMax)) {
@@ -245,7 +245,7 @@ class FemtoDreamCollisionSelection
245245 mHistogramQn ->add <TProfile>(" Event/profileC22" , " ; cent; c22" , kTProfile , {{10 , 0 , 100 }});
246246 mHistogramQn ->add <TProfile>(" Event/profileC24" , " ; cent; c24" , kTProfile , {{10 , 0 , 100 }});
247247
248- if (doQnSeparation){
248+ if (doQnSeparation) {
249249 for (int iqn (0 ); iqn < mumQnBins; ++iqn) {
250250 profilesC22.push_back (mHistogramQn ->add <TProfile>((" Qn/profileC22_" + std::to_string (iqn)).c_str (), " ; cent; c22" , kTProfile , {{10 , 0 , 100 }}));
251251 }
@@ -400,7 +400,7 @@ class FemtoDreamCollisionSelection
400400 mHistogramQn ->fill (HIST (" Event/qnBin" ), qnBin);
401401 if (qnBin >= 0 && qnBin < numQnBins) {
402402 std::get<std::shared_ptr<TH1>>(qnMults[qnBin])->Fill (mult);
403- }
403+ }
404404 }
405405
406406 return qnBin;
@@ -482,8 +482,8 @@ class FemtoDreamCollisionSelection
482482 TComplex negEtaQStar = TComplex::Conjugate (negEtaQ);
483483
484484 mHistogramQn ->get <TProfile>(HIST (" Event/profileC22" ))->Fill (centrality, (negEtaQ * posEtaQStar).Re () / (negEtaMQ * posEtaMQ), (negEtaMQ * posEtaMQ));
485- if (doQnSeparation && mQnBin >= 0 && mQnBin < numQnBins){
486- std::get<std::shared_ptr<TProfile>>(profilesC22[mQnBin ])->Fill (centrality, (negEtaQ* posEtaQStar).Re ()/ (negEtaMQ* posEtaMQ), (negEtaMQ* posEtaMQ));
485+ if (doQnSeparation && mQnBin >= 0 && mQnBin < numQnBins) {
486+ std::get<std::shared_ptr<TProfile>>(profilesC22[mQnBin ])->Fill (centrality, (negEtaQ * posEtaQStar).Re () / (negEtaMQ * posEtaMQ), (negEtaMQ * posEtaMQ));
487487 }
488488 return ;
489489 }
@@ -501,8 +501,8 @@ class FemtoDreamCollisionSelection
501501 float mSphericityPtmin = 0 .f;
502502 int mQnBin = -999 ;
503503 HistogramRegistry* mHistogramQn = nullptr ; // /< For flow cumulant output
504- std::vector<HistPtr> qnMults; // / Histograms of multiplicity (TH1F) per Qn bin. Stored as HistPtr (variant of shared_ptr) from HistogramManager.
505- std::vector<HistPtr> profilesC22; // / Pofile Histograms of c22 per Qn bin
504+ std::vector<HistPtr> qnMults; // / Histograms of multiplicity (TH1F) per Qn bin. Stored as HistPtr (variant of shared_ptr) from HistogramManager.
505+ std::vector<HistPtr> profilesC22; // / Pofile Histograms of c22 per Qn bin
506506 TH2D* mReQthisEvt = nullptr ; // /< For flow cumulant in an event
507507 TH2D* mImQthisEvt = nullptr ; // /< For flow cumulant in an event
508508 TH2D* mReQ2thisEvt = nullptr ; // /< For flow cumulant in an event
0 commit comments