6 #include <boost/regex.hpp>
45 m_dqm_path( config.getUntrackedParameter<std::
string>(
"dqmPath" ) )
69 std::vector<std::string>
folders;
74 static const boost::regex running_n_processes(
".*/Running [0-9]+ processes");
76 std::vector<std::string> subdirs = getter.
getSubdirs();
77 for (
auto const & subdir: subdirs) {
78 if (boost::regex_match(subdir, running_n_processes)) {
79 if (getter.
get(subdir +
"/throughput_sourced"))
81 folders.push_back(subdir +
"/throughput_sourced");
85 for (
auto const &
folder: folders) {
89 unsigned int nbins = sourced->GetXaxis()->GetNbins();
90 double range = sourced->GetXaxis()->GetXmax();
96 TH1F* concurrent = booker.
book1D(
"concurrent",
"Concurrent events being processed", nbins, 0., range)->
getTH1F();
99 for (
unsigned int i = 0;
i <= nbins+1; ++
i) {
100 sum += sourced->GetBinContent(
i) - retired->GetBinContent(
i);
101 concurrent->Fill( concurrent->GetXaxis()->GetBinCenter(
i), sum );
105 double avg_min =
std::min(sourced->GetMinimum(0.), retired->GetMinimum(0.));
106 double avg_max =
std::max(sourced->GetMaximum(), retired->GetMaximum());
107 double width = avg_max - avg_min;
108 avg_min = std::floor( avg_min - width * 0.2 );
109 if (avg_min < 0.) avg_min = 0.;
110 avg_max = std::ceil( avg_max + width * 0.2 );
111 width = avg_max - avg_min;
114 if (getter.
get(
folder +
"/average_sourced"))
121 average = booker.
book1D(
"average_sourced",
"Throughput (sourced events)", (
int) width, avg_min, avg_max)->
getTH1F();
122 for (
unsigned int i = first;
i <=
last; ++
i)
123 average->Fill(sourced->GetBinContent(
i));
126 if (getter.
get(
folder +
"/average_retired"))
129 first = retired->FindFirstBinAbove(0.);
130 last = retired->FindLastBinAbove(0.);
133 average = booker.
book1D(
"average_retired",
"Throughput (retired events)", (
int) width, avg_min, avg_max)->
getTH1F();
134 for (
unsigned int i = first;
i <=
last; ++
i)
135 average->Fill(retired->GetBinContent(
i));
143 descriptions.
add(
"throughputServiceClient", desc);
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
MonitorElement * get(const std::string &path)
#define DEFINE_FWK_MODULE(type)
~ThroughputServiceClient()
void fillSummaryPlots(DQMStore::IBooker &booker, DQMStore::IGetter &getter)
ThroughputServiceClient(edm::ParameterSet const &)
void dqmEndLuminosityBlock(DQMStore::IBooker &booker, DQMStore::IGetter &getter, edm::LuminosityBlock const &, edm::EventSetup const &) override
*vegas h *****************************************************used in the default bin number in original ***version of VEGAS is ***a higher bin number might help to derive a more precise ***grade subtle otherwise a larger ***bin number will have no effects or even make the ***precision lower than before *********************************************************************************************************it lies in three folders
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
MonitorElement * book1D(Args &&...args)
void dqmEndJob(DQMStore::IBooker &booker, DQMStore::IGetter &getter) override
void setCurrentFolder(const std::string &fullpath)
unsigned long long uint64_t
TH1F * getTH1F(void) const
void add(std::string const &label, ParameterSetDescription const &psetDescription)
std::vector< std::string > getSubdirs(void)
void removeElement(Args &&...args)
tuple folder
Histograms Source for live online DQM in P5