#include <ANHadEarlyEcalEc2.h>
Inheritance diagram for FastShower::ANHadEarlyEcalEc2:
Public Methods | |
ANHadEarlyEcalEc2 (IUpdatingGaussian *) | |
ANHadEarlyEcalEc2 (const IConfigurer *, const std::string &) | |
virtual ISampler * | clone () const |
ISampler interface. | |
virtual void | sample (const PolyArgs &, CoreSamples &) const |
sample and fill CoreSamples. | |
virtual double | lastValue (const CoreSamples &) const |
read back last deposit - used by monitoring code. | |
virtual void | components (IDebug::Cpts &) const |
Private Attributes | |
SP< IUpdatingGaussian > | m_peak |
|
Definition at line 22 of file ANHadEarlyEcalEc2.cxx. Referenced by clone().
|
|
Definition at line 25 of file ANHadEarlyEcalEc2.cxx. References FastShower::IConfigurer::findIUG(), m_peak, and FastShower::DebugBase::text().
|
|
ISampler interface.
Implements FastShower::ISampler. Definition at line 32 of file ANHadEarlyEcalEc2.cxx. References ANHadEarlyEcalEc2().
00032 { 00033 return new ANHadEarlyEcalEc2(*this); 00034 } |
|
sample and fill CoreSamples.
Implements FastShower::ISampler. Definition at line 36 of file ANHadEarlyEcalEc2.cxx. References FastShower::CoreSamples::fill(), and m_peak.
00037 { 00038 cs.fill(this,m_peak->sample(0.0, 100, 1.0, 100, pa)); 00039 } |
|
read back last deposit - used by monitoring code.
Implements FastShower::ISampler. Definition at line 41 of file ANHadEarlyEcalEc2.cxx. References FastShower::CoreSamples::give().
00041 { 00042 return cs.give(this); 00043 } |
|
Reimplemented from FastShower::DebugBase. Definition at line 45 of file ANHadEarlyEcalEc2.cxx. References m_peak.
00045 { 00046 v.push_back(m_peak); 00047 } |
|
Definition at line 70 of file ANHadEarlyEcalEc2.h. Referenced by ANHadEarlyEcalEc2(), components(), and sample(). |