Skip to content

Commit f19edcf

Browse files
committed
small modification
1 parent 74b90fc commit f19edcf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGHF/HFL/Tasks/taskElectronWeakBoson.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ struct HfTaskElectronWeakBoson {
7878
struct HfElectronCandidate {
7979
float pt, eta, phi, energy;
8080
int charge;
81-
HfElectronCandidate(float p, float e, float ph, float en, int ch)
82-
: pt(p), eta(e), phi(ph), energy(en), charge(ch) {}
81+
HfElectronCandidate(float ptr, float e, float ph, float en, int ch)
82+
: pt(ptr), eta(e), phi(ph), energy(en), charge(ch) {}
8383

8484
int sign() const { return charge; }
8585
};
@@ -163,7 +163,7 @@ struct HfTaskElectronWeakBoson {
163163
registry.add("hInvMassZeeLs", "invariant mass for Z LS pair", kTH2F, {{axisPt}, {axisInvMassZ}});
164164
registry.add("hInvMassZeeUls", "invariant mass for Z ULS pair", kTH2F, {{axisPt}, {axisInvMassZ}});
165165
registry.add("hInvMassDyLs", "invariant mass for DY LS pair", kTH2F, {{axisPt}, {axisInvMassDy}});
166-
registry.add("hInvMassDyULs", "invariant mass for DY ULS pair", kTH2F, {{axisPt}, {axisInvMassDy}});
166+
registry.add("hInvMassDyUls", "invariant mass for DY ULS pair", kTH2F, {{axisPt}, {axisInvMassDy}});
167167
}
168168
bool isIsolatedCluster(const o2::aod::EMCALCluster& cluster,
169169
const SelectedClusters& clusters)

0 commit comments

Comments
 (0)