CMS 3D CMS Logo

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 public:
8  ESListOfFEDS();
9  void AddFED(int fed);
10  std::vector<int> GetList() const { return list_of_feds; }
11  void SetList(std::vector<int>& feds) { list_of_feds = feds; }
12 
13 private:
14  std::vector<int> list_of_feds;
15 };
16 
17 typedef std::vector<ESListOfFEDS> ESListOfFEDSCollection;
18 
19 #endif
std::vector< int > GetList() const
Definition: ESListOfFEDS.h:10
std::vector< ESListOfFEDS > ESListOfFEDSCollection
Definition: ESListOfFEDS.h:17
std::vector< int > list_of_feds
Definition: ESListOfFEDS.h:14
void AddFED(int fed)
Definition: ESListOfFEDS.cc:6
void SetList(std::vector< int > &feds)
Definition: ESListOfFEDS.h:11