Skip to content

Commit 6cbde55

Browse files
ITSRawTask supports the updated math_utils (#518)
* support the updated math_utils * trigger rebuild * Update ITSRawTask.cxx Co-authored-by: Barthélémy von Haller <barthelemy.von.haller@gmail.com>
1 parent e35c7a5 commit 6cbde55

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Modules/ITS/src/ITSRawTask.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ void ITSRawTask::initialize(o2::framework::InitContext& /*ctx*/)
9898
QcInfoLogger::GetInstance() << "initialize ITSRawTask" << AliceO2::InfoLogger::InfoLogger::endm;
9999

100100
o2::its::GeometryTGeo* geom = o2::its::GeometryTGeo::Instance();
101-
geom->fillMatrixCache(o2::utils::bit2Mask(o2::TransformType::L2G));
101+
geom->fillMatrixCache(o2::math_utils::bit2Mask(o2::math_utils::TransformType::L2G));
102102
int numOfChips = geom->getNumberOfChips();
103103
QcInfoLogger::GetInstance() << "numOfChips = " << numOfChips << AliceO2::InfoLogger::InfoLogger::endm;
104104
setNChips(numOfChips);
@@ -266,8 +266,8 @@ void ITSRawTask::monitorData(o2::framework::ProcessingContext& ctx)
266266

267267
gm->getChipId(ChipID, lay, sta, ssta, mod, chip);
268268
// cout << "getID : " << ChipID << ", " << lay << ", " << sta << ", " << ssta << ", " << mod << ", " << chip << endl;
269-
gm->fillMatrixCache(o2::utils::bit2Mask(o2::TransformType::L2G));
270-
const Point3D<float> loc(0., 0., 0.);
269+
gm->fillMatrixCache(o2::math_utils::bit2Mask(o2::math_utils::TransformType::L2G));
270+
const math_utils::Point3D<float> loc(0., 0., 0.);
271271
auto glo = gm->getMatrixL2G(ChipID)(loc);
272272

273273
if (!mlayerEnable[lay]) {

0 commit comments

Comments
 (0)