#include <InTail.h>
Inheritance diagram for FastShower::InTail:
Public Methods | |
InTail (IFn *tailFrac) | |
InTail (const IConfigurer &, const std::string &) | |
bool | operator() (const PolyArgs &) const |
IInTail * | clone () const |
void | components (IDebug::Cpts &v) const |
Private Attributes | |
SP< IFn > | m_tailFrac |
SP< IProcessedDist > | m_dist |
|
Definition at line 5 of file InTail.cxx. Referenced by clone().
00005 : 00006 m_tailFrac(tf), m_dist( new ProcessedFlat() ){} // |
|
Definition at line 8 of file InTail.cxx. References FastShower::IConfigurer::findFn(), m_dist, m_tailFrac, and FastShower::IConfigurer::makeProcessedFlat().
00008 { 00009 m_tailFrac = c.findFn(s+"TailFrac"); 00010 m_dist = c.makeProcessedFlat(s+"InTail"); 00011 } |
|
Implements FastShower::IInTail. Definition at line 13 of file InTail.cxx. References m_dist, and m_tailFrac.
00013 { 00014 return ( m_dist->sample() < m_tailFrac->value(pa) ); 00015 } |
|
Implements FastShower::IInTail. Definition at line 17 of file InTail.cxx. References InTail().
00017 {return new InTail(*this);} |
|
Reimplemented from FastShower::DebugBase. Definition at line 19 of file InTail.cxx. References m_dist, and m_tailFrac.
00019 { 00020 v.push_back(m_tailFrac); 00021 v.push_back(m_dist); 00022 return; 00023 } |
|
Definition at line 43 of file InTail.h. Referenced by components(), InTail(), and operator()(). |
|
Definition at line 44 of file InTail.h. Referenced by components(), InTail(), and operator()(). |