Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-10-16 08:03:57

0001 // This file is part of the ACTS project.
0002 //
0003 // Copyright (C) 2016 CERN for the benefit of the ACTS project
0004 //
0005 // This Source Code Form is subject to the terms of the Mozilla Public
0006 // License, v. 2.0. If a copy of the MPL was not distributed with this
0007 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
0008 
0009 #include <Acts/ActsVersion.hpp>
0010 
0011 #include <format>
0012 #include <iostream>
0013 
0014 #include <Eigen/Core>
0015 #include <boost/version.hpp>
0016 
0017 int main(void) {
0018   std::cout << std::format("Using Acts version {}.{}.{} commit {}\n",
0019                            Acts::VersionMajor, Acts::VersionMinor,
0020                            Acts::VersionPatch,
0021                            Acts::CommitHash.value_or("UNKNOWN"))
0022             << std::endl;
0023   std::cout << std::format("Using Boost version {}.{}.{}\n",
0024                            BOOST_VERSION / 100000, BOOST_VERSION / 100 % 1000,
0025                            BOOST_VERSION % 100)
0026             << std::endl;
0027   std::cout << std::format("Using Eigen version {}.{}.{}\n",
0028                            EIGEN_WORLD_VERSION, EIGEN_MAJOR_VERSION,
0029                            EIGEN_MINOR_VERSION)
0030             << std::endl;
0031   return EXIT_SUCCESS;
0032 }