Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 // Tell emacs that this is a C++ source
0002 //  -*- C++ -*-.
0003 #ifndef FUN4ALL_FUN4ALLUTILS_H
0004 #define FUN4ALL_FUN4ALLUTILS_H
0005 
0006 #include <string>
0007 #include <utility>  // for pair
0008 
0009 namespace Fun4AllUtils
0010 {
0011   std::pair<int, int> GetRunSegment(const std::string &filename);
0012 }
0013 
0014 #endif