00001 #include "TGsiAug12OutputProc.h" 00002 00003 #include "ROOTCONV/TRootConverterProc.h" 00004 00005 #include "TGsiAug12Param.h" 00006 00007 TGsiAug12OutputProc::TGsiAug12OutputProc(const char* name) : TCBMBeamtimeProc(name) 00008 { 00009 cout << "**** TGsiAug12OutputProc: Create instance " << name << endl; 00010 00011 TGsiAug12Param* parAnalysis = (TGsiAug12Param*) GetParameter("GsiAug12Par"); 00012 00013 // Add here subprocessors: 00014 if( kTRUE == parAnalysis->bWithTreeOutput ) 00015 AddSubProcessor(new TRootConverterProc(Form("%s_ROOTCONV",name))); 00016 /* 00017 // Add here subprocessors: 00018 AddSubProcessor(new TRootConverterProc(Form("%s_ROOTCONV",name))); 00019 */ 00020 } 00021 00022 00023 TGsiAug12OutputProc::~TGsiAug12OutputProc() 00024 { 00025 } 00026