00001 // -*- C++ -*- 00002 00003 /**Typedefs for std::vectors of basic types used in LCIO 00004 */ 00005 00006 #ifndef LCIO_STD_TYPES 00007 #define LCIO_STD_TYPES 1 00008 00009 00010 #include <string> 00011 #include <vector> 00012 00013 namespace EVENT 00014 { 00015 /**Vector of strings.*/ 00016 typedef std::vector< std::string > StringVec ; 00017 /**Vector of floats.*/ 00018 typedef std::vector< float > FloatVec ; 00019 /**Vector of doubles.*/ 00020 typedef std::vector< double > DoubleVec ; 00021 /**Vector of ints.*/ 00022 typedef std::vector< int > IntVec ; 00023 /**Vector of shorts.*/ 00024 typedef std::vector< short > ShortVec ; 00025 00026 } 00027 00028 #endif
1.3.9.1