00001 // TEpicsEvent.cxx. 00013 #include <iostream> 00014 00015 #include "TEpicsEvent.h" 00016 00017 using std::cout; 00018 using std::endl; 00019 00020 // Class implementation tag for ROOT. 00021 // 00022 ClassImp(TEpicsEvent) 00023 00024 TEpicsEvent::TEpicsEvent() 00025 { 00028 } 00029 00030 TEpicsEvent::~TEpicsEvent() 00031 { 00034 } 00035 00036 void TEpicsEvent::Clear(const Char_t *option) 00037 { 00041 fEpics.clear(); 00042 } 00043 00044 void TEpicsEvent::Print(const Char_t *option) const 00045 { 00050 cout << "TEpicsEvent:" << endl 00051 << "EPICS = " << fEpics.size() << endl; 00052 if (option[0] == 'a') 00053 for (UInt_t i = 0; i < fEpics.size(); i++) 00054 fEpics[i].Print("epics: "); 00055 }