14#include <dqm/analysis/modules/DQMHistAnalysisPhysics.h>
37 B2DEBUG(20,
"DQMHistAnalysisPhysics: Constructor done.");
61 m_ratio_text =
new TPaveText(0.55, 0.6, 0.85, 0.9,
"NDC");
69 addDeltaPar(
"PhysicsObjects",
"physicsresults", HistDelta::c_Events, 3000000, 1);
72 B2DEBUG(20,
"DQMHistAnalysisPhysics: initialized.");
78 B2DEBUG(20,
"DQMHistAnalysisPhysics: beginRun called.");
86 if (m_IsPhysicsRun ==
true) {
89 auto m_hmUPS =
findHist(
"PhysicsObjects/mUPS",
true);
91 double mean_mUPS = m_hmUPS->GetMean();
92 m_cmUPS_text->AddText(Form(
"mean : %.2f",
float(mean_mUPS)));
96 auto m_hmUPSe =
findHist(
"PhysicsObjects/mUPSe",
true);
98 double mean_mUPSe = m_hmUPSe->GetMean();
99 m_cmUPSe_text->AddText(Form(
"mean : %.2f",
float(mean_mUPSe)));
102 auto m_hphysicsresults =
findHist(
"PhysicsObjects/physicsresults",
true);
103 if (m_hphysicsresults) {
104 double had_ntot = m_hphysicsresults->GetBinContent(2);
105 double hadb2_ntot = m_hphysicsresults->GetBinContent(3);
106 double hadb2_tight_ntot = m_hphysicsresults->GetBinContent(4);
107 double mumu_tight_ntot = m_hphysicsresults->GetBinContent(5);
108 double bhabha_all_ntot = m_hphysicsresults->GetBinContent(6);
110 double ratio_hadron_bhabha = 0.;
111 double ratio_hadronb2_bhabha = 0.;
112 double ratio_hadronb2_tight_bhabha = 0.;
113 double ratio_mumu_tight_bhabha = 0.;
114 double error_hadron_bhabha = -10.;
115 double error_hadronb2_bhabha = -10.;
116 double error_hadronb2_tight_bhabha = -10.;
117 double error_mumu_tight_bhabha = -10.;
120 if (bhabha_all_ntot != 0) {
121 ratio_hadron_bhabha = had_ntot / bhabha_all_ntot;
122 error_hadron_bhabha = ratio_hadron_bhabha *
sqrt((1 / had_ntot) + (1 / bhabha_all_ntot));
123 ratio_hadronb2_bhabha = hadb2_ntot / bhabha_all_ntot;
124 error_hadronb2_bhabha = ratio_hadronb2_bhabha *
sqrt((1 / hadb2_ntot) + (1 / bhabha_all_ntot));
125 ratio_hadronb2_tight_bhabha = hadb2_tight_ntot / bhabha_all_ntot;
126 error_hadronb2_tight_bhabha = ratio_hadronb2_tight_bhabha *
sqrt((1 / hadb2_tight_ntot) + (1 / bhabha_all_ntot));
127 ratio_mumu_tight_bhabha = mumu_tight_ntot / bhabha_all_ntot;
128 error_mumu_tight_bhabha = ratio_mumu_tight_bhabha *
sqrt((1 / mumu_tight_ntot) + (1 / bhabha_all_ntot));
130 m_ratio_text->AddText(Form(
"hadronb2_tight/bhabha: %.4f +/- %.4f",
float(ratio_hadronb2_tight_bhabha),
131 float(error_hadronb2_tight_bhabha)));
132 m_ratio_text->AddText(Form(
"hadronb2/bhabha: %.4f +/- %.4f",
float(ratio_hadronb2_bhabha),
float(error_hadronb2_bhabha)));
133 m_ratio_text->AddText(Form(
"mumu_tight/bhabha: %.4f +/- %.4f",
float(ratio_mumu_tight_bhabha),
float(error_mumu_tight_bhabha)));
134 m_ratio_text->AddText(Form(
"hadron/bhabha: %.4f +/- %.4f",
float(ratio_hadron_bhabha),
float(error_hadron_bhabha)));
139 auto hist_hadronb2_tight_over_bhabha_all =
getDelta(
"PhysicsObjects",
"physicsresults", 0,
true);
140 if (hist_hadronb2_tight_over_bhabha_all) {
141 if (hist_hadronb2_tight_over_bhabha_all->GetBinContent(6) != 0) {
142 double hadronb2_tight_over_bhabha_all = hist_hadronb2_tight_over_bhabha_all->GetBinContent(4) /
143 hist_hadronb2_tight_over_bhabha_all->GetBinContent(6);
144 B2DEBUG(1,
"hadronb2_tight_over_bhabha_all:" << hadronb2_tight_over_bhabha_all);
145 setEpicsPV(
"hadronb2_tight_over_bhabha_all", hadronb2_tight_over_bhabha_all);
149 auto* m_cmUPS =
findCanvas(
"PhysicsObjects/c_mUPS");
156 auto* m_cmUPSe =
findCanvas(
"PhysicsObjects/c_mUPSe");
160 m_cmUPSe->Modified();
163 auto* m_cphysicsresults =
findCanvas(
"PhysicsObjects/c_physicsresults");
164 if (m_cphysicsresults) {
165 m_cphysicsresults->cd();
167 m_cphysicsresults->Modified();
168 m_cphysicsresults->Update();
174 auto m_hphysicsresults =
findHist(
"PhysicsObjects/physicsresults");
175 if (m_hphysicsresults) {
176 double had_ntot = m_hphysicsresults->GetBinContent(2);
177 double hadb2_ntot = m_hphysicsresults->GetBinContent(3);
178 double hadb2_tight_ntot = m_hphysicsresults->GetBinContent(4);
179 double mumu_tight_ntot = m_hphysicsresults->GetBinContent(5);
180 double bhabha_all_ntot = m_hphysicsresults->GetBinContent(6);
181 double ratio_hadron_bhabha_final = 0.;
182 double ratio_hadronb2_bhabha_final = 0.;
183 double ratio_hadronb2_tight_bhabha_final = 0.;
184 double ratio_mumu_tight_bhabha_final = 0.;
186 if (bhabha_all_ntot != 0) {
187 ratio_hadron_bhabha_final = had_ntot / bhabha_all_ntot;
188 ratio_hadronb2_bhabha_final = hadb2_ntot / bhabha_all_ntot;
189 ratio_hadronb2_tight_bhabha_final = hadb2_tight_ntot / bhabha_all_ntot;
190 ratio_mumu_tight_bhabha_final = mumu_tight_ntot / bhabha_all_ntot;
194 m_monObj->
setVariable(
"ratio_hadronb2_tight_bhabha_hlt", ratio_hadronb2_tight_bhabha_final);
203 B2DEBUG(20,
"DQMHistAnalysisPhysics: terminate called");
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).
static const std::string & getRunType(void)
Get the Run Type.
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.
~DQMHistAnalysisPhysicsModule()
Destructor.
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)
DQMHistAnalysisPhysicsModule()
Constructor.
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.
void setPropertyFlags(unsigned int propertyFlags)
Sets the flags for the module properties.
@ c_ParallelProcessingCertified
This module can be run in parallel processing mode safely (All I/O must be done through the data stor...
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 ¶mVariable, const std::string &description, const T &defaultValue)
Adds a new parameter to the module.
#define REG_MODULE(moduleName)
Register the given module (without 'Module' suffix) with the framework.
double sqrt(double a)
sqrt for double
Abstract base class for different kinds of events.