ATLAS Offline Software
Loading...
Searching...
No Matches
utilities.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4#ifndef HLTSeeding_utilities_h
5#define HLTSeeding_utilities_h
6#include <cstdint>
7
8namespace HLTSeedingNs{
9 // User-defined literal for uint64_t
10 constexpr uint64_t operator"" _u64(unsigned long long v) {
11 return static_cast<uint64_t>(v);
12 }
13
14}
15
16#endif