#include <SFO.h>
Inheritance diagram for SFO:
SFO is the base class for all self-filling objects, whoose characteristic is that they have a Fill() method that does not require any arguments. This Fill() method is implemented in the derived classes using function objects.
The self-filling object can be a single histogram or a whole collection of histograms.
Author: Jenny Böhme, Benno List
Changelog:
Definition at line 30 of file SFO.h.
Public Member Functions | |
SFO () | |
Default constructor, needed because other constructors are private. | |
virtual | ~SFO () |
Virtual destructor to ensure that dynamic casts work. | |
virtual void | Fill ()=0 |
The self-filling method. | |
Private Member Functions | |
SFO (const SFO &rhs) | |
Private copy constructor, left unimplemented: No copying! | |
SFO & | operator= (const SFO &rhs) |
Private assignment operator, left unimplemented: No assignment! |