Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:17:10

0001 #include "RunToTime.h"
0002 
0003 #include <iostream>
0004 
0005 RunToTime *RunToTime::__instance = nullptr;
0006 
0007 RunToTime *RunToTime::instance()
0008 {
0009   if (!__instance)
0010   {
0011     std::cout << __FILE__ << "  " << __LINE__ << " No instance of RunToTime available" << std::endl;
0012   }
0013 
0014   return __instance;
0015 }