File indexing completed on 2026-04-10 07:50:28
0001
0002
0003
0004
0005
0006
0007
0008
0009 #include "U4App.h"
0010 #include "OPTICKS_LOG.hh"
0011
0012 #if defined(WITH_PMTSIM) && defined(PMTSIM_STANDALONE)
0013 #include "J_PMTSIM_LOG.hh"
0014 #endif
0015
0016 int main(int argc, char** argv)
0017 {
0018 OPTICKS_LOG(argc, argv);
0019
0020 #if defined(WITH_PMTSIM) && defined(PMTSIM_STANDALONE)
0021 J_PMTSIM_LOG_(0);
0022 std::cout << "main: WITH_PMTSIM and PMTSIM_STANDALONE " << std::endl ;
0023 #else
0024 std::cout << "main: not-( WITH_PMTSIM and PMTSIM_STANDALONE ) " << std::endl ;
0025 #endif
0026
0027 U4App::Main();
0028
0029 return 0 ;
0030 }
0031