00001 #include "TLaserTest12UnpackProc.h" 00002 00003 #include <stdlib.h> 00004 00005 #include "TGo4Version.h" 00006 #if __GO4BUILDVERSION__ > 40502 00007 #include "go4iostream.h" 00008 #else 00009 #include "Riostream.h" 00010 #endif 00011 #include "TRocProc.h" 00012 #include "TEpicsProc.h" 00013 00014 00015 //*********************************************************** 00016 // this one is used in standard factory 00017 TLaserTest12UnpackProc::TLaserTest12UnpackProc(const char* name) : TCBMBeamtimeProc(name) 00018 { 00019 cout << "**** TLaserTest12Proc: Create instance " << name << endl; 00020 00021 // Add here subprocessors: 00022 AddSubProcessor(new TRocProc(Form("%s_ROC",name))); 00023 AddSubProcessor(new TEpicsProc(Form("%s_EPICS",name))); 00024 00025 } 00026 00027 //*********************************************************** 00028 TLaserTest12UnpackProc::~TLaserTest12UnpackProc() 00029 { 00030 } 00031 00032