Skip to content

Commit 285c47f

Browse files
committed
fixed configurable name
1 parent 4ef1765 commit 285c47f

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

PWGHF/Utils/utilsUpcHf.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ using o2::aod::sgselector::TrueGap;
3636
/// \brief Configurable group for UPC gap determination thresholds
3737
struct HfUpcGapThresholds : o2::framework::ConfigurableGroup {
3838
std::string prefix = "upc"; // JSON group name
39-
o2::framework::Configurable<int> fNDtColl{"fNDtColl", 1, "Number of standard deviations to consider in BC range"};
40-
o2::framework::Configurable<int> fNBCsMin{"fNBCsMin", 2, "Minimum number of BCs to consider in BC range"};
41-
o2::framework::Configurable<int> fNPVCsMin{"fNPVCsMin", 2, "Minimum number of PV contributors"};
42-
o2::framework::Configurable<int> fNPVCsMax{"fNPVCsMax", 1000, "Maximum number of PV contributors"};
43-
o2::framework::Configurable<float> fFITTimeMax{"fFITTimeMax", 34, "Maximum time in FIT"};
39+
o2::framework::Configurable<int> nDtColl{"nDtColl", 1, "Number of standard deviations to consider in BC range"};
40+
o2::framework::Configurable<int> nBCsMin{"nBCsMin", 2, "Minimum number of BCs to consider in BC range"};
41+
o2::framework::Configurable<int> nPVCsMin{"nPVCsMin", 2, "Minimum number of PV contributors"};
42+
o2::framework::Configurable<int> nPVCsMax{"nPVCsMax", 1000, "Maximum number of PV contributors"};
43+
o2::framework::Configurable<float> fITTimeMax{"fITTimeMax", 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.)"};
@@ -119,11 +119,11 @@ inline auto determineGapType(TCollision const& collision,
119119
HfUpcGapThresholds const& thresholds)
120120
{
121121
return determineGapType(collision, bcs,
122-
thresholds.fNDtColl.value,
123-
thresholds.fNBCsMin.value,
124-
thresholds.fNPVCsMin.value,
125-
thresholds.fNPVCsMax.value,
126-
thresholds.fFITTimeMax.value,
122+
thresholds.nDtColl.value,
123+
thresholds.nBCsMin.value,
124+
thresholds.nPVCsMin.value,
125+
thresholds.nPVCsMax.value,
126+
thresholds.fITTimeMax.value,
127127
thresholds.fv0aThreshold.value,
128128
thresholds.ft0aThreshold.value,
129129
thresholds.ft0cThreshold.value);

0 commit comments

Comments
 (0)