Skip to content

Commit bf64982

Browse files
committed
remove unused parameters
1 parent fd3f4b5 commit bf64982

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

PWGCF/GenericFramework/Core/FlowPtContainer.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ void FlowPtContainer::initialise(int nbinsx, double xlow, double xhigh, const in
391391
}
392392
LOGF(info, "Container %s initialized with m = %i\n", this->GetName(), mpar);
393393
};
394-
void FlowPtContainer::initialiseSubevent(const o2::framework::AxisSpec axis, const int& m, const GFWCorrConfigs& configs, const int& nsub)
394+
void FlowPtContainer::initialiseSubevent(const o2::framework::AxisSpec axis, const int& m, const int& nsub)
395395
{
396396
if (!mpar)
397397
mpar = m;
@@ -453,7 +453,7 @@ void FlowPtContainer::initialiseSubevent(const o2::framework::AxisSpec axis, con
453453
}
454454
LOGF(info, "Container %s initialized Subevents and %i subsamples", this->GetName(), nsub);
455455
}
456-
void FlowPtContainer::initialiseSubevent(int nbinsx, double* xbins, const int& m, const GFWCorrConfigs& configs, const int& nsub)
456+
void FlowPtContainer::initialiseSubevent(int nbinsx, double* xbins, const int& m, const int& nsub)
457457
{
458458
if (!mpar)
459459
mpar = m;
@@ -507,7 +507,7 @@ void FlowPtContainer::initialiseSubevent(int nbinsx, double* xbins, const int& m
507507
}
508508
LOGF(info, "Container %s initialized Subevents and %i subsamples", this->GetName(), nsub);
509509
}
510-
void FlowPtContainer::initialiseSubevent(int nbinsx, double xlow, double xhigh, const int& m, const GFWCorrConfigs& configs, const int& nsub)
510+
void FlowPtContainer::initialiseSubevent(int nbinsx, double xlow, double xhigh, const int& m, const int& nsub)
511511
{
512512
if (!mpar)
513513
mpar = m;

PWGCF/GenericFramework/Core/FlowPtContainer.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ class FlowPtContainer : public TNamed
5151
void initialise(int nbinsx, double* xbins, const int& m, const GFWCorrConfigs& configs, const int& nsub = 10);
5252
void initialise(int nbinsx, double xlow, double xhigh, const int& m, const GFWCorrConfigs& configs, const int& nsub = 10);
5353
// initial pt-pt correlations with two subevents
54-
void initialiseSubevent(const o2::framework::AxisSpec axis, const int& m, const GFWCorrConfigs& configs, const int& nsub = 10);
55-
void initialiseSubevent(int nbinsx, double* xbins, const int& m, const GFWCorrConfigs& configs, const int& nsub = 10);
56-
void initialiseSubevent(int nbinsx, double xlow, double xhigh, const int& m, const GFWCorrConfigs& configs, const int& nsub = 10);
54+
void initialiseSubevent(const o2::framework::AxisSpec axis, const int& m, const int& nsub = 10);
55+
void initialiseSubevent(int nbinsx, double* xbins, const int& m, const int& nsub = 10);
56+
void initialiseSubevent(int nbinsx, double xlow, double xhigh, const int& m, const int& nsub = 10);
5757
void fill(const double& w, const double& pt);
5858
void fillSub1(const double& w, const double& pt);
5959
void fillSub2(const double& w, const double& pt);

0 commit comments

Comments
 (0)