#include <C0SamplerRouterADPhiSample.h>
Inheritance diagram for FastShower::C0SamplerRouterADPhiSample:
Public Methods | |
C0SamplerRouterADPhiSample (const std::vector< std::pair< double, ISampler * > > &, double floor=0.0, std::string label="") | |
C0SamplerRouterADPhiSample (const C0SamplerRouterADPhiSample &s) | |
virtual ISampler * | clone () const |
make a copy of objects viewed through ISampler interface. | |
~C0SamplerRouterADPhiSample () | |
virtual double | indexQ (const ParticleParameters &, const CoreSamples &) const |
Supply a sample method. | |
virtual double | lastValue (const CoreSamples &) const |
for monitoring - get the last "Sampler" value. |
Definition at line 32 of file C0SamplerRouterADPhiSample.h.
|
Definition at line 10 of file C0SamplerRouterADPhiSample.cxx. Referenced by clone().
00015 : 00016 SamplerRouter(v, floor, label){}; |
|
Definition at line 18 of file C0SamplerRouterADPhiSample.cxx.
00019 : 00020 SamplerRouter(s){}; |
|
Definition at line 39 of file C0SamplerRouterADPhiSample.h.
00039 {} |
|
make a copy of objects viewed through ISampler interface.
Implements FastShower::ISampler. Definition at line 22 of file C0SamplerRouterADPhiSample.cxx. References C0SamplerRouterADPhiSample().
00022 { 00023 return new C0SamplerRouterADPhiSample(*this); 00024 } |
|
Supply a sample method.
Implements FastShower::SamplerRouter. Definition at line 26 of file C0SamplerRouterADPhiSample.cxx.
00027 {
00028 return fabs(pp.delPhi());
00029 }
|
|
for monitoring - get the last "Sampler" value.
Implements FastShower::ISampler. Definition at line 31 of file C0SamplerRouterADPhiSample.cxx. References FastShower::CoreSamples::give().
00031 { 00032 return cs.give(this); 00033 } |