ATLAS Offline Software
Loading...
Searching...
No Matches
MMDetectorHelper.cxx File Reference
Include dependency graph for MMDetectorHelper.cxx:

Go to the source code of this file.

Functions

int myatoi (std::string_view str)

Function Documentation

◆ myatoi()

int myatoi ( std::string_view str)

Definition at line 34 of file MMDetectorHelper.cxx.

34 {
35 int result=-9999;
36 std::from_chars(str.data(), str.data() + str.size(), result);
37 return result;
38}