Project
Loading...
Searching...
No Matches
o2::phos::BadChannelsMap Class Reference

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.
 
BadChannelsMapoperator+= (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.
 

Detailed Description

CCDB container for bad (masked) channels in PHOS.

Author
Dmitri Peresunko, adopted from EMCAL (Markus Fasel)
Since
Aug. 1, 2019

The PHOS Bad Channel Map

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.

Constructor & Destructor Documentation

◆ BadChannelsMap() [1/3]

o2::phos::BadChannelsMap::BadChannelsMap ( )
default

Constructor.

◆ BadChannelsMap() [2/3]

o2::phos::BadChannelsMap::BadChannelsMap ( const BadChannelsMap another)
default

Constructor.

◆ BadChannelsMap() [3/3]

BadChannelsMap::BadChannelsMap ( int  test)

Constructur used to build test bad map.

Definition at line 23 of file BadChannelsMap.cxx.

◆ ~BadChannelsMap()

o2::phos::BadChannelsMap::~BadChannelsMap ( )
default

Destructor.

Member Function Documentation

◆ addBadChannel()

void o2::phos::BadChannelsMap::addBadChannel ( short  channelID)
inline

Add bad cell to the container.

Parameters
channelIDAbsolute ID of the bad channel
masktype of the bad channel

Definition at line 91 of file BadChannelsMap.h.

◆ getHistogramRepresentation()

void BadChannelsMap::getHistogramRepresentation ( char  mod,
TH2 *  h 
) const

Convert map into 2D histogram representation.

Parameters
modModule number
hHistogram 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:

  • 0: GOOD_CELL
  • 1: BAD_CELL Attention: It is responsibility of user to create/delete histogram

Definition at line 48 of file BadChannelsMap.cxx.

◆ isChannelGood()

bool o2::phos::BadChannelsMap::isChannelGood ( short  channelID) const
inline

Get the status of a certain cell.

Parameters
channelIDchannel for which to obtain the channel status
Returns
true if good channel

Provide the mask status of a cell.

Definition at line 103 of file BadChannelsMap.h.

◆ operator+=()

BadChannelsMap & o2::phos::BadChannelsMap::operator+= ( const BadChannelsMap rhs)
inline

Add bad channel map to this bad channel map.

Parameters
rhsBad channel map to be added to this bad channel map
Returns
Reference to the combined bad channel map

Adding bad channels of another bad channel map to this bad channel map.

Definition at line 76 of file BadChannelsMap.h.

◆ operator==()

bool o2::phos::BadChannelsMap::operator== ( const BadChannelsMap other) const
inline

Comparison of two bad channel maps.

Returns
true if the bad channel maps are identical, false otherwise

Testing two bad channel maps for equalness.

Definition at line 86 of file BadChannelsMap.h.

◆ PrintStream()

void BadChannelsMap::PrintStream ( std::ostream &  stream) const

Print bad channels on a given stream.

Parameters
streamStream 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.

◆ setChannelGood()

void o2::phos::BadChannelsMap::setChannelGood ( short  channelID)
inline

Mark channel as good.

Parameters
channelIDAbsolute ID of the channel Setting channel as good.

Definition at line 96 of file BadChannelsMap.h.


The documentation for this class was generated from the following files: