#include "THaPostProcess.h"
#include "TList.h"
TList* THaPostProcess::fgModules = NULL;
using namespace std;
THaPostProcess::THaPostProcess() : fIsInit(0)
{
if( !fgModules ) fgModules = new TList;
fgModules->Add( this );
}
THaPostProcess::~THaPostProcess()
{
fgModules->Remove( this );
if( fgModules->GetSize() == 0 ) {
delete fgModules; fgModules = NULL;
}
}
ClassImp(THaPostProcess)
Last change: Sat Nov 7 21:26:49 2009
Last generated: 2009-11-07 21:26
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.