Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:16:55

0001 // Do yourself and others a favour, please sort variable/function name
0002 // according to the roman alphabet
0003 
0004 #ifndef PHOOL_RECOCONSTS_H
0005 #define PHOOL_RECOCONSTS_H
0006 
0007 #include "PHFlag.h"
0008 
0009 class recoConsts : public PHFlag
0010 {
0011  public:
0012   static recoConsts *instance()
0013   {
0014     if (__instance) return __instance;
0015     __instance = new recoConsts();
0016     return __instance;
0017   }
0018 
0019   void Print() const override;
0020 
0021  private:
0022   recoConsts() {}
0023   static recoConsts *__instance;
0024 };
0025 
0026 #endif