File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1281,6 +1281,7 @@ struct FlowTask {
12811281 double nTracksCorrected = 0 ;
12821282 int magnetfield = 0 ;
12831283 float independent = cent;
1284+ float nTracksUncorrected = 0 ;
12841285 if (cfgUseNch)
12851286 independent = static_cast <float >(tracks.size ());
12861287 if (cfgFuncParas.cfgShowTPCsectorOverlap ) {
@@ -1324,6 +1325,7 @@ struct FlowTask {
13241325 for (const auto & track : tracks) {
13251326 if (trackSelectedForNch (track) && setNchEffWeights (weffForNch, track.pt ())) {
13261327 nTracksCorrected += weffForNch;
1328+ nTracksUncorrected++;
13271329 }
13281330 if (!trackSelected (track))
13291331 continue ;
@@ -1414,7 +1416,7 @@ struct FlowTask {
14141416 if (!cfgUsePtRef && withinPtPOI)
14151417 fillPtSums<kReco >(track, weff);
14161418 }
1417- registry.fill (HIST (" hTrackCorrection2d" ), tracks. size () , nTracksCorrected);
1419+ registry.fill (HIST (" hTrackCorrection2d" ), nTracksUncorrected , nTracksCorrected);
14181420 if (cfgUseNch && cfgUseNchCorrected) {
14191421 independent = nTracksCorrected;
14201422 }
You can’t perform that action at this time.
0 commit comments