CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalListOfFEDS.h
Go to the documentation of this file.
1 #ifndef RAWECAL_ListOfFEDS
2 #define RAWECAL_ListOfFEDS
3 
4 #include <vector>
5 
7 
8  public:
10  void AddFED(int fed);
11  std::vector<int> GetList() const { return list_of_feds; }
12  void SetList(std::vector<int>& feds) { list_of_feds = feds; }
13 
14  private:
15  std::vector<int> list_of_feds;
16 };
17 
18 typedef std::vector<EcalListOfFEDS> EcalListOfFEDSCollection;
19 
20 
21 #endif
std::vector< EcalListOfFEDS > EcalListOfFEDSCollection
std::vector< int > list_of_feds
std::vector< int > GetList() const
void SetList(std::vector< int > &feds)
void AddFED(int fed)