Commit 617a5bdf authored by Simon Spannagel's avatar Simon Spannagel
Browse files

Split G4 version number

(cherry picked from commit 92450455)
parent 82d52f82
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -122,7 +122,8 @@ int main(int argc, const char* argv[]) {
                      << std::endl;
            std::cout << "                     ROOT " << ROOT_RELEASE << std::endl;
#ifdef ALLPIX_GEANT4_AVAILABLE
            std::cout << "                     Geant4 " << G4VERSION_NUMBER << std::endl;
            std::cout << "                     Geant4 " << G4VERSION_NUMBER / 100 << "." << G4VERSION_NUMBER / 10 % 10 << "."
                      << G4VERSION_NUMBER % 10 << std::endl;
#endif

            char cpu_string[0x40];