![]() |
Project
|
CCDB container for bad (masked) channels in PHOS. More...
#include <BadChannelsMap.h>
Public Member Functions | |
BadChannelsMap ()=default | |
Constructor. | |
BadChannelsMap (const BadChannelsMap &another)=default | |
Constructor. | |
BadChannelsMap (int test) | |
Constructur used to build test bad map. | |
~BadChannelsMap ()=default | |
Destructor. | |
BadChannelsMap & | operator+= (const BadChannelsMap &rhs) |
Add bad channel map to this bad channel map. | |
bool | operator== (const BadChannelsMap &other) const |
Comparison of two bad channel maps. | |
void | addBadChannel (short channelID) |
Add bad cell to the container. | |
void | setChannelGood (short channelID) |
Mark channel as good. | |
bool | isChannelGood (short channelID) const |
Get the status of a certain cell. | |
void | getHistogramRepresentation (char mod, TH2 *h) const |
Convert map into 2D histogram representation. | |
void | PrintStream (std::ostream &stream) const |
Print bad channels on a given stream. | |
CCDB container for bad (masked) channels in PHOS.
The bad channel map contains channels which are marked to be bad and excluded from reonstruction: clusterization or other analysis processes.
Bad channels can be added via bcm.addBadChannel(1234); goodness of channel can be restored with bcm.setChannelGood(1234) ;
Reading the channel status is done via bool status = bcm.isChannelGood(1234); Calling isChannelGood for cells beyond PHOS will return the status bad.
For visualization a 2D histogram with the cell status as function of x(phi) vs z for each module can be created on the fly from the bad channel map. As the histogram is created dynamically from the absolute cell ID an instance of the PHOS Geometry is required - otherwise an empty histogram is created.
The bad channel map can be created from multiple bad channel maps using the operator +=. This allows for the combination of the bad channel map from multiple time slices.
Definition at line 55 of file BadChannelsMap.h.
|
default |
Constructor.
|
default |
Constructor.
BadChannelsMap::BadChannelsMap | ( | int | test | ) |
Constructur used to build test bad map.
Definition at line 23 of file BadChannelsMap.cxx.
|
default |
Destructor.
Add bad cell to the container.
channelID | Absolute ID of the bad channel |
mask | type of the bad channel |
Definition at line 91 of file BadChannelsMap.h.
Convert map into 2D histogram representation.
mod | Module number |
h | Histogram of size 64*56 to be filled with the bad channel map. |
Convert bad channel map into a 2D map with phi(64) vs z(56) dimensions. Entries in the histogram are:
Definition at line 48 of file BadChannelsMap.cxx.
|
inline |
Get the status of a certain cell.
channelID | channel for which to obtain the channel status |
Provide the mask status of a cell.
Definition at line 103 of file BadChannelsMap.h.
|
inline |
Add bad channel map to this bad channel map.
rhs | Bad channel map to be added to this bad channel map |
Adding bad channels of another bad channel map to this bad channel map.
Definition at line 76 of file BadChannelsMap.h.
|
inline |
Comparison of two bad channel maps.
Testing two bad channel maps for equalness.
Definition at line 86 of file BadChannelsMap.h.
void BadChannelsMap::PrintStream | ( | std::ostream & | stream | ) | const |
Print bad channels on a given stream.
stream | Stream on which the bad channel map is printed on |
Printing all bad channels store in the bad channel map on the stream.
The function is called in the operator<< providing direct access to protected members. Explicit calls by the users is normally not necessary.
Definition at line 84 of file BadChannelsMap.cxx.
Mark channel as good.
channelID | Absolute ID of the channel Setting channel as good. |
Definition at line 96 of file BadChannelsMap.h.