EcalListOfFEDS

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef RAWECAL_ListOfFEDS
#define RAWECAL_ListOfFEDS

#include <vector>

class EcalListOfFEDS {
public:
  EcalListOfFEDS();
  void AddFED(int fed);
  std::vector<int> GetList() const { return list_of_feds; }
  void SetList(std::vector<int>& feds) { list_of_feds = feds; }

private:
  std::vector<int> list_of_feds;
};

typedef std::vector<EcalListOfFEDS> EcalListOfFEDSCollection;

#endif