Skip to content
Snippets Groups Projects
Commit d4de5d5b authored by Edward Brash's avatar Edward Brash Committed by Stephen A. Wood
Browse files

Debugging statements ...

parent a4d01fbc
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment