00001 #include <iostream> 00002 #include "DataFormats/EcalRawData/interface/ESListOfFEDS.h" 00003 00004 ESListOfFEDS::ESListOfFEDS() { 00005 list_of_feds.clear(); 00006 } 00007 00008 void ESListOfFEDS::AddFED(int fed) { 00009 list_of_feds.push_back(fed); 00010 } 00011 00012