File indexing completed on 2024-04-06 12:04:05
0001 #ifndef RAWECAL_ListOfFEDS
0002 #define RAWECAL_ListOfFEDS
0003
0004 #include <vector>
0005
0006 class EcalListOfFEDS {
0007 public:
0008 EcalListOfFEDS();
0009 void AddFED(int fed);
0010 std::vector<int> GetList() const { return list_of_feds; }
0011 void SetList(std::vector<int>& feds) { list_of_feds = feds; }
0012
0013 private:
0014 std::vector<int> list_of_feds;
0015 };
0016
0017 typedef std::vector<EcalListOfFEDS> EcalListOfFEDSCollection;
0018
0019 #endif