![]() |
Belle II Software
release-06-01-15
|
The SVD Cluster class This class stores all information about reconstructed SVD clusters. More...
#include <SVDCluster.h>
Public Member Functions | |
SVDCluster (VxdID sensorID, bool isU, float position, float positionSigma, double clsTime, double clsTimeSigma, float clsCharge, float seedCharge, unsigned short clsSize, float clsSN, float clsChi2, int firstFrame=0) | |
Constructor. More... | |
SVDCluster () | |
Default constructor for the ROOT IO. | |
SVDCluster (VxdID sensorID, bool isU, float position, double clsTime, double clsTimeSigma, float clsCharge, float seedCharge, unsigned short clsSize) | |
OLD STYLE 8-params constructor, just for backward compatibility. More... | |
SVDCluster (VxdID sensorID, bool isU, float position, float positionSigma, double clsTime, double clsTimeSigma, float clsCharge, float seedCharge, unsigned short clsSize, float clsSN) | |
OLD STYLE Constructor, just for backward compatibility. More... | |
VxdID | getSensorID () const |
Get the sensor ID. More... | |
unsigned short | getRawSensorID () const |
Get raw sensor ID. | |
bool | isUCluster () const |
Get the direction of strips. More... | |
float | getPosition (double v=0) const |
Get the coordinate of reconstructed hit. More... | |
float | getPositionSigma () const |
Get the error of the reconstructed hit coordinate. More... | |
float | getClsTime () const |
Get average of waveform maximum times of cluster strip signals. More... | |
float | getClsTimeSigma () const |
Get the error of the reconstructed hit time. More... | |
float | getCharge () const |
Get collected charge. More... | |
float | getSeedCharge () const |
Get seed charge. More... | |
unsigned short | getSize () const |
Get cluster size. More... | |
float | getSNR () const |
Get cluster SNR. More... | |
float | getChi2 () const |
Get chi2 of the time/amplitude fit. More... | |
int | getFirstFrame () const |
Get firstFrame of the MaxSum algorithm. More... | |
double | getQuality () const |
Get cluster quality indicator. More... | |
double | getQualityError () const |
Get cluster quality indicator error. More... | |
void | setQualityIndicator (const double qualityIndicator) |
Add quality indicator to object. | |
void | setQualityIndicatorError (double qualityIndicatorError) |
Add quality indicator error to object. | |
std::string | print () const |
Get a string representation of the cluster. | |
void | addRelationTo (const RelationsInterface< BASE > *object, float weight=1.0, const std::string &namedRelation="") const |
Add a relation from this object to another object (with caching). More... | |
void | addRelationTo (const TObject *object, float weight=1.0, const std::string &namedRelation="") const |
Add a relation from this object to another object (no caching, can be quite slow). More... | |
void | copyRelations (const RelationsInterface< BASE > *sourceObj) |
Copies all relations of sourceObj (pointing from or to sourceObj) to this object (including weights). More... | |
template<class TO > | |
RelationVector< TO > | getRelationsTo (const std::string &name="", const std::string &namedRelation="") const |
Get the relations that point from this object to another store array. More... | |
template<class FROM > | |
RelationVector< FROM > | getRelationsFrom (const std::string &name="", const std::string &namedRelation="") const |
Get the relations that point from another store array to this object. More... | |
template<class T > | |
RelationVector< T > | getRelationsWith (const std::string &name="", const std::string &namedRelation="") const |
Get the relations between this object and another store array. More... | |
template<class TO > | |
TO * | getRelatedTo (const std::string &name="", const std::string &namedRelation="") const |
Get the object to which this object has a relation. More... | |
template<class FROM > | |
FROM * | getRelatedFrom (const std::string &name="", const std::string &namedRelation="") const |
Get the object from which this object has a relation. More... | |
template<class T > | |
T * | getRelated (const std::string &name="", const std::string &namedRelation="") const |
Get the object to or from which this object has a relation. More... | |
template<class TO > | |
std::pair< TO *, float > | getRelatedToWithWeight (const std::string &name="", const std::string &namedRelation="") const |
Get first related object & weight of relation pointing to an array. More... | |
template<class FROM > | |
std::pair< FROM *, float > | getRelatedFromWithWeight (const std::string &name="", const std::string &namedRelation="") const |
Get first related object & weight of relation pointing from an array. More... | |
template<class T > | |
std::pair< T *, float > | getRelatedWithWeight (const std::string &name="", const std::string &namedRelation="") const |
Get first related object & weight of relation pointing from/to an array. More... | |
virtual std::string | getName () const |
Return a short name that describes this object, e.g. More... | |
virtual std::string | getInfoHTML () const |
Return a short summary of this object's contents in HTML format. More... | |
std::string | getInfo () const |
Return a short summary of this object's contents in raw text format. More... | |
std::string | getArrayName () const |
Get name of array this object is stored in, or "" if not found. | |
int | getArrayIndex () const |
Returns this object's array index (in StoreArray), or -1 if not found. | |
Protected Member Functions | |
TClonesArray * | getArrayPointer () const |
Returns the pointer to the raw DataStore array holding this object (protected since these arrays are easy to misuse). | |
Protected Attributes | |
unsigned short | m_sensorID |
Compressed sensor identifier. | |
bool | m_isU |
True if clusters of u-strips, otherwise false. | |
float | m_position |
Reconstructed hit position in r-phi or z. | |
float | m_positionSigma |
Standard deviation of hit position in r-phi or z. | |
double | m_clsTime |
Average waveform maximum time. | |
double | m_clsTimeSigma |
Standard deviation of waveform maximum times. | |
float | m_clsCharge |
Deposited charge in electrons. | |
float | m_seedCharge |
Cluster seed charge in electrons. | |
unsigned short | m_clsSize |
Cluster size in pixels. | |
float | m_clsSN |
Cluster S/N ratio. | |
float | m_clsChi2 |
Chi2 for time/amplitude fit. | |
int | m_firstFrame |
firstFrame computed with the MaxSum algorithm | |
double | m_qualityIndicator = {0.} |
Probability of signal cluster. | |
double | m_qualityIndicatorError = {0.} |
Error associated with probability calcualtion. | |
Private Member Functions | |
ClassDef (RelationsInterface, 0) | |
defines interface for accessing relations of objects in StoreArray. | |
Private Attributes | |
DataStore::StoreEntry * | m_cacheDataStoreEntry |
Cache of the data store entry to which this object belongs. | |
int | m_cacheArrayIndex |
Cache of the index in the TClonesArray to which this object belongs. | |
The SVD Cluster class This class stores all information about reconstructed SVD clusters.
Definition at line 28 of file SVDCluster.h.
|
inline |
Constructor.
sensorID | Sensor compact ID. |
isU | true if u strips, otherwise false. |
position | Hit position estimate. |
positionSigma | Error of hit postion estimate. |
clsTime | Hit time stimate. |
clsTimeSigma | Error of hit time estimate. |
clsCharge | The cluster charge in ADC units. |
seedCharge | The charge of the seed strip in ADC units. |
clsSize | Cluster size, number of fired strips that form the cluster. |
clsSN | Signal-to-noise ratio for the cluster |
clsChi2 | value for cluster fit |
firstFrame |
Definition at line 45 of file SVDCluster.h.
|
inline |
OLD STYLE 8-params constructor, just for backward compatibility.
Will be removed in future.
sensorID | Sensor compact ID. |
isU | true if u strips, otherwise false. |
position | Hit position estimate. |
clsTime | Hit time stimate. |
clsTimeSigma | Error of hit time estimate. |
clsCharge | The cluster charge in ADC units. |
seedCharge | The charge of the seed strip in ADC units. |
clsSize | Cluster size, number of fired strips that form the cluster. |
Definition at line 71 of file SVDCluster.h.
|
inline |
OLD STYLE Constructor, just for backward compatibility.
sensorID | Sensor compact ID. |
isU | true if u strips, otherwise false. |
position | Hit position estimate. |
positionSigma | Error of hit postion estimate. |
clsTime | Hit time stimate. |
clsTimeSigma | Error of hit time estimate. |
clsCharge | The cluster charge in ADC units. |
seedCharge | The charge of the seed strip in ADC units. |
clsSize | Cluster size, number of fired strips that form the cluster. |
clsSN | Signal-to-noise ratio for the cluster Will be removed in future. |
Definition at line 91 of file SVDCluster.h.
|
inlineinherited |
Add a relation from this object to another object (with caching).
object | The object to which the relation should point. |
weight | The weight of the relation. |
namedRelation | Additional name for the relation, or "" for the default naming |
Definition at line 142 of file RelationsObject.h.
|
inlineinherited |
Add a relation from this object to another object (no caching, can be quite slow).
object | The object to which the relation should point. |
weight | The weight of the relation. |
namedRelation | Additional name for the relation, or "" for the default naming |
Definition at line 155 of file RelationsObject.h.
|
inlineinherited |
Copies all relations of sourceObj (pointing from or to sourceObj) to this object (including weights).
Useful if you want to make a complete copy of a StoreArray object to make modifications to it, but retain all information on linked objects.
Note: this only works if sourceObj inherits from the same base (e.g. RelationsObject), and only for related objects that also inherit from the same base.
Definition at line 170 of file RelationsObject.h.
|
inline |
Get collected charge.
Definition at line 143 of file SVDCluster.h.
|
inline |
Get chi2 of the time/amplitude fit.
Definition at line 163 of file SVDCluster.h.
|
inline |
Get average of waveform maximum times of cluster strip signals.
Definition at line 133 of file SVDCluster.h.
|
inline |
Get the error of the reconstructed hit time.
Definition at line 138 of file SVDCluster.h.
|
inline |
Get firstFrame of the MaxSum algorithm.
Definition at line 168 of file SVDCluster.h.
|
inlineinherited |
Return a short summary of this object's contents in raw text format.
Returns the contents of getInfoHTML() while translating line-breaks etc.
Definition at line 370 of file RelationsObject.h.
|
inlinevirtualinherited |
Return a short summary of this object's contents in HTML format.
Reimplement this in your own class to provide useful output for display or debugging purposes. For example, you might do something like:
Reimplemented in RecoTrack, TRGSummary, TrackFitResult, Track, SoftwareTriggerResult, PIDLikelihood, MCParticle, Cluster, and Particle.
Definition at line 362 of file RelationsObject.h.
|
inlinevirtualinherited |
Return a short name that describes this object, e.g.
pi+ for an MCParticle.
Reimplemented in SpacePoint, MCParticle, and Particle.
Definition at line 344 of file RelationsObject.h.
|
inline |
Get the coordinate of reconstructed hit.
The returned value is now dependent of vCluster and valid only and it is only relevant for wedged/slanted sensors because of their trapezoidal shape, for rectangular shapes, the value does not change
Definition at line 116 of file SVDCluster.h.
|
inline |
Get the error of the reconstructed hit coordinate.
Definition at line 128 of file SVDCluster.h.
|
inline |
Get cluster quality indicator.
Definition at line 173 of file SVDCluster.h.
|
inline |
Get cluster quality indicator error.
Definition at line 178 of file SVDCluster.h.
|
inlineinherited |
Get the object to or from which this object has a relation.
T | The class of objects to or from which the relation points. |
name | The name of the store array to or from which the relation points. If empty the default store array name for class T will be used. If the special name "ALL" is given all store arrays containing objects of type T are considered. |
namedRelation | Additional name for the relation, or "" for the default naming |
Definition at line 278 of file RelationsObject.h.
|
inlineinherited |
Get the object from which this object has a relation.
FROM | The class of objects from which the relation points. |
name | The name of the store array from which the relation points. If empty the default store array name for class FROM will be used. If the special name "ALL" is given all store arrays containing objects of type FROM are considered. |
namedRelation | Additional name for the relation, or "" for the default naming |
Definition at line 263 of file RelationsObject.h.
|
inlineinherited |
Get first related object & weight of relation pointing from an array.
FROM | The class of objects from which the relation points. |
name | The name of the store array from which the relation points. If empty the default store array name for class FROM will be used. If the special name "ALL" is given all store arrays containing objects of type FROM are considered. |
namedRelation | Additional name for the relation, or "" for the default naming |
Definition at line 314 of file RelationsObject.h.
|
inlineinherited |
Get the object to which this object has a relation.
TO | The class of objects to which the relation points. |
name | The name of the store array to which the relation points. If empty the default store array name for class TO will be used. If the special name "ALL" is given all store arrays containing objects of type TO are considered. |
namedRelation | Additional name for the relation, or "" for the default naming |
Definition at line 248 of file RelationsObject.h.
|
inlineinherited |
Get first related object & weight of relation pointing to an array.
TO | The class of objects to which the relation points. |
name | The name of the store array to which the relation points. If empty the default store array name for class TO will be used. If the special name "ALL" is given all store arrays containing objects of type TO are considered. |
namedRelation | Additional name for the relation, or "" for the default naming |
Definition at line 297 of file RelationsObject.h.
|
inlineinherited |
Get first related object & weight of relation pointing from/to an array.
T | The class of objects to or from which the relation points. |
name | The name of the store array to or from which the relation points. If empty the default store array name for class T will be used. If the special name "ALL" is given all store arrays containing objects of type T are considered. |
namedRelation | Additional name for the relation, or "" for the default naming |
Definition at line 331 of file RelationsObject.h.
|
inlineinherited |
Get the relations that point from another store array to this object.
FROM | The class of objects from which the relations point. |
name | The name of the store array from which the relations point. If empty the default store array name for class FROM will be used. If the special name "ALL" is given all store arrays containing objects of type FROM are considered. |
namedRelation | Additional name for the relation, or "" for the default naming |
Definition at line 212 of file RelationsObject.h.
|
inlineinherited |
Get the relations that point from this object to another store array.
TO | The class of objects to which the relations point. |
name | The name of the store array to which the relations point. If empty the default store array name for class TO will be used. If the special name "ALL" is given all store arrays containing objects of type TO are considered. |
namedRelation | Additional name for the relation, or "" for the default naming |
Definition at line 197 of file RelationsObject.h.
|
inlineinherited |
Get the relations between this object and another store array.
Relations in both directions are returned.
T | The class of objects to or from which the relations point. |
name | The name of the store array to or from which the relations point. If empty the default store array name for class T will be used. If the special name "ALL" is given all store arrays containing objects of type T are considered. |
namedRelation | Additional name for the relation, or "" for the default naming |
Definition at line 230 of file RelationsObject.h.
|
inline |
Get seed charge.
Definition at line 148 of file SVDCluster.h.
|
inline |
|
inline |
Get cluster size.
Definition at line 153 of file SVDCluster.h.
|
inline |
Get cluster SNR.
Definition at line 158 of file SVDCluster.h.
|
inline |
Get the direction of strips.
Definition at line 109 of file SVDCluster.h.