Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 // Tell emacs that this is a C++ source
0002 //  -*- C++ -*-.
0003 #ifndef FFAOBJECTS_SYNCDEFS_H
0004 #define FFAOBJECTS_SYNCDEFS_H
0005 
0006 #include <string>
0007 
0008 namespace syncdefs
0009 {
0010   // __attribute__((unused)) prevents compiler from flagging variable as unused
0011   static const int NUM_SYNC_VARS __attribute__((unused)) = 4;
0012   static const char *SYNCVARS[] __attribute__((unused)) = {"eventcounter", "eventnumber", "runnumber", "segmentnumber"};
0013   static const std::string SYNCNODENAME __attribute__((unused)) = "Sync";
0014 }  // namespace syncdefs
0015 
0016 #endif