#include <SoftPhotonBarAcceptor.h>
Inheritance diagram for FastShower::SoftPhotonBarAcceptor:
Public Methods | |
SoftPhotonBarAcceptor () | |
SoftPhotonBarAcceptor (const IConfigurer *, const std::string &) | |
virtual IAcceptor * | clone () const |
Implementation of the IAcceptor interface. | |
virtual bool | accept (const ParticleParameters &) const |
|
Definition at line 8 of file SoftPhotonBarAcceptor.cxx. Referenced by clone().
00008 : 00009 IAcceptor(), DebugBase("SoftPhotonBarAcceptor"){} |
|
|
|
Implementation of the IAcceptor interface.
Implements FastShower::IAcceptor. Definition at line 11 of file SoftPhotonBarAcceptor.cxx. References SoftPhotonBarAcceptor().
00011 { 00012 return new SoftPhotonBarAcceptor(*this); 00013 } |
|
Implements FastShower::IAcceptor. Definition at line 15 of file SoftPhotonBarAcceptor.cxx. References FastShower::ParticleParameters::isPhoton(), FastShower::ParticleParameters::rawEnergy(), and FastShower::ParticleParameters::region().
00015 {
00016 return (pp.isPhoton() && pp.rawEnergy()<1.5 && pp.region()==0);
00017 }
|