CMS 3D CMS Logo

EcalListOfFEDS.h
Go to the documentation of this file.
1 #ifndef RAWECAL_ListOfFEDS
2 #define RAWECAL_ListOfFEDS
3 
4 #include <vector>
5 
7 public:
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<EcalListOfFEDS> EcalListOfFEDSCollection;
18 
19 #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)