Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef CSCobject_h
0002 #define CSCobject_h
0003 
0004 #include <vector>
0005 #include <map>
0006 
0007 class CSCobject {
0008 public:
0009   CSCobject();
0010   ~CSCobject();
0011 
0012   std::map<int, std::vector<std::vector<float> > > obj;
0013 };
0014 
0015 #endif