Belle II Software  release-05-02-19
hitMapMaker.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2010 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Luka Santelj, Kindo Haruki *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #ifndef ARICHHITMAPMAKER_H
12 #define ARICHHITMAPMAKER_H
13 
14 #include <TCanvas.h>
15 #include <TH1F.h>
16 #include <TH2F.h>
17 
18 namespace Belle2 {
29  TH2* moduleHitMap(TH1* hitMap, int moduleID);
30 
36  TH2* moduleDeadMap(TH1* hitMap, int moduleID);
37 
43  TH1* mergerClusterHitMap1D(TH1* hitMap, int mergerID);
44 
50  TCanvas* mergerClusterHitMap2D(TH1* hitMap, int mergerID);
51 
57  TCanvas* sectorHitMap(TH1* hitMap, int sector);
58 
64  TCanvas* sectorDeadMap(TH1* hitMap, int sector);
65 
67 } // Belle2 namespace
68 
69 #endif
Belle2::mergerClusterHitMap1D
TH1 * mergerClusterHitMap1D(TH1 *hitMap, int mergerID)
Make 1D hit map of specified Merger Board.
Definition: hitMapMaker.cc:99
Belle2::mergerClusterHitMap2D
TCanvas * mergerClusterHitMap2D(TH1 *hitMap, int mergerID)
Make display of 6 HAPDs' 2D hit map of the Merger Board.
Definition: hitMapMaker.cc:124
Belle2::sectorHitMap
TCanvas * sectorHitMap(TH1 *hitMap, int sector)
Make display of 70 HAPDs' 2D hit map of the sector.
Definition: hitMapMaker.cc:148
Belle2::moduleHitMap
TH2 * moduleHitMap(TH1 *hitMap, int moduleID)
Make hit map in HAPD view (12*12 channels)
Definition: hitMapMaker.cc:42
Belle2::moduleDeadMap
TH2 * moduleDeadMap(TH1 *hitMap, int moduleID)
Make chip dead/alive map in HAPD view (2*2 chips)
Definition: hitMapMaker.cc:66
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::sectorDeadMap
TCanvas * sectorDeadMap(TH1 *hitMap, int sector)
Make display of 70 HAPDs' 2D dead/alive map of the sector.
Definition: hitMapMaker.cc:180