Marlin  1.17.1
 All Classes Namespaces Functions Variables Enumerations Friends Pages
MarlinLCIOSTLTypes.h
1 // -*- C++ -*-
2 
10 #ifndef LCIO_STD_TYPES
11 #define LCIO_STD_TYPES 1
12 
13 
14 #include <string>
15 #include <vector>
16 
17 
18 namespace EVENT
19 {
20 typedef std::vector< std::string > StringVec ;
21 typedef std::vector< float > FloatVec ;
22 typedef std::vector< int > IntVec ;
23 
24 };
25 
26 #endif