00001 #ifndef CommonTools_Utils_IntStack_h 00002 #define CommonTools_Utils_IntStack_h 00003 /* \class reco::parser::IntStack 00004 * 00005 * Stack of integers 00006 * 00007 * \author Luca Lista, INFN 00008 * 00009 * \version $Revision: 1.2 $ 00010 * 00011 */ 00012 #include <vector> 00013 00014 namespace reco { 00015 namespace parser { 00016 typedef std::vector<int> IntStack; 00017 } 00018 } 00019 00020 #endif