Skip to content

Commit 58d9c2e

Browse files
committed
fixing clang
1 parent 9fe8fd4 commit 58d9c2e

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

PWGJE/TableProducer/eventwiseConstituentSubtractor.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ struct eventWiseConstituentSubtractorTask {
8181
Configurable<float> eventEtaMax{"eventEtaMax", 0.9, "maximum pseudorapidity of event"};
8282
Configurable<bool> doRhoMassSub{"doRhoMassSub", true, "perfom mass subtraction as well"};
8383
Configurable<double> ghostRapMax{"ghostRapMax", 0.9, "Ghost rapidity max"};
84-
Configurable<int> ghostRepeat{"ghostRepeat", 1, "Ghost tiling repeats"};
85-
Configurable<double> ghostArea{"ghostArea", 0.005, "Area per ghost"};
86-
Configurable<double> ghostGridScatter{"ghostGridScatter", 1.0, "Grid scatter"};
87-
Configurable<double> ghostKtScatter{"ghostKtScatter", 0.1, "kT scatter"};
88-
Configurable<double> ghostMeanPt{"ghostMeanPt", 1e-100, "Mean ghost pT"};
84+
Configurable<int> ghostRepeat{"ghostRepeat", 1, "Ghost tiling repeats"};
85+
Configurable<double> ghostArea{"ghostArea", 0.005, "Area per ghost"};
86+
Configurable<double> ghostGridScatter{"ghostGridScatter", 1.0, "Grid scatter"};
87+
Configurable<double> ghostKtScatter{"ghostKtScatter", 0.1, "kT scatter"};
88+
Configurable<double> ghostMeanPt{"ghostMeanPt", 1e-100, "Mean ghost pT"};
8989

9090
JetBkgSubUtils eventWiseConstituentSubtractor;
9191
std::vector<fastjet::PseudoJet> inputParticles;
@@ -105,7 +105,7 @@ struct eventWiseConstituentSubtractorTask {
105105
eventWiseConstituentSubtractor.setConstSubAlphaRMax(alpha, rMax);
106106
eventWiseConstituentSubtractor.setMaxEtaEvent(eventEtaMax);
107107
fastjet::GhostedAreaSpec ghostAreaSpec(ghostRapMax, ghostRepeat, ghostArea,
108-
ghostGridScatter, ghostKtScatter, ghostMeanPt);
108+
ghostGridScatter, ghostKtScatter, ghostMeanPt);
109109
eventWiseConstituentSubtractor.setGhostAreaSpec(ghostAreaSpec);
110110

111111
if (applyTrackingEfficiency) {

PWGJE/TableProducer/rhoEstimator.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ struct RhoEstimatorTask {
9090
Configurable<float> bkgPhiMax{"bkgPhiMax", 6.283, "maximum phi for determining background density"};
9191
Configurable<bool> doSparse{"doSparse", false, "perfom sparse estimation"};
9292
Configurable<double> ghostRapMax{"ghostRapMax", 0.9, "Ghost rapidity max"};
93-
Configurable<int> ghostRepeat{"ghostRepeat", 1, "Ghost tiling repeats"};
93+
Configurable<int> ghostRepeat{"ghostRepeat", 1, "Ghost tiling repeats"};
9494
Configurable<double> ghostArea{"ghostArea", 0.005, "Area per ghost"};
9595
Configurable<double> ghostGridScatter{"ghostGridScatter", 1.0, "Grid scatter"};
9696
Configurable<double> ghostKtScatter{"ghostKtScatter", 0.1, "kT scatter"};
@@ -142,7 +142,7 @@ struct RhoEstimatorTask {
142142
bkgSub.setPhiMinMax(bkgPhiMin_, bkgPhiMax_);
143143

144144
fastjet::GhostedAreaSpec ghostAreaSpec(config.ghostRapMax, config.ghostRepeat, config.ghostArea,
145-
config.ghostGridScatter, config.ghostKtScatter, config.ghostMeanPt);
145+
config.ghostGridScatter, config.ghostKtScatter, config.ghostMeanPt);
146146
bkgSub.setGhostAreaSpec(ghostAreaSpec);
147147

148148
eventSelectionBits = jetderiveddatautilities::initialiseEventSelectionBits(static_cast<std::string>(config.eventSelections));

PWGJE/Tasks/jetTutorial.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ struct JetTutorialTask {
215215

216216
using JetMCPTable = soa::Filtered<soa::Join<aod::ChargedMCParticleLevelJets, aod::ChargedMCParticleLevelJetConstituents, aod::ChargedMCParticleLevelJetsMatchedToChargedMCDetectorLevelJets>>;
217217
void processMCMatchedCharged(soa::Filtered<aod::JetCollisionsMCD>::iterator const& collision,
218-
aod::JetMcCollisions const&,
218+
aod::JetMcCollisions const&,
219219
soa::Filtered<soa::Join<aod::ChargedMCDetectorLevelJets, aod::ChargedMCDetectorLevelJetConstituents, aod::ChargedMCDetectorLevelJetsMatchedToChargedMCParticleLevelJets>> const& mcdjets,
220220
JetMCPTable const&,
221221
aod::JetTracks const&,

0 commit comments

Comments
 (0)