Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:17

0001 #ifndef CommonTools_Utils_IntStack_h
0002 #define CommonTools_Utils_IntStack_h
0003 /* \class reco::parser::IntStack
0004  *
0005  * Stack of integers
0006  *
0007  * \author  Luca Lista, INFN
0008  *
0009  * \version $Revision: 1.1 $
0010  *
0011  */
0012 #include <vector>
0013 
0014 namespace reco {
0015   namespace parser {
0016     typedef std::vector<int> IntStack;
0017   }
0018 }  // namespace reco
0019 
0020 #endif