Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-15 09:18:31

0001 #ifndef PODIO_ARROWUTILS_H
0002 #define PODIO_ARROWUTILS_H
0003 
0004 #include <string>
0005 
0006 namespace arrow {
0007 class Status;
0008 } // namespace arrow
0009 
0010 namespace podio::arrow_utils {
0011 
0012 /**
0013  * @brief Check if an arrow::Status is OK. If not, throw std::runtime_error.
0014  */
0015 void checkStatus(const arrow::Status& status, const std::string& msg);
0016 
0017 } // namespace podio::arrow_utils
0018 
0019 #endif // PODIO_ARROWUTILS_H