00001 00014 #include "jbltools/sfh/SFROList.h" 00015 00016 #include <cassert> 00017 00018 static const char *ident="@(#)$Id: SFROList.C,v 1.6 2005/07/08 15:01:35 blist Exp $"; 00019 00020 SFROList::SFROList () {} 00021 00022 SFROList::SFROList (const ROListPoR& mother) 00023 : ROList (mother) 00024 {} 00025 00026 void SFROList::Fill () { 00027 for (unsigned int i = 0; i < getEntries(); i++) { 00028 if (SFO* h = dynamic_cast<SFO*> (getEntry(i))) { 00029 h->Fill(); 00030 } 00031 } 00032 } 00033 00034 SFROList::~SFROList () 00035 {} 00036