1 #define __STDC_FORMAT_MACROS 1
2 #define DQM_ROOT_METHODS 1
18 raiseDQMError(
"MonitorElement",
"Method '%s' cannot be invoked on monitor"
19 " element '%s' because it is not a ROOT object.",
22 TH1 *
h =
static_cast<TH1 *
>(tobj);
23 int ndim = h->GetDimension();
24 if (reqdim < 0 || reqdim > ndim)
25 raiseDQMError(
"MonitorElement",
"Method '%s' cannot be invoked on monitor"
26 " element '%s' because it requires %d dimensions; this"
27 " object of type '%s' has %d dimensions",
28 func, name.c_str(), reqdim,
typeid(*h).name(), ndim);
55 raiseDQMError(
"MonitorElement",
"cannot initialise monitor element"
56 " to invalid type %d", (
int) kind);
69 assert(dynamic_cast<TH1F *>(rootobj));
75 assert(dynamic_cast<TH1S *>(rootobj));
81 assert(dynamic_cast<TH1D *>(rootobj));
87 assert(dynamic_cast<TH2F *>(rootobj));
93 assert(dynamic_cast<TH2S *>(rootobj));
99 assert(dynamic_cast<TH2D *>(rootobj));
105 assert(dynamic_cast<TH3F *>(rootobj));
111 assert(dynamic_cast<TProfile *>(rootobj));
117 assert(dynamic_cast<TProfile2D *>(rootobj));
123 raiseDQMError(
"MonitorElement",
"cannot initialise monitor element"
124 " as a root object with type %d", (
int) kind);
140 raiseDQMError(
"MonitorElement",
"cannot initialise monitor element"
141 " as a string with type %d", (
int) kind);
189 reference_(x.reference_),
190 refvalue_(x.refvalue_),
191 qreports_(x.qreports_)
275 ->Fill(static_cast<double>(x), 1);
278 ->Fill(static_cast<double>(x), 1);
281 ->Fill(static_cast<double>(x), 1);
330 int index = entries + 1 ;
331 int xlow = 2 ;
int xup =
nbins ;
333 if ( entries >= nbins )
336 xlow = entries - nbins + 3 ; xup = entries+1 ;
342 double N = entries - nbins + 1.;
343 if ( ye == 0. || y1err == 0. || y2err == 0.)
346 double sum = N*y1 + y2;
349 double s=(N+1.)*(N*y1*y1 + y2*y2) - sum*sum;
351 y1err =
sqrt(s)/(N+1.);
358 double denom = (1./y1err + 1./y2err);
359 double mean = (y1/y1err + y2/y2err)/denom;
361 y1err =
sqrt(((y1-mean)*(y1-mean)/y1err +
362 (y2-mean)*(y2-mean)/y2err)/denom/2.);
381 sprintf (buffer,
"%d", xlow*xscale);
383 sprintf (buffer,
"%d", xup*xscale);
455 snprintf(buf,
sizeof(buf),
"%s%" PRId64, prefix,
scalar_.
num);
460 snprintf(buf,
sizeof(buf),
"%s%.*g", prefix, DBL_DIG+2,
scalar_.
real);
465 into.reserve(strlen(prefix) +
scalar_.
str.size());
506 result.reserve(6 + 2*
data_.
objname.size() + val.size());
509 result +=
'<'; result +=
'/'; result +=
data_.
objname; result +=
'>';
519 size_t len = sprintf(buf,
"t=%" PRIu32,
data_.
tag);
524 result +=
'<'; result +=
'/'; result +=
data_.
objname; result +=
'>';
537 result +=
'<'; result +=
'/'; result +=
data_.
objname; result +=
'>';
547 size_t buflen = sprintf(buf,
"qr=st:%d:%.*g:", qv.
code, DBL_DIG+2, qv.
qtresult);
549 result.reserve(7 + 2*titlelen + buflen + qv.
algorithm.size() + qv.
message.size());
550 result +=
'<'; result +=
data_.
objname; result +=
'.'; result += qv.
qtname; result +=
'>';
552 result +=
'<'; result +=
'/'; result +=
data_.
objname; result +=
'.'; result += qv.
qtname; result +=
'>';
565 std::vector<QReport *>
568 std::vector<QReport *>
result;
574 result.push_back(const_cast<QReport *>(&
qreports_[
i]));
579 std::vector<QReport *>
582 std::vector<QReport *>
result;
589 result.push_back(const_cast<QReport *>(&
qreports_[
i]));
594 std::vector<QReport *>
597 std::vector<QReport *>
result;
604 result.push_back(const_cast<QReport *>(&
qreports_[
i]));
609 std::vector<QReport *>
612 std::vector<QReport *>
result;
621 result.push_back(const_cast<QReport *>(&
qreports_[
i]));
646 int oldStatus = qv.
code;
650 if (oldStatus != qv.
code || oldMessage != qv.
message)
662 raiseDQMError(
"MonitorElement",
"Method '%s' cannot be invoked on monitor"
670 raiseDQMError(
"MonitorElement",
"Method '%s' cannot be invoked on monitor"
671 " element '%s' because it is not a root object",
690 ->GetMeanError(axis); }
702 ->GetRMSError(axis); }
726 ->GetBinContent(binx); }
732 ->GetBinContent(binx, biny); }
738 ->GetBinContent(binx, biny, binz); }
744 ->GetBinError(binx); }
750 ->GetBinError(binx, biny); }
756 ->GetBinError(binx, biny, binz); }
770 ->GetBinEntries(bin);
773 ->GetBinEntries(bin);
812 {
return getAxis(__PRETTY_FUNCTION__, axis)
829 ->SetBinContent(binx, content);
838 ->SetBinContent(binx, biny, content); }
846 ->SetBinContent(binx, biny, binz, content); }
854 ->SetBinError(binx, error);
863 ->SetBinError(binx, biny, error);
872 ->SetBinError(binx, biny, binz, error);
882 ->SetBinEntries(bin, nentries);
885 ->SetBinEntries(bin, nentries);
896 ->SetEntries(nentries);
904 if (
getAxis(__PRETTY_FUNCTION__, axis)->GetNbins() >= bin )
906 getAxis(__PRETTY_FUNCTION__, axis)
907 ->SetBinLabel(bin, label.c_str());
912 std::cout <<
"*** MonitorElement: WARNING:"
913 <<
"setBinLabel: attempting to set label of non-existent bin number \n";
922 getAxis(__PRETTY_FUNCTION__, axis)
923 ->SetRangeUser(xmin, xmax);
931 getAxis(__PRETTY_FUNCTION__, axis)
932 ->SetTitle(title.c_str());
940 getAxis(__PRETTY_FUNCTION__, axis)
941 ->SetTimeDisplay(value);
949 getAxis(__PRETTY_FUNCTION__, axis)
950 ->SetTimeFormat(format);
958 getAxis(__PRETTY_FUNCTION__, axis)
959 ->SetTimeOffset(toffset, option);
968 ->SetTitle(title.c_str());
984 raiseDQMError(
"MonitorElement",
"No such axis %d in monitor element"
1006 TH1F *orig =
static_cast<TH1F *
>(
object_);
1013 orig->GetXaxis()->GetXmin(),
1014 orig->GetXaxis()->GetXmax());
1024 TH1S *orig =
static_cast<TH1S *
>(
object_);
1031 orig->GetXaxis()->GetXmin(),
1032 orig->GetXaxis()->GetXmax());
1042 TH1D *orig =
static_cast<TH1D *
>(
object_);
1049 orig->GetXaxis()->GetXmin(),
1050 orig->GetXaxis()->GetXmax());
1060 TH2F *orig =
static_cast<TH2F *
>(
object_);
1067 orig->GetXaxis()->GetXmin(),
1068 orig->GetXaxis()->GetXmax(),
1070 orig->GetYaxis()->GetXmin(),
1071 orig->GetYaxis()->GetXmax());
1081 TH2S *orig =
static_cast<TH2S *
>(
object_);
1088 orig->GetXaxis()->GetXmin(),
1089 orig->GetXaxis()->GetXmax(),
1091 orig->GetYaxis()->GetXmin(),
1092 orig->GetYaxis()->GetXmax());
1102 TH2D *orig =
static_cast<TH2D *
>(
object_);
1109 orig->GetXaxis()->GetXmin(),
1110 orig->GetXaxis()->GetXmax(),
1112 orig->GetYaxis()->GetXmin(),
1113 orig->GetYaxis()->GetXmax());
1123 TH3F *orig =
static_cast<TH3F *
>(
object_);
1130 orig->GetXaxis()->GetXmin(),
1131 orig->GetXaxis()->GetXmax(),
1133 orig->GetYaxis()->GetXmin(),
1134 orig->GetYaxis()->GetXmax(),
1136 orig->GetZaxis()->GetXmin(),
1137 orig->GetZaxis()->GetXmax());
1147 TProfile *orig =
static_cast<TProfile *
>(
object_);
1148 TProfile *
r =
static_cast<TProfile *
>(
refvalue_);
1154 orig->GetXaxis()->GetXmin(),
1155 orig->GetXaxis()->GetXmax(),
1156 orig->GetYaxis()->GetXmin(),
1157 orig->GetYaxis()->GetXmax(),
1158 orig->GetErrorOption());
1168 TProfile2D *orig =
static_cast<TProfile2D *
>(
object_);
1169 TProfile2D *
r =
static_cast<TProfile2D *
>(
refvalue_);
1175 orig->GetXaxis()->GetXmin(),
1176 orig->GetXaxis()->GetXmax(),
1178 orig->GetYaxis()->GetXmin(),
1179 orig->GetYaxis()->GetXmax(),
1180 orig->GetZaxis()->GetXmin(),
1181 orig->GetZaxis()->GetXmax(),
1182 orig->GetErrorOption());
1208 TH1 *orig =
static_cast<TH1 *
>(
object_);
1213 TProfile *orig =
static_cast<TProfile *
>(
object_);
1214 TProfile *
r =
static_cast<TProfile *
>(
refvalue_);
1219 TProfile2D *orig =
static_cast<TProfile2D *
>(
object_);
1220 TProfile2D *
r =
static_cast<TProfile2D *
>(
refvalue_);
1240 static const Int_t NUM_STAT = 6;
1241 Double_t stats1[NUM_STAT];
1242 Double_t stats2[NUM_STAT];
1243 Double_t stats3[NUM_STAT];
1245 bool isRebinOn = sum->TestBit(TH1::kCanRebin);
1246 sum->ResetBit(TH1::kCanRebin);
1248 for (Int_t
i = 0;
i < NUM_STAT; ++
i)
1249 stats1[
i] = stats2[
i] = stats3[
i] = 0;
1251 h1->GetStats(stats1);
1252 h2->GetStats(stats2);
1254 for (Int_t
i = 0;
i < NUM_STAT; ++
i)
1255 stats3[
i] = c1*stats1[
i] + c2*stats2[
i];
1257 stats3[1] = c1*TMath::Abs(c1)*stats1[1]
1258 + c2*TMath::Abs(c2)*stats2[1];
1260 Double_t
entries = c1*h1->GetEntries() + c2* h2->GetEntries();
1261 TArrayD* h1sumw2 = h1->GetSumw2();
1262 TArrayD* h2sumw2 = h2->GetSumw2();
1263 for (Int_t
bin = 0, nbin = sum->GetNbinsX()+1;
bin <= nbin; ++
bin)
1265 Double_t entries = c1*h1->GetBinEntries(
bin)
1266 + c2*h2->GetBinEntries(
bin);
1267 Double_t
content = c1*h1->GetBinEntries(
bin)*h1->GetBinContent(
bin)
1268 + c2*h2->GetBinEntries(
bin)*h2->GetBinContent(
bin);
1269 Double_t
error = TMath::Sqrt(c1*TMath::Abs(c1)*h1sumw2->fArray[
bin]
1270 + c2*TMath::Abs(c2)*h2sumw2->fArray[
bin]);
1271 sum->SetBinContent(bin, content);
1272 sum->SetBinError(bin, error);
1273 sum->SetBinEntries(bin, entries);
1276 sum->SetEntries(entries);
1277 sum->PutStats(stats3);
1278 if (isRebinOn) sum->SetBit(TH1::kCanRebin);
1290 static const Int_t NUM_STAT = 9;
1291 Double_t stats1[NUM_STAT];
1292 Double_t stats2[NUM_STAT];
1293 Double_t stats3[NUM_STAT];
1295 bool isRebinOn = sum->TestBit(TH1::kCanRebin);
1296 sum->ResetBit(TH1::kCanRebin);
1298 for (Int_t
i = 0;
i < NUM_STAT; ++
i)
1299 stats1[
i] = stats2[
i] = stats3[
i] = 0;
1301 h1->GetStats(stats1);
1302 h2->GetStats(stats2);
1304 for (Int_t
i = 0;
i < NUM_STAT;
i++)
1305 stats3[
i] = c1*stats1[
i] + c2*stats2[
i];
1307 stats3[1] = c1*TMath::Abs(c1)*stats1[1]
1308 + c2*TMath::Abs(c2)*stats2[1];
1310 Double_t
entries = c1*h1->GetEntries() + c2*h2->GetEntries();
1311 TArrayD *h1sumw2 = h1->GetSumw2();
1312 TArrayD *h2sumw2 = h2->GetSumw2();
1313 for (Int_t xbin = 0, nxbin = sum->GetNbinsX()+1; xbin <= nxbin; ++xbin)
1314 for (Int_t ybin = 0, nybin = sum->GetNbinsY()+1; ybin <= nybin; ++ybin)
1316 Int_t
bin = sum->GetBin(xbin, ybin);
1317 Double_t entries = c1*h1->GetBinEntries(bin)
1318 + c2*h2->GetBinEntries(bin);
1319 Double_t
content = c1*h1->GetBinEntries(bin)*h1->GetBinContent(bin)
1320 + c2*h2->GetBinEntries(bin)*h2->GetBinContent(bin);
1321 Double_t
error = TMath::Sqrt(c1*TMath::Abs(c1)*h1sumw2->fArray[bin]
1322 + c2*TMath::Abs(c2)*h2sumw2->fArray[bin]);
1324 sum->SetBinContent(bin, content);
1325 sum->SetBinError(bin, error);
1326 sum->SetBinEntries(bin, entries);
1328 sum->SetEntries(entries);
1329 sum->PutStats(stats3);
1330 if (isRebinOn) sum->SetBit(TH1::kCanRebin);
1342 TList *fromf = from->GetListOfFunctions();
1343 TList *tof = to->GetListOfFunctions();
1344 for (
int i = 0, nfuncs = fromf ? fromf->GetSize() : 0;
i < nfuncs; ++
i)
1346 TObject *
obj = fromf->At(
i);
1348 if (!strcmp(obj->IsA()->GetName(),
"TPaveStats"))
1351 if (TF1 *fn = dynamic_cast<TF1 *>(obj))
1352 tof->Add(
new TF1(*fn));
1356 raiseDQMError(
"MonitorElement",
"Cannot extract function '%s' of type"
1357 " '%s' from monitor element '%s' for a copy",
1358 obj->GetName(), obj->IsA()->GetName(),
data_.
objname.c_str());
1366 if (orig->GetTitle() != from->GetTitle())
1367 orig->SetTitle(from->GetTitle());
1387 static_cast<TProfile *>(orig),
1393 static_cast<TProfile2D *>(orig),
1417 if (pos ==
end && ! create)
1419 else if (pos ==
end)
1428 q.
message =
"NO_MESSAGE_ASSIGNED";
1455 qv->
message =
"NO_MESSAGE_ASSIGNED";
1566 return static_cast<TProfile2D *
>(
accessRootObject(__PRETTY_FUNCTION__, 2));
1589 return static_cast<TH1F *
>
1598 return static_cast<TH1S *
>
1607 return static_cast<TH1D *
>
1616 return static_cast<TH2F *
>
1625 return static_cast<TH2S *
>
1634 return static_cast<TH2D *
>
1643 return static_cast<TH3F *
>
1652 return static_cast<TProfile *
>
1661 return static_cast<TProfile2D *
>
TH1F * getRefTH1F(void) const
TH2S * getTH2S(void) const
TH1S * getTH1S(void) const
static const uint32_t DQM_PROP_REPORT_WARN
void incompatible(const char *func) const
const QReport * getQReport(const std::string &qtname) const
get QReport corresponding to <qtname> (null pointer if QReport does not exist)
void setBinContent(int binx, double content)
set content of bin (1-D)
TH1 * accessRootObject(const char *func, int reqdim) const
std::string getName(void) const
get name of quality test
MonitorElement * initialise(Kind kind)
MonitorElement & operator=(const MonitorElement &)
TProfile2D * getTProfile2D(void) const
TH1 * getRefTH1(void) const
void setAxisRange(double xmin, double xmax, int axis=1)
set x-, y- or z-axis range (axis=1, 2, 3 respectively)
void setAxisTimeFormat(const char *format="", int axis=1)
set the format of the time values that are displayed on an axis
void updateQReportStats(void)
Refresh QReport stats, usually after MEs were read in from a file.
std::vector< QReport > qreports_
std::string tagLabelString(void) const
return label string for the monitor element tag (eg. <name>t=12345</name>)
std::string qualityTagString(const DQMNet::QValue &qv) const
std::string getAxisTitle(int axis=1) const
get x-, y- or z-axis title (axis=1, 2, 3 respectively)
TProfile2D * getRefTProfile2D(void) const
auto zw(V v) -> Vec2< typenamestd::remove_reference< decltype(v[0])>::type >
void disableSoftReset(void)
reverts action of softReset
void setBinLabel(int bin, const std::string &label, int axis=1)
set bin label for x, y or z axis (axis=1, 2, 3 respectively)
TH3F * getTH3F(void) const
TH1D * getTH1D(void) const
void runQTests(void)
run all quality tests
TH2D * getTH2D(void) const
const std::string * dirname
void update(void)
Mark the object updated.
double getEntries(void) const
get # of entries
double getMean(int axis=1) const
get mean value of histogram along x, y or z axis (axis=1, 2, 3 respectively)
double getMeanError(int axis=1) const
void packScalarData(std::string &into, const char *prefix) const
convert scalar data into a string.
int getNbinsY(void) const
get # of bins in Y-axis
std::vector< QReport * > getQErrors(void) const
get errors from last set of quality tests
bool wasUpdated(void) const
true if ME was updated in last monitoring cycle
TH3F * getRefTH3F(void) const
void ShiftFillLast(double y, double ye=0., int32_t xscale=1)
static TH1 * checkRootObject(const std::string &name, TObject *tobj, const char *func, int reqdim)
void packQualityData(std::string &into) const
serialise quality report information into a string.
static const uint32_t DQM_PROP_HAS_REFERENCE
TH2F * getRefTH2F(void) const
void setAxisTimeDisplay(int value, int axis=1)
set x-, y-, or z-axis to display time values
void doFill(int64_t x)
"Fill" ME method for int64_t
int getNbinsZ(void) const
get # of bins in Z-axis
void addProfiles(TProfile *h1, TProfile *h2, TProfile *sum, float c1, float c2)
std::string getTitle(void) const
get MonitorElement title
static const int DID_NOT_RUN
static const uint32_t DQM_PROP_REPORT_ERROR
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
void setBinError(int binx, double error)
set uncertainty on content of bin (1-D)
static const uint32_t DQM_PROP_REPORT_OTHER
Kind kind(void) const
Get the type of the monitor element.
void setEntries(double nentries)
set # of entries
std::string effLabelString(void) const
return label string for the monitor element tag (eg. <name>t=12345</name>)
bool isAccumulateEnabled(void) const
whether ME contents should be accumulated over multiple monitoring periods; default: false ...
const uint32_t streamId(void) const
std::string valueString(void) const
TH2D * getRefTH2D(void) const
TAxis * getAxis(const char *func, int axis) const
void setTitle(const std::string &title)
set (ie. change) histogram/profile title
double getRMSError(int axis=1) const
get RMS uncertainty of histogram along x, y or z axis(axis=1,2,3 respectively)
TObject * getRootObject(void) const
std::vector< QReport * > getQReports(void) const
get map of QReports
void setAxisTimeOffset(double toffset, const char *option="local", int axis=1)
set the time offset, if option = "gmt" then the offset is treated as a GMT time
std::vector< QReport * > getQOthers(void) const
double getBinError(int binx) const
get uncertainty on content of bin (1-D) - See TH1::GetBinError for details
virtual float runTest(const MonitorElement *me)
TH1F * getTH1F(void) const
std::string tagString(void) const
static void packQualityData(std::string &into, const QReports &qr)
TProfile * getRefTProfile(void) const
void copyFunctions(TH1 *from, TH1 *to)
const uint32_t moduleId(void) const
double getBinContent(int binx) const
get content of bin (1-D)
double getRMS(int axis=1) const
get RMS of histogram along x, y or z axis (axis=1, 2, 3 respectively)
double getYmax(void) const
get max Y value (for profiles)
TProfile * getTProfile(void) const
TH2S * getRefTH2S(void) const
bool isSoftResetEnabled(void) const
whether soft-reset is enabled; default is false
double getBinEntries(int bin) const
get # of bin entries (for profiles)
std::vector< QReport * > getQWarnings(void) const
get warnings from last set of quality tests
int getNbinsX(void) const
get # of bins in X-axis
static const int STATUS_OK
const uint32_t run(void) const
static const uint32_t DQM_PROP_NEW
TH2F * getTH2F(void) const
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
void Reset(void)
reset ME (ie. contents, errors, etc)
TObject * getRefRootObject(void) const
void setBinEntries(int bin, double nentries)
set # of bin entries (to be used for profiles)
TH1S * getRefTH1S(void) const
void addQReport(const DQMNet::QValue &desc, QCriterion *qc)
Add quality report, from DQMStore.
double getYmin(void) const
get min Y value (for profiles)
TH1D * getRefTH1D(void) const
void raiseDQMError(const char *context, const char *fmt,...)