CMS 3D CMS Logo

ESListOfFEDS.h

Go to the documentation of this file.
00001 #ifndef RAWECAL_ESListOfFEDS
00002 #define RAWECAL_ESListOfFEDS
00003 
00004 #include <vector>
00005 
00006 class ESListOfFEDS {
00007 
00008  public:
00009         ESListOfFEDS();
00010         void AddFED(int fed);
00011         std::vector<int> GetList() const { return list_of_feds; }
00012         void SetList(std::vector<int>& feds) { list_of_feds = feds; }
00013 
00014  private:
00015         std::vector<int> list_of_feds;
00016 };
00017 
00018 typedef std::vector<ESListOfFEDS> ESListOfFEDSCollection;
00019 
00020 
00021 #endif

Generated on Tue Jun 9 17:30:42 2009 for CMSSW by  doxygen 1.5.4