#include "THaApparatus.h"
#include "THaDetector.h"
#include "TClass.h"
#include "TList.h"
#ifdef WITH_DEBUG
#include <iostream>
#endif
using namespace std;
THaApparatus::THaApparatus( const char* name, const char* description ) :
THaAnalysisObject(name,description)
{
fDetectors = new TList;
}
THaApparatus::THaApparatus( ) : fDetectors(NULL)
{
}
THaApparatus::~THaApparatus()
{
if (fDetectors) {
fDetectors->Delete();
delete fDetectors; fDetectors=0;
}
}
Int_t THaApparatus::AddDetector( THaDetector* pdet )
{
THaDetector* pfound =
static_cast<THaDetector*>( fDetectors->FindObject( pdet->GetName() ));
if( pfound ) {
Error("THaApparatus", "Detector with name %s already exists for this"
" apparatus. Not added.", pdet->GetName() );
return -1;
}
pdet->SetApparatus(this);
fDetectors->AddLast( pdet );
return 0;
}
Int_t THaApparatus::Begin( THaRunBase* run )
{
TIter next(fDetectors);
while( THaAnalysisObject* obj = static_cast<THaAnalysisObject*>(next()) ) {
obj->Begin(run);
}
return 0;
}
void THaApparatus::Clear( Option_t* opt )
{
TIter next(fDetectors);
while( THaDetector* theDetector = static_cast<THaDetector*>( next() )) {
#ifdef WITH_DEBUG
if( fDebug>1 ) cout << "Clearing " << theDetector->GetName()
<< "... " << flush;
#endif
theDetector->Clear(opt);
#ifdef WITH_DEBUG
if( fDebug>1 ) cout << "done.\n" << flush;
#endif
}
}
Int_t THaApparatus::Decode( const THaEvData& evdata )
{
TIter next(fDetectors);
while( THaDetector* theDetector = static_cast<THaDetector*>( next() )) {
#ifdef WITH_DEBUG
if( fDebug>1 ) cout << "Decoding " << theDetector->GetName()
<< "... " << flush;
#endif
theDetector->Decode( evdata );
#ifdef WITH_DEBUG
if( fDebug>1 ) cout << "done.\n" << flush;
#endif
}
return 0;
}
Int_t THaApparatus::End( THaRunBase* run )
{
TIter next(fDetectors);
while( THaAnalysisObject* obj = static_cast<THaAnalysisObject*>(next()) ) {
obj->End(run);
}
return 0;
}
THaDetector* THaApparatus::GetDetector( const char* name )
{
return reinterpret_cast<THaDetector*>( fDetectors->FindObject( name ));
}
Int_t THaApparatus::GetNumDets() const
{
return fDetectors->GetSize();
}
THaAnalysisObject::EStatus THaApparatus::Init( const TDatime& run_time )
{
if( THaAnalysisObject::Init( run_time ) )
return fStatus;
TIter next(fDetectors);
TObject* obj;
while( (obj = next()) ) {
if( !obj->IsA()->InheritsFrom("THaDetector")) {
Error( Here("Init()"), "Detector %s (\"%s\") is not a THaDetector. "
"Initialization of apparatus %s (\"%s\") failed.",
obj->GetName(), obj->GetTitle(), GetName(), GetTitle());
fStatus = kInitError;
} else {
THaDetector* theDetector = static_cast<THaDetector*>( obj );
#ifdef WITH_DEBUG
if( fDebug>0 ) cout << "Initializing "
<< theDetector->GetName() << "... "
<< flush;
#endif
theDetector->Init( run_time );
#ifdef WITH_DEBUG
if( fDebug>0 ) cout << "done.\n" << flush;
#endif
if( !theDetector->IsOK() ) {
Error( Here("Init()"), "While initializing apparatus %s (\"%s\") "
"got error %d from detector %s (\"%s\")",
GetName(), GetTitle(), theDetector->Status(),
theDetector->GetName(), theDetector->GetTitle());
fStatus = kInitError;
}
}
}
return fStatus;
}
void THaApparatus::MakePrefix()
{
THaAnalysisObject::MakePrefix( NULL );
}
void THaApparatus::Print( Option_t* opt ) const
{
THaAnalysisObject::Print(opt);
fDetectors->Print(opt);
}
void THaApparatus::SetDebugAll( Int_t level )
{
SetDebug( level );
TIter next(fDetectors);
while( THaDetector* theDetector = static_cast<THaDetector*>( next() )) {
theDetector->SetDebug( level );
}
}
ClassImp(THaApparatus)
Last change: Sat Nov 7 21:26:42 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.