CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ESListOfFEDS.h
Go to the documentation of this file.
1 #ifndef RAWECAL_ESListOfFEDS
2 #define RAWECAL_ESListOfFEDS
3 
4 #include <vector>
5 
6 class ESListOfFEDS {
7 
8  public:
9  ESListOfFEDS();
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<ESListOfFEDS> ESListOfFEDSCollection;
19 
20 
21 #endif
std::vector< ESListOfFEDS > ESListOfFEDSCollection
Definition: ESListOfFEDS.h:18
std::vector< int > GetList() const
Definition: ESListOfFEDS.h:11
std::vector< int > list_of_feds
Definition: ESListOfFEDS.h:15
void AddFED(int fed)
Definition: ESListOfFEDS.cc:8
void SetList(std::vector< int > &feds)
Definition: ESListOfFEDS.h:12