diff --git a/src/THcInterface.cxx b/src/THcInterface.cxx index 765b89aaba71f53172a139ed8482552f7e71b0ed..092c2c3e63b06259c730b75f8512fa2eef6fb486 100644 --- a/src/THcInterface.cxx +++ b/src/THcInterface.cxx @@ -73,7 +73,7 @@ THcInterface::THcInterface( const char* appClassName, int* argc, char** argv, if( !noLogo ) PrintLogo(); - SetPrompt("analyzerTHcInterface [%d] "); + SetPrompt("analyzerThcInterface [%d] "); gHaVars = new THaVarList; gHcParms = new THcParmList; gHaCuts = new THaCutList( gHaVars ); @@ -86,6 +86,9 @@ THcInterface::THcInterface( const char* appClassName, int* argc, char** argv, // gHaDB = new THaFileDB(); gHaTextvars = new THaTextvars; + cout << "In THcInterface ... " << endl; + cout << "Decoder => " << gHaDecoder << endl; + // Set the maximum size for a file written by Podd contained by the TTree // putting it to 1.5 GB, down from the default 1.9 GB since something odd // happens for larger files @@ -231,6 +234,7 @@ void THcInterface::PrintLogo( Bool_t lite ) TClass* THcInterface::GetDecoder() { // Get class of the current decoder + cout << "In THcInterface::GetDecoder ... " << gHaDecoder << endl; return gHaDecoder; } @@ -251,6 +255,8 @@ TClass* THcInterface::SetDecoder( TClass* c ) return NULL; } + cout << "In THcInterface::SetDecoder ... " << c << endl; + gHaDecoder = c; return gHaDecoder; }