Belle II Software development
DQMHistAnalysisPhysics.cc
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
8//+
9// File : DQMHistAnalysisPhysics.cc
10// Description : DQM module, for the physics histograms at hlt level
11//-
12
13
14#include <dqm/analysis/modules/DQMHistAnalysisPhysics.h>
15#include <TROOT.h>
16
17using namespace std;
18using namespace Belle2;
19
20//-----------------------------------------------------------------
21// Register the Module
22//-----------------------------------------------------------------
23REG_MODULE(DQMHistAnalysisPhysics);
24
25//-----------------------------------------------------------------
26// Implementation
27//-----------------------------------------------------------------
28
30{
31 // Description
32 // Parameter definition
33 setDescription("DQM Analysis for Physics histograms");
35 addParam("PVPrefix", m_pvPrefix, "PV Prefix", std::string("Physics:"));
36
37 B2DEBUG(20, "DQMHistAnalysisPhysics: Constructor done.");
38}
39
41{
42}
43
45{
46 gROOT->cd();
47 m_monObj = getMonitoringObject("physics_hlt");
48 //new text for plots
49 m_cmUPS_text = new TPaveText(0.7, 0.8, 0.9, 0.9, "NDC");
50 m_cmUPS_text->SetFillColor(0);
51 m_cmUPS_text->SetFillStyle(0);
52 m_cmUPS_text->SetTextAlign(12);
53 m_cmUPS_text->SetBorderSize(0);
54 m_cmUPS_text->SetTextSize(0.026);
55 m_cmUPSe_text = new TPaveText(0.7, 0.8, 0.9, 0.9, "NDC");
56 m_cmUPSe_text->SetFillColor(0);
57 m_cmUPSe_text->SetFillStyle(0);
58 m_cmUPSe_text->SetTextAlign(12);
59 m_cmUPSe_text->SetBorderSize(0);
60 m_cmUPSe_text->SetTextSize(0.026);
61 m_ratio_text = new TPaveText(0.6, 0.6, 0.9, 0.9, "NDC");
62 m_ratio_text->SetFillColor(0);
63 m_ratio_text->SetFillStyle(0);
64 m_ratio_text->SetTextAlign(12);
65 m_ratio_text->SetBorderSize(0);
66 m_ratio_text->SetTextSize(0.026);
67
68 //new ratio hadronb2_tight/bhabha_all
69 addDeltaPar("PhysicsObjects", "physicsresults", HistDelta::c_Events, 3000000, 1); // update each 10000 events
70 registerEpicsPV(m_pvPrefix + "hadronb2_tight_over_bhabha_all", "hadronb2_tight_over_bhabha_all");
71
72 B2DEBUG(20, "DQMHistAnalysisPhysics: initialized.");
73}
74
75
77{
78 B2DEBUG(20, "DQMHistAnalysisPhysics: beginRun called.");
79}
80
82{
83 m_cmUPS_text->Clear();
84 auto m_hmUPS = findHist("PhysicsObjects/mUPS", true);// check if updated
85 if (m_hmUPS) {
86 double mean_mUPS = m_hmUPS->GetMean();
87 m_cmUPS_text->AddText(Form("mean : %.2f", float(mean_mUPS)));
88
89 }
90 m_cmUPSe_text->Clear();
91 auto m_hmUPSe = findHist("PhysicsObjects/mUPSe", true);// check if updated
92 if (m_hmUPSe) {
93 double mean_mUPSe = m_hmUPSe->GetMean();
94 m_cmUPSe_text->AddText(Form("mean : %.2f", float(mean_mUPSe)));
95 }
96 m_ratio_text->Clear();
97 auto m_hphysicsresults = findHist("PhysicsObjects/physicsresults", true);// check if updated
98 if (m_hphysicsresults) {
99 double had_ntot = m_hphysicsresults->GetBinContent(2);
100 double hadb2_ntot = m_hphysicsresults->GetBinContent(3);
101 double hadb2_tight_ntot = m_hphysicsresults->GetBinContent(4);
102 double mumu_tight_ntot = m_hphysicsresults->GetBinContent(5);
103 double bhabha_all_ntot = m_hphysicsresults->GetBinContent(6);
104
105 double ratio_hadron_bhabha = 0.;
106 double ratio_hadronb2_bhabha = 0.;
107 double ratio_hadronb2_tight_bhabha = 0.;
108 double ratio_mumu_tight_bhabha = 0.;
109
110 if (bhabha_all_ntot != 0) {
111 ratio_hadron_bhabha = had_ntot / bhabha_all_ntot;
112 ratio_hadronb2_bhabha = hadb2_ntot / bhabha_all_ntot;
113 ratio_hadronb2_tight_bhabha = hadb2_tight_ntot / bhabha_all_ntot;
114 ratio_mumu_tight_bhabha = mumu_tight_ntot / bhabha_all_ntot;
115 }
116 m_ratio_text->AddText(Form("hadronb2_tight/bhabha: %.4f", float(ratio_hadronb2_tight_bhabha)));
117 m_ratio_text->AddText(Form("hadronb2/bhabha: %.4f", float(ratio_hadronb2_bhabha)));
118 m_ratio_text->AddText(Form("mumu_tight/bhabha: %.4f", float(ratio_mumu_tight_bhabha)));
119 m_ratio_text->AddText(Form("hadron/bhabha: %.4f", float(ratio_hadron_bhabha)));
120
121 }
122 // for pv #new hadronb2_tight/#bhabha_all
123 auto hist_hadronb2_tight_over_bhabha_all = getDelta("PhysicsObjects", "physicsresults", 0, true);// only if updated
124 if (hist_hadronb2_tight_over_bhabha_all) {
125 if (hist_hadronb2_tight_over_bhabha_all->GetBinContent(6) != 0) {
126 double hadronb2_tight_over_bhabha_all = hist_hadronb2_tight_over_bhabha_all->GetBinContent(4) /
127 hist_hadronb2_tight_over_bhabha_all->GetBinContent(6);
128 B2DEBUG(1, "hadronb2_tight_over_bhabha_all:" << hadronb2_tight_over_bhabha_all);
129 setEpicsPV("hadronb2_tight_over_bhabha_all", hadronb2_tight_over_bhabha_all);
130 }
131 }
132
133 auto* m_cmUPS = findCanvas("PhysicsObjects/c_mUPS");
134 if (m_cmUPS) {
135 m_cmUPS->cd();
136 m_cmUPS_text->Draw();
137 m_cmUPS->Modified();
138 m_cmUPS->Update();
139 }
140 auto* m_cmUPSe = findCanvas("PhysicsObjects/c_mUPSe");
141 if (m_cmUPSe) {
142 m_cmUPSe->cd();
143 m_cmUPSe_text->Draw();
144 m_cmUPSe->Modified();
145 m_cmUPSe->Update();
146 }
147 auto* m_cphysicsresults = findCanvas("PhysicsObjects/c_physicsresults");
148 if (m_cphysicsresults) {
149 m_cphysicsresults->cd();
150 m_ratio_text->Draw();
151 m_cphysicsresults->Modified();
152 m_cphysicsresults->Update();
153 }
154}
156{
157 auto m_hphysicsresults = findHist("PhysicsObjects/physicsresults");
158 if (m_hphysicsresults) {
159 double had_ntot = m_hphysicsresults->GetBinContent(2);
160 double hadb2_ntot = m_hphysicsresults->GetBinContent(3);
161 double hadb2_tight_ntot = m_hphysicsresults->GetBinContent(4);
162 double mumu_tight_ntot = m_hphysicsresults->GetBinContent(5);
163 double bhabha_all_ntot = m_hphysicsresults->GetBinContent(6);
164 double ratio_hadron_bhabha_final = 0.;
165 double ratio_hadronb2_bhabha_final = 0.;
166 double ratio_hadronb2_tight_bhabha_final = 0.;
167 double ratio_mumu_tight_bhabha_final = 0.;
168
169 if (bhabha_all_ntot != 0) {
170 ratio_hadron_bhabha_final = had_ntot / bhabha_all_ntot;
171 ratio_hadronb2_bhabha_final = hadb2_ntot / bhabha_all_ntot;
172 ratio_hadronb2_tight_bhabha_final = hadb2_tight_ntot / bhabha_all_ntot;
173 ratio_mumu_tight_bhabha_final = mumu_tight_ntot / bhabha_all_ntot;
174 }
175 m_monObj->setVariable("ratio_hadron_bhabha_hlt", ratio_hadron_bhabha_final);
176 m_monObj->setVariable("ratio_hadronb2_bhabha_hlt", ratio_hadronb2_bhabha_final);
177 m_monObj->setVariable("ratio_hadronb2_tight_bhabha_hlt", ratio_hadronb2_tight_bhabha_final);
178 m_monObj->setVariable("ratio_mumu_tight_bhabha_hlt", ratio_mumu_tight_bhabha_final);
179
180 }
181}
182
184{
185
186 B2DEBUG(20, "DQMHistAnalysisPhysics: terminate called");
187}
188
The base class for the histogram analysis module.
TCanvas * findCanvas(TString cname)
Find canvas by name.
static MonitoringObject * getMonitoringObject(const std::string &name)
Get MonitoringObject with given name (new object is created if non-existing)
void addDeltaPar(const std::string &dirname, const std::string &histname, HistDelta::EDeltaType t, int p, unsigned int a=1)
Add Delta histogram parameters.
static TH1 * findHist(const std::string &histname, bool onlyIfUpdated=false)
Get histogram from list (no other search).
TH1 * getDelta(const std::string &fullname, int n=0, bool onlyIfUpdated=true)
Get Delta histogram.
void setEpicsPV(std::string keyname, double value)
Write value to a EPICS PV.
int registerEpicsPV(std::string pvname, std::string keyname="")
EPICS related Functions.
void terminate(void) override final
This method is called at the end of the event processing.
TPaveText * m_ratio_text
TPaveText, ratios physics results.
void initialize(void) override final
Initializer.
void endRun(void) override final
End-of-run action.
std::string m_pvPrefix
prefix for EPICS PVs
MonitoringObject * m_monObj
Monitoring Object.
TPaveText * m_cmUPS_text
TPaveText, Ups Invariant Mass (mumu)
TPaveText * m_cmUPSe_text
TPaveText, Ups ee Invariant Mass.
void beginRun(void) override final
Called when entering a new run.
void event(void) override final
This method is called for each event.
void setDescription(const std::string &description)
Sets the description of the module.
Definition: Module.cc:214
void setPropertyFlags(unsigned int propertyFlags)
Sets the flags for the module properties.
Definition: Module.cc:208
@ c_ParallelProcessingCertified
This module can be run in parallel processing mode safely (All I/O must be done through the data stor...
Definition: Module.h:80
void setVariable(const std::string &var, float val, float upErr=-1., float dwErr=-1)
set value to float variable (new variable is made if not yet existing)
void addParam(const std::string &name, T &paramVariable, const std::string &description, const T &defaultValue)
Adds a new parameter to the module.
Definition: Module.h:560
#define REG_MODULE(moduleName)
Register the given module (without 'Module' suffix) with the framework.
Definition: Module.h:650
Abstract base class for different kinds of events.
STL namespace.