00001 // -*- C++ -*- 00002 00010 #ifndef LCIO_STD_TYPES 00011 #define LCIO_STD_TYPES 1 00012 00013 00014 #include <string> 00015 #include <vector> 00016 00017 00018 namespace EVENT 00019 { 00020 typedef std::vector< std::string > StringVec ; 00021 typedef std::vector< float > FloatVec ; 00022 typedef std::vector< int > IntVec ; 00023 00024 }; 00025 00026 #endif