![]() |
KaliVeda
Toolkit for HIC analysis
|
TH3 object which allow clusterization in cell density.
Created by KVClassFactory on Tue Sep 27 10:46:46 2016 Author: Eric BONNET
Definition at line 18 of file KVClust3D.h.
#include <KVClust3D.h>
Public Member Functions | |
KVClust3D () | |
Default constructor. More... | |
KVClust3D (const char *name, const char *title, Int_t nbinsx, const Double_t *xbins, Int_t nbinsy, const Double_t *ybins, Int_t nbinsz, const Double_t *zbins) | |
Constructor inherited from TH3D. More... | |
KVClust3D (const char *name, const char *title, Int_t nbinsx, const Float_t *xbins, Int_t nbinsy, const Float_t *ybins, Int_t nbinsz, const Float_t *zbins) | |
Constructor inherited from TH3D. More... | |
KVClust3D (const char *name, const char *title, Int_t nbinsx, Double_t xlow, Double_t xup, Int_t nbinsy, Double_t ylow, Double_t yup, Int_t nbinsz, Double_t zlow, Double_t zup) | |
Constructor inherited from TH3D. More... | |
virtual | ~KVClust3D () |
void | Clusterize () |
TH3D * | GetClusterIndex () const |
Int_t | GetNclusters () const |
Int_t | GetNvoisins () const |
Double_t * | GetPop () const |
Int_t * | GetSize () const |
Double_t | GetThreshold () const |
return the value of the threshold for the content of a cell to be considered has filled More... | |
Double_t | GetVolumeCell () const |
Double_t | GetVolumeVoisin () const |
Bool_t | IsLonelyCellsAreKept () const |
void | PrintInputs () const |
void | PrintResults () const |
TH3D * | ProduceTH3D (const Char_t *name) const |
void | ResetObjects () |
void | SetDensityThreshold (Double_t) |
Set density threshold on the content of a cell to be considered has filled. More... | |
void | SetLonelyCells (Bool_t) |
void | SetNvoisins (Int_t) |
void | SetThreshold (Double_t) |
Set threshold on the content of a cell to be considered has filled. More... | |
Private Member Functions | |
void | init () |
initialization method More... | |
Private Attributes | |
TH3D * | fCluster |
3D histogram where index of each cluster is putted as content in the associated cells More... | |
Bool_t | fKeepLonelyCells |
tells if we keep or not lonely cells, par default kTRUE More... | |
TArrayI * | fNcells |
exemple sur une dimension les cellules de nx-fNvoisins a nx+fNvoisins sont prises en compte, par defaut =1 More... | |
Int_t | fNclusters |
number of clusters found by the Clusterize method More... | |
Int_t | fNvoisins |
TArrayD * | fPop |
array where total contents of the clusters are stored More... | |
Double_t | fThreshold |
threshold on the content of each cell to be considered has filled More... | |
TH2D * | fVoisins |
internal histogram to gather possible connected clusters More... | |
KVClust3D::KVClust3D | ( | ) |
Default constructor.
Definition at line 38 of file KVClust3D.cpp.
KVClust3D::KVClust3D | ( | const char * | name, |
const char * | title, | ||
Int_t | nbinsx, | ||
Double_t | xlow, | ||
Double_t | xup, | ||
Int_t | nbinsy, | ||
Double_t | ylow, | ||
Double_t | yup, | ||
Int_t | nbinsz, | ||
Double_t | zlow, | ||
Double_t | zup | ||
) |
Constructor inherited from TH3D.
Definition at line 50 of file KVClust3D.cpp.
KVClust3D::KVClust3D | ( | const char * | name, |
const char * | title, | ||
Int_t | nbinsx, | ||
const Float_t * | xbins, | ||
Int_t | nbinsy, | ||
const Float_t * | ybins, | ||
Int_t | nbinsz, | ||
const Float_t * | zbins | ||
) |
Constructor inherited from TH3D.
Definition at line 63 of file KVClust3D.cpp.
KVClust3D::KVClust3D | ( | const char * | name, |
const char * | title, | ||
Int_t | nbinsx, | ||
const Double_t * | xbins, | ||
Int_t | nbinsy, | ||
const Double_t * | ybins, | ||
Int_t | nbinsz, | ||
const Double_t * | zbins | ||
) |
Constructor inherited from TH3D.
Definition at line 76 of file KVClust3D.cpp.
|
virtual |
Destructor delete fCluster; delete fVoisins; delete fNcells; delete fPop;
Definition at line 93 of file KVClust3D.cpp.
void KVClust3D::Clusterize | ( | ) |
Apply clusterization of the 3D histogram For each cell, with a content greater than the threshold defined before using the SetThreshold() method, test the content of the closest neighbors (8) to see if they are connected At the end, a clone histogram is available, using this method : GetClusterIndex(). The content of its cells corresponds to the index of each found cluster
Definition at line 285 of file KVClust3D.cpp.
TH3D * KVClust3D::GetClusterIndex | ( | ) | const |
return the clone 3D histogram where each cell has for content the index of the cluster it is associated to It's allow, afterward, for the user to calculate other observable associated to each clusters
Definition at line 608 of file KVClust3D.cpp.
Int_t KVClust3D::GetNclusters | ( | ) | const |
return the number of clusters found by the Clusterize() method
Definition at line 543 of file KVClust3D.cpp.
Int_t KVClust3D::GetNvoisins | ( | ) | const |
Definition at line 139 of file KVClust3D.cpp.
Double_t * KVClust3D::GetPop | ( | ) | const |
return the array of population (or total number of contents) associated to each cluster found by the Clusterize() method
Definition at line 572 of file KVClust3D.cpp.
Int_t * KVClust3D::GetSize | ( | ) | const |
return the array of size (or number of cells) associated to each cluster found by the Clusterize() method
Definition at line 557 of file KVClust3D.cpp.
Double_t KVClust3D::GetThreshold | ( | ) | const |
return the value of the threshold for the content of a cell to be considered has filled
Definition at line 217 of file KVClust3D.cpp.
Double_t KVClust3D::GetVolumeCell | ( | ) | const |
Definition at line 149 of file KVClust3D.cpp.
Double_t KVClust3D::GetVolumeVoisin | ( | ) | const |
Definition at line 159 of file KVClust3D.cpp.
|
private |
initialization method
Definition at line 16 of file KVClust3D.cpp.
Bool_t KVClust3D::IsLonelyCellsAreKept | ( | ) | const |
Definition at line 119 of file KVClust3D.cpp.
void KVClust3D::PrintInputs | ( | ) | const |
Definition at line 229 of file KVClust3D.cpp.
void KVClust3D::PrintResults | ( | ) | const |
print results of the Clusterize() method
Definition at line 587 of file KVClust3D.cpp.
TH3D * KVClust3D::ProduceTH3D | ( | const Char_t * | name | ) | const |
Create TH3D object, clone of the KVClust3D object user has to delete it after its use
Definition at line 251 of file KVClust3D.cpp.
void KVClust3D::ResetObjects | ( | ) |
Reset object associated to the KVClust3D object Don't reset the object it self
Definition at line 173 of file KVClust3D.cpp.
void KVClust3D::SetDensityThreshold | ( | Double_t | value | ) |
Set density threshold on the content of a cell to be considered has filled.
Definition at line 204 of file KVClust3D.cpp.
void KVClust3D::SetLonelyCells | ( | Bool_t | val | ) |
Definition at line 109 of file KVClust3D.cpp.
void KVClust3D::SetNvoisins | ( | Int_t | val | ) |
Definition at line 129 of file KVClust3D.cpp.
void KVClust3D::SetThreshold | ( | Double_t | value | ) |
Set threshold on the content of a cell to be considered has filled.
Definition at line 191 of file KVClust3D.cpp.
|
private |
3D histogram where index of each cluster is putted as content in the associated cells
Definition at line 25 of file KVClust3D.h.
|
private |
tells if we keep or not lonely cells, par default kTRUE
Definition at line 26 of file KVClust3D.h.
|
private |
exemple sur une dimension les cellules de nx-fNvoisins a nx+fNvoisins sont prises en compte, par defaut =1
array where size of the clusters are stored
Definition at line 29 of file KVClust3D.h.
|
private |
number of clusters found by the Clusterize method
Definition at line 22 of file KVClust3D.h.
|
private |
nombre de plus proches voisins a prendre en compte:
Definition at line 27 of file KVClust3D.h.
|
private |
array where total contents of the clusters are stored
Definition at line 30 of file KVClust3D.h.
|
private |
threshold on the content of each cell to be considered has filled
Definition at line 23 of file KVClust3D.h.
|
private |
internal histogram to gather possible connected clusters
Definition at line 24 of file KVClust3D.h.