Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:12:29

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 <cstdio>
0012 #include <cstdlib>
0013 
0014 #include <Eigen/Core>
0015 #include <boost/version.hpp>
0016 
0017 int main(void) {
0018   printf("Using Acts version %u.%u.%u commit %s\n", Acts::VersionMajor,
0019          Acts::VersionMinor, Acts::VersionPatch, Acts::CommitHash);
0020   printf("Using Boost version %u.%u.%u\n", BOOST_VERSION / 100000,
0021          BOOST_VERSION / 100 % 1000, BOOST_VERSION % 100);
0022   printf("Using Eigen version %u.%u.%u\n", EIGEN_WORLD_VERSION,
0023          EIGEN_MAJOR_VERSION, EIGEN_MINOR_VERSION);
0024   return EXIT_SUCCESS;
0025 }