Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:36

0001 #pragma once 
0002 
0003 #include <string>
0004 #include "SYSRAP_API_EXPORT.hh"
0005 
0006 struct SYSRAP_API SFrameConfig 
0007 {
0008     static constexpr const char* kFrameMask   = "OPTICKS_FRAME_MASK" ; 
0009     static constexpr const char* _FrameMaskAll = "pixel,isect,fphoton"  ; 
0010     static constexpr const char* _FrameMaskDefault = "pixel"  ; 
0011     static unsigned _FrameMask ; 
0012 
0013     static unsigned FrameMask(); 
0014     static void SetFrameMask(const char* names, char delim=',') ; 
0015     static std::string FrameMaskLabel(); 
0016 
0017     static std::string Desc(); 
0018 }; 
0019 
0020 
0021