Analysis FAQ

From GlueXWiki
Revision as of 13:09, 18 July 2014 by Pmatt (Talk | contribs) (Created page with "== Neutrals == * Given a DNeutralParticleHypothesis or DNeutralShower object, how do I get the FCAL/BCAL shower objects? <syntaxhighlight> //given a hypothesis, get the neutral...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Neutrals

  • Given a DNeutralParticleHypothesis or DNeutralShower object, how do I get the FCAL/BCAL shower objects?
//given a hypothesis, get the neutral shower:
const DNeutralShower* locNeutralShower = NULL;
locNeutralParticleHypothesis->GetSingle(locNeutralShower);
 
//given a neutral shower, get the BCAL shower:
const DFCALShower* locFCALShower = NULL;
if(locNeutralShower->dDetectorSystem == SYS_FCAL)
   locNeutralShower->GetSingle(locFCALShower);
 
//given a neutral shower, get the FCAL shower:
const DBCALShower* locBCALShower = NULL;
if(locNeutralShower->dDetectorSystem == SYS_BCAL)
   locNeutralShower->GetSingle(locBCALShower);