From d4de5d5b6cd9391e22166198eecb44d19857f75d Mon Sep 17 00:00:00 2001 From: Edward Brash <brash@jlab.org> Date: Thu, 10 Oct 2013 20:47:07 -0400 Subject: [PATCH] Debugging statements ... --- src/THcInterface.cxx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/THcInterface.cxx b/src/THcInterface.cxx index 765b89a..092c2c3 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; } -- GitLab