@@ -138,7 +138,6 @@ class MatchITSTPCQC
138138
139139 TH3F* getHistoEtaPhiPtNum (matchType m) const { return mEtaPhiPtNum [m]; }
140140 TH3F* getHistoEtaPhiPtDen (matchType m) const { return mEtaPhiPtDen [m]; }
141- TEfficiency* getFractionITSTPCmatchEtaPhiPt (matchType m) const { return mFractionITSTPCmatchEtaPhiPt [m]; }
142141
143142 TH3F* getHistoK0MassVsPtVsOccpp () const { return mK0MassVsPtVsOccpp ; }
144143 TH3F* getHistoK0MassVsPtVsOccPbPb () const { return mK0MassVsPtVsOccPbPb ; }
@@ -197,7 +196,6 @@ class MatchITSTPCQC
197196 // 3D eta/phi/pt
198197 publisher->startPublishing (mEtaPhiPtNum [i]);
199198 publisher->startPublishing (mEtaPhiPtDen [i]);
200- publisher->startPublishing (mFractionITSTPCmatchEtaPhiPt [i]);
201199
202200 if (mUseTrkPID ) { // Vs Tracking PID hypothesis
203201 for (int j = 0 ; j < o2::track::PID::NIDs; ++j) {
@@ -278,6 +276,7 @@ class MatchITSTPCQC
278276 void setMinDCAtoBeamPipeDistanceCut (float v) { mDCATPCCut = v; }
279277 void setMinDCAtoBeamPipeYCut (float v) { mDCATPCCutY = v; }
280278 // ITS-TPC kinematics
279+ void setNBinsPt (int v) { mPtBins = v; }
281280 void setPtCut (float v) { mPtCut = v; }
282281 void setMaxPtCut (float v) { mPtMaxCut = v; }
283282 void setEtaCut (float v) { mEtaCut = v; }
@@ -419,7 +418,6 @@ class MatchITSTPCQC
419418 // 3D Efficiency in eta/phi/pt
420419 TH3F* mEtaPhiPtNum [matchType::SIZE] = {};
421420 TH3F* mEtaPhiPtDen [matchType::SIZE] = {};
422- TEfficiency* mFractionITSTPCmatchEtaPhiPt [matchType::SIZE] = {};
423421
424422 template <int DIM = 1 , bool DEBUG = false >
425423 void setEfficiency (TEfficiency* eff, TH1* hnum, TH1* hden);
@@ -442,8 +440,9 @@ class MatchITSTPCQC
442440 float mDCATPCCut = 100 .f; // max DCA 3D to PV for TPC track
443441 float mDCATPCCutY = 10 .f; // max DCA xy to PV for TPC track
444442 // ITS-TPC kinematics
443+ int mPtBins = 100 ;
445444 float mPtCut = 0 .1f ;
446- float mPtMaxCut = 1e10f ;
445+ float mPtMaxCut = 20 ;
447446 float mEtaCut = 1 .4f ;
448447 float mEtaNo0Cut = 0 .05f ;
449448 // TODO: define 2 different values for min and max (*)
0 commit comments