Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:12

0001 #ifndef Utilities_GetPassID_h
0002 #define Utilities_GetPassID_h
0003 
0004 #include <string>
0005 
0006 namespace edm {
0007   inline std::string getPassID() {
0008     static std::string const passID;
0009     // return empty string for now.
0010     return passID;
0011   }
0012 }  // namespace edm
0013 #endif