00001 #include "TFiberHodEvent.h" 00002 00003 #include <algorithm> 00004 #include <math.h> 00005 00006 #include "TH1.h" 00007 #include "TH2.h" 00008 #include "TROOT.h" 00009 #include "TSystem.h" 00010 #include "TPedestalExtractor.h" 00011 00012 #include "TGo4Log.h" 00013 #include "TGo4MbsEvent.h" 00014 #include "TGo4WinCond.h" 00015 #include "TGo4AnalysisImp.h" 00016 00017 #include "roc/Message.h" 00018 00019 00020 TFiberHodEvent::TFiberHodEvent() : 00021 TGo4EventElement(), 00022 fHits() 00023 { 00024 // dummy for tree streamer 00025 } 00026 00027 00028 //*********************************************************** 00029 // this one is used in standard factory 00030 00031 TFiberHodEvent::TFiberHodEvent(const char* name, Short_t id) : 00032 TGo4EventElement(name, "Hodoscope event", id), 00033 fHits() 00034 { 00035 } 00036 00037 TFiberHodEvent::~TFiberHodEvent() 00038 { 00039 } 00040 00041 00042 void TFiberHodEvent::Clear(Option_t *t) 00043 { 00044 TGo4EventElement::Clear(t); 00045 00046 fHits.clear(); 00047 }