Skip to content

Commit 8150615

Browse files
committed
minor modification
1 parent b22dd6a commit 8150615

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

PWGHF/HFL/Tasks/taskElectronWeakBoson.cxx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,9 @@ struct HfTaskElectronWeakBoson {
7777

7878
struct HfElectronCandidate {
7979
float pt, eta, phi, energy;
80-
ElectronCandidate(float p, float e, float ph, float en)
80+
HfElectronCandidate(float p, float e, float ph, float en)
8181
: pt(p), eta(e), phi(ph), energy(en) {}
8282

83-
// 運動量成分を計算する関数を追加
8483
float px() const { return pt * std::cos(phi); }
8584
float py() const { return pt * std::sin(phi); }
8685
float pz() const { return pt * std::sinh(eta); }

0 commit comments

Comments
 (0)