yoda is hosted by Hepforge, IPPP Durham
YODA - Yet more Objects for Data Analysis 2.1.0
Fillable.h
Go to the documentation of this file.
1// -*- C++ -*-
2//
3// This file is part of YODA -- Yet more Objects for Data Analysis
4// Copyright (C) 2008-2025 The YODA collaboration (see AUTHORS for details)
5//
6#ifndef YODA_Fillable_h
7#define YODA_Fillable_h
8
10
11namespace YODA {
12
13
15 class Fillable {
16 public:
17
19
20
22 virtual ~Fillable() = default;
23
24
26
28
29
31 virtual void reset() = 0;
32
34 virtual void scaleW(double scalefactor) = 0;
35
37
39
40
42 virtual size_t fillDim() const noexcept = 0;
43
45 virtual double numEntries(const bool includeoverflows=true) const = 0;
46
48 virtual double effNumEntries(const bool includeoverflows=true) const = 0;
49
51 virtual double sumW(const bool includeoverflows=true) const = 0;
52
54 virtual double sumW2(const bool includeoverflows=true) const = 0;
55
57
58 };
59
60
61}
62
63#endif
A base class for all fillable objects.
Definition Fillable.h:15
virtual double sumW(const bool includeoverflows=true) const =0
Get sum of weights in histo.
virtual double effNumEntries(const bool includeoverflows=true) const =0
Get the effective number of fills.
virtual ~Fillable()=default
Virtual destructor for inheritance.
virtual void scaleW(double scalefactor)=0
Rescale as if all fill weights had been different by factor scalefactor.
virtual double sumW2(const bool includeoverflows=true) const =0
Get sum of squared weights in histo.
virtual double numEntries(const bool includeoverflows=true) const =0
Get the number of fills.
virtual void reset()=0
Reset.
virtual size_t fillDim() const noexcept=0
Fill-dimension of this data object.
Anonymous namespace to limit visibility.