Skip to content

Commit 118f315

Browse files
authored
[PWGEM/Dilepton] fix for #13990 (#14000)
1 parent 3cfa1f4 commit 118f315

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

PWGEM/Dilepton/DataModel/dileptonTables.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,8 @@ DECLARE_SOA_TABLE(EMEoIs, "AOD", "EMEOI", //! joinable to aod::Collisions in cre
295295
using EMEoI = EMEoIs::iterator;
296296

297297
DECLARE_SOA_TABLE_VERSIONED(EMEventNormInfos_000, "AOD", "EMEVENTNORMINFO", 0, //! event information for normalization
298-
o2::soa::Index<>, evsel::Alias, evsel::Selection, evsel::Rct, emevent::PosZint16, cent::CentFT0C, emevent::PosZ<emevent::PosZint16>, emevent::Sel8<evsel::Selection>);
298+
o2::soa::Index<>, evsel::Alias, evsel::Selection, evsel::Rct, emevent::PosZint16, cent::CentFT0C,
299+
emevent::Sel8<evsel::Selection>);
299300

300301
DECLARE_SOA_TABLE_VERSIONED(EMEventNormInfos_001, "AOD", "EMEVENTNORMINFO", 1, //! event information for normalization
301302
o2::soa::Index<>, evsel::Selection, evsel::Rct, emevent::PosZint16, emevent::CentFT0Cuint16,

PWGEM/Dilepton/TableProducer/Converters/eventNormConverter1.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ struct eventNormConverter1 {
3535
event_001(
3636
collision.selection_raw(),
3737
collision.rct_raw(),
38-
static_cast<int16_t>(collision.posZ() * 100.f),
38+
static_cast<int16_t>(collision.posZint16() * 10.f),
3939
static_cast<uint16_t>(collision.centFT0C() * 500.f));
4040
} // end of collision loop
4141
}

0 commit comments

Comments
 (0)