Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
THnSparse_Internal.h
Go to the documentation of this file.
1// @(#)root/hist:$Id$
2// Author: Axel Naumann (2007-09-11)
3
4/*************************************************************************
5 * Copyright (C) 1995-2012, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_THnSparse_Internal
13#define ROOT_THnSparse_Internal
14
15/*************************************************************************
16 * Non-API classes for THnSparse. *
17 * I.e. interesting to look at if you want to know how it works, but *
18 * don't use directly. *
19 * Implementation in THnSparse.cxx. *
20 *************************************************************************/
21
22#include "TArrayD.h"
23
24#include "TObject.h"
25
26class TBrowser;
27class TH1;
28class THnSparse;
29
31 private:
32
35
36 public:
39 fContent(nullptr), fSumw2(nullptr) {}
40
41 THnSparseArrayChunk(Int_t coordsize, bool errors, TArray* cont);
42 ~THnSparseArrayChunk() override;
43
44 Int_t fCoordinateAllocationSize; ///<! Size of the allocated coordinate buffer; -1 means none or fCoordinatesSize
45 Int_t fSingleCoordinateSize; ///< Size of a single bin coordinate
46 Int_t fCoordinatesSize; ///< Size of the bin coordinate buffer
47 Char_t *fCoordinates; ///<[fCoordinatesSize] compact bin coordinate buffer
48 TArray *fContent; ///< Bin content
49 TArrayD *fSumw2; ///< Bin errors
50
51 void AddBin(Int_t idx, const Char_t* idxbuf);
52 void AddBinContent(Int_t idx, Double_t v = 1.) {
53 fContent->SetAt(v + fContent->GetAt(idx), idx);
54 if (fSumw2)
55 fSumw2->SetAt(v * v + fSumw2->GetAt(idx), idx);
56 }
57 void Sumw2();
59
60 /// Check whether bin at idx batches idxbuf.
61 /// If we don't store indexes we trust the caller that it does match,
62 /// see comment in THnSparseCompactBinCoord::GetHash().
63 Bool_t Matches(Int_t idx, const Char_t* idxbuf) const {
64 return fSingleCoordinateSize <= 8 ||
66
67 ClassDefOverride(THnSparseArrayChunk, 1); // chunks of linearized bins
68};
69#endif // ROOT_THnSparse_Internal
70
int Int_t
Definition RtypesCore.h:45
char Char_t
Definition RtypesCore.h:37
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
Array of doubles (64 bits per element).
Definition TArrayD.h:27
Double_t GetAt(Int_t i) const override
Definition TArrayD.h:45
void SetAt(Double_t v, Int_t i) override
Definition TArrayD.h:51
Abstract array base class.
Definition TArray.h:31
virtual void SetAt(Double_t v, Int_t i)=0
virtual Double_t GetAt(Int_t i) const =0
Using a TBrowser one can browse all ROOT objects.
Definition TBrowser.h:37
TH1 is the base class of all histogram classes in ROOT.
Definition TH1.h:59
THnSparseArrayChunk is used internally by THnSparse.
Bool_t Matches(Int_t idx, const Char_t *idxbuf) const
Check whether bin at idx batches idxbuf.
~THnSparseArrayChunk() override
Destructor.
TArrayD * fSumw2
Bin errors.
Int_t fCoordinatesSize
Size of the bin coordinate buffer.
Int_t fSingleCoordinateSize
Size of a single bin coordinate.
void AddBinContent(Int_t idx, Double_t v=1.)
void Sumw2()
Turn on support of errors.
Char_t * fCoordinates
[fCoordinatesSize] compact bin coordinate buffer
TArray * fContent
Bin content.
THnSparseArrayChunk(const THnSparseArrayChunk &)=delete
THnSparseArrayChunk & operator=(const THnSparseArrayChunk &)=delete
void AddBin(Int_t idx, const Char_t *idxbuf)
Create a new bin in this chunk.
Int_t fCoordinateAllocationSize
! Size of the allocated coordinate buffer; -1 means none or fCoordinatesSize
Efficient multidimensional histogram.
Definition THnSparse.h:37
Mother of all ROOT objects.
Definition TObject.h:41