Skip to content
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
94b345d
PWGHF new task for W/Z->e in midrapidity
sashingo Sep 5, 2024
d838101
Update PWGHF/HFL/Tasks/CMakeLists.txt
sashingo Sep 6, 2024
ce7a533
Update PWGHF/HFL/Tasks/CMakeLists.txt
sashingo Sep 6, 2024
545edd4
Update PWGHF/HFL/Tasks/taskElectronWeakBoson.cxx
sashingo Sep 6, 2024
bfd6183
Update PWGHF/HFL/Tasks/taskElectronWeakBoson.cxx
sashingo Sep 6, 2024
7c9e17e
Update taskElectronWeakBoson.cxx
sashingo Sep 6, 2024
a278ca4
Update taskElectronWeakBoson.cxx
sashingo Sep 6, 2024
e7a5c19
Update taskElectronWeakBoson.cxx
sashingo Sep 6, 2024
6a140b5
Update taskElectronWeakBoson.cxx
sashingo Sep 6, 2024
2a52793
Update taskElectronWeakBoson.cxx
sashingo Sep 6, 2024
6f07ddc
Update taskElectronWeakBoson.cxx
sashingo Sep 6, 2024
335f04c
Update taskElectronWeakBoson.cxx
sashingo Sep 6, 2024
a687586
fixed clang-format
sashingo Sep 6, 2024
2e7045f
PWGHF Apply clang-format fixes
sashingo Sep 6, 2024
47aeff1
PWGHF modified task by comments
sashingo Sep 9, 2024
60041bc
PWGHF fixing naming convention
sashingo Sep 19, 2024
ba2a45f
PWGHF remove specific version of a table
sashingo Sep 20, 2024
dfe033a
PWGHF updated by following coding develop guidelines
sashingo Sep 30, 2024
5a9b237
PWGHF implemented comments by Vit
sashingo Oct 1, 2024
80ba018
Merge branch 'AliceO2Group:master' into master
sashingo Oct 7, 2024
a34cb5c
Merge branch 'AliceO2Group:master' into master
sashingo Oct 8, 2024
5813d26
Merge branch 'AliceO2Group:master' into master
sashingo Oct 11, 2024
581a455
Merge branch 'AliceO2Group:master' into master
sashingo Oct 15, 2024
b51dc6f
Merge branch 'AliceO2Group:master' into master
sashingo Oct 17, 2024
360c8c2
Merge branch 'AliceO2Group:master' into master
sashingo Oct 21, 2024
9d18583
Merge branch 'AliceO2Group:master' into master
sashingo Nov 4, 2024
23d5976
Merge branch 'AliceO2Group:master' into master
sashingo Nov 4, 2024
4b2771f
Merge branch 'AliceO2Group:master' into master
sashingo Nov 8, 2024
080aef9
Merge branch 'AliceO2Group:master' into master
sashingo Nov 13, 2024
00975ce
Merge branch 'AliceO2Group:master' into master
sashingo Nov 18, 2024
c9ea084
Merge branch 'AliceO2Group:master' into master
sashingo Nov 19, 2024
ede31b0
Merge branch 'AliceO2Group:master' into master
sashingo Nov 20, 2024
09bfea3
[PWGHF] modified function to get EMCal matched track phi and eta
sashingo Nov 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PWGHF/HFL/Tasks/taskElectronWeakBoson.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ struct HfTaskElectronWeakBoson {
// LOG(info) << "tr phi1 = " << track.phi();
// LOG(info) << "emc phi = " << phiEmc;
if (nMatch == 0) {
double dEta = match.track_as<TrackEle>().eta() - etaEmc;
double dPhi = match.track_as<TrackEle>().phi() - phiEmc;
double dEta = match.track_as<TrackEle>().trackEtaEmcal() - etaEmc;
double dPhi = match.track_as<TrackEle>().trackPhiEmcal() - phiEmc;
dPhi = RecoDecay::constrainAngle(dPhi, -o2::constants::math::PI);

registry.fill(HIST("hMatchPhi"), phiEmc, match.track_as<TrackEle>().phi());
Expand Down