Skip to content
Snippets Groups Projects
Commit c4b237b6 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'using.ActsDataPreparation-20240304' into 'main'

ActsDataPreparation: Fix using declarations.

See merge request atlas/athena!69473
parents 1ffb01bf 36f30a45
No related branches found
No related tags found
No related merge requests found
......@@ -3,9 +3,6 @@
*/
#include "PixelClusteringTool.h"
using ActsTrk::getCellRow;
using ActsTrk::getCellColumn;
using ActsTrk::getCellLabel;
#include <Acts/Clusterization/Clusterization.hpp>
......
......@@ -14,9 +14,11 @@
#include "SiClusterizationTool/PixelRDOTool.h"
#include "xAODInDetMeasurement/PixelClusterContainer.h"
namespace ActsTrk {
namespace InDet {
// Helper functions for use with ACTS clusterization
// Put these in the InDet namespace so that ACTS can find them
// via ADL.
//
inline int getCellRow(const InDet::UnpackedPixelRDO& cell)
{
......@@ -34,6 +36,12 @@ inline int& getCellLabel(InDet::UnpackedPixelRDO& cell)
}
} // namespace InDet
namespace ActsTrk {
class PixelClusteringTool : public extends<AthAlgTool,IPixelClusteringTool> {
public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment