#include "THaPIDinfo.h"
#include "THaTrack.h"
#include "THaSpectrometer.h"
#include "THaTrackingDetector.h"
#include <iostream>
using namespace std;
THaPIDinfo::THaPIDinfo() : fProb(0), fCombinedProb(0), fNdet(0), fNpart(0)
{
}
THaPIDinfo::THaPIDinfo( UInt_t ndet, UInt_t npart ) : fNdet(ndet), fNpart(npart)
{
SetupArrays( ndet, npart );
}
THaPIDinfo::THaPIDinfo( const THaTrack* track )
{
const THaSpectrometer* sp;
const THaTrackingDetector* td;
if( track && (td = track->GetCreator()) &&
(sp = static_cast<THaSpectrometer*>(td->GetApparatus())) ) {
fNdet = sp->GetNpidDetectors();
fNpart = sp->GetNpidParticles();
SetupArrays( fNdet, fNpart );
} else {
fNdet = fNpart = 0;
fProb = fCombinedProb = 0;
}
}
THaPIDinfo::~THaPIDinfo()
{
delete fCombinedProb;
delete fProb;
}
void THaPIDinfo::Clear( Option_t* )
{
if( fProb ) fProb->Reset();
if( fCombinedProb ) fCombinedProb->Reset();
}
void THaPIDinfo::CombinePID()
{
for( UInt_t p = 0; p < fNpart; p++ ) {
(*fCombinedProb)[p] = 1.0;
for( UInt_t d = 0; d < fNdet; d++ ) {
(*fCombinedProb)[p] *= (*fProb)[idx(d,p)];
}
}
}
void THaPIDinfo::Print( Option_t* ) const
{
for( UInt_t d = 0; d < fNdet; d++ ) {
for( UInt_t p = 0; p < fNpart; p++ ) {
if( d == 0 )
cout << (*fCombinedProb)[p];
else
cout << (*fProb)[ idx(d-1,p) ];
if( p != fNpart-1 ) cout << " ";
}
cout << endl;
}
}
void THaPIDinfo::SetupArrays( UInt_t ndet, UInt_t npart )
{
if( ndet > 0 && npart > 0 ) {
fProb = new TArrayD( ndet*npart );
fCombinedProb = new TArrayD( npart );
} else {
fProb = fCombinedProb = 0;
fNdet = fNpart = 0;
}
}
void THaPIDinfo::SetSize( UInt_t ndet, UInt_t npart )
{
if( ndet == fNdet && npart == fNpart ) return;
if( ndet == 0 || npart == 0 ) {
delete fProb;
delete fCombinedProb;
fProb = fCombinedProb = 0;
fNdet = fNpart = 0;
return;
}
if( fProb ) {
if( ndet != fNdet || npart != fNpart ) {
fProb->Set( ndet*npart );
}
} else
fProb = new TArrayD( ndet*npart );
if( fCombinedProb ) {
if( npart != fNpart ) fCombinedProb->Set( npart );
} else
fCombinedProb = new TArrayD( npart );
fNdet = ndet;
fNpart = npart;
}
ClassImp(THaPIDinfo)
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.