Skip to content

Commit 73dc836

Browse files
committed
Please consider the following formatting changes
1 parent 83265dd commit 73dc836

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

PWGCF/JCorran/Tasks/jEPFlowAnalysis.cxx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ struct jEPFlowAnalysis {
179179
ccdbApi.init("http://alice-ccdb.cern.ch");
180180
ccdb->setCaching(true);
181181
ccdb->setLocalObjectValidityChecking();
182-
ccdb->setCreatedNotAfter(std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch()).count());
182+
ccdb->setCreatedNotAfter(std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now().time_since_epoch()).count());
183183

184184
detId = getdetId(cfgDetName);
185185
refAId = getdetId(cfgRefAName);
@@ -291,9 +291,10 @@ struct jEPFlowAnalysis {
291291
float weight = 1.0;
292292

293293
for (const auto& track : tracks) {
294-
if (trackSel(track)) continue;
294+
if (trackSel(track))
295+
continue;
295296
if (cfgEffCor) {
296-
weight /= getEfficiencyCorrection(effMap, track.eta(), track.pt(), cent, coll.posZ());
297+
weight /= getEfficiencyCorrection(effMap, track.eta(), track.pt(), cent, coll.posZ());
297298
}
298299

299300
float vn = std::cos((i + 2) * (track.phi() - eps[0]));

PWGLF/Tasks/Resonances/heptaquark.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ struct heptaquark {
104104
const double px = hq.hqPx();
105105
const double py = hq.hqPy();
106106
const double pz = hq.hqPz();
107-
const double m = hq.hqMass();
107+
const double m = hq.hqMass();
108108
TLorentzVector v;
109109
v.SetXYZM(px, py, pz, m);
110110
return v;
@@ -222,7 +222,7 @@ struct heptaquark {
222222
TVector3 boost = -ex.BoostVector();
223223

224224
auto hqphipair_boost = hq1 + hq2;
225-
auto hqlambda_boost = hq3;
225+
auto hqlambda_boost = hq3;
226226
hqphipair_boost.Boost(boost);
227227
hqlambda_boost.Boost(boost);
228228

0 commit comments

Comments
 (0)