Skip to content

Commit 28e145b

Browse files
committed
fix configrable name
1 parent 8294fb2 commit 28e145b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGHF/Utils/utilsUpcHf.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ struct HfUpcGapThresholds : o2::framework::ConfigurableGroup {
4040
o2::framework::Configurable<int> nBcsMin{"nBcsMin", 2, "Minimum number of BCs to consider in BC range"};
4141
o2::framework::Configurable<int> nContributorsPvMin{"nContributorsPvMin", 2, "Minimum number of PV contributors"};
4242
o2::framework::Configurable<int> nContributorsPvMax{"nContributorsPvMax", 1000, "Maximum number of PV contributors"};
43-
o2::framework::Configurable<float> fITTimeMax{"fITTimeMax", 34, "Maximum time in FIT"};
43+
o2::framework::Configurable<float> timeFitMax{"timeFitMax", 34, "Maximum time in FIT"};
4444
o2::framework::Configurable<float> fv0aThreshold{"fv0aThreshold", 100.0f, "FV0-A amplitude threshold for UPC gap determination (a.u.)"};
4545
o2::framework::Configurable<float> ft0aThreshold{"ft0aThreshold", 100.0f, "FT0-A amplitude threshold for UPC gap determination (a.u.)"};
4646
o2::framework::Configurable<float> ft0cThreshold{"ft0cThreshold", 50.0f, "FT0-C amplitude threshold for UPC gap determination (a.u.)"};
@@ -75,7 +75,7 @@ inline auto determineGapType(TCollision const& collision,
7575
int nBcsMin = defaults::MinNBCs,
7676
int nContributorsPvMin = defaults::MinNTracks,
7777
int nContributorsPvMax = defaults::MaxNTracks,
78-
float fITTimeMax = defaults::MaxFITTime,
78+
float timeFitMax = defaults::MaxFITTime,
7979
float amplitudeThresholdFV0A = defaults::AmplitudeThresholdFV0A,
8080
float amplitudeThresholdFT0A = defaults::AmplitudeThresholdFT0A,
8181
float amplitudeThresholdFT0C = defaults::AmplitudeThresholdFT0C)
@@ -87,7 +87,7 @@ inline auto determineGapType(TCollision const& collision,
8787
sgCuts.SetNDtcoll(nDtColl);
8888
sgCuts.SetMinNBCs(nBcsMin);
8989
sgCuts.SetNTracks(nContributorsPvMin, nContributorsPvMax);
90-
sgCuts.SetMaxFITtime(fITTimeMax);
90+
sgCuts.SetMaxFITtime(timeFitMax);
9191
sgCuts.SetFITAmpLimits({amplitudeThresholdFV0A, amplitudeThresholdFT0A, amplitudeThresholdFT0C});
9292

9393
// Get BC and BC range
@@ -122,7 +122,7 @@ inline auto determineGapType(TCollision const& collision,
122122
thresholds.nBcsMin.value,
123123
thresholds.nContributorsPvMin.value,
124124
thresholds.nContributorsPvMax.value,
125-
thresholds.fITTimeMax.value,
125+
thresholds.timeFitMax.value,
126126
thresholds.fv0aThreshold.value,
127127
thresholds.ft0aThreshold.value,
128128
thresholds.ft0cThreshold.value);

0 commit comments

Comments
 (0)