CMS 3D CMS Logo

FakeBeamMonitor.cc
Go to the documentation of this file.
1 /*
2  * \file FakeBeamMonitor.cc
3  * \author Geng-yuan Jeng/UC Riverside
4  * Francisco Yumiceva/FNAL
5  */
6 
7 /*
8 The code has been modified for running average
9 mode, and it gives results for the last NLS which is
10 configurable.
11 Sushil S. Chauhan /UCDavis
12 Evan Friis /UCDavis
13 The last tag for working versions without this change is
14 V00-03-25
15 */
16 
32 #include <numeric>
33 #include <cmath>
34 #include <memory>
35 #include <TMath.h>
36 #include <TDatime.h>
37 #include <iostream>
38 #include <TStyle.h>
39 #include <ctime>
40 
41 using namespace std;
42 using namespace edm;
43 
44 void FakeBeamMonitor::formatFitTime(char* ts, const time_t& t) {
45  //constexpr int CET(+1);
46  constexpr int CEST(+2);
47 
48  //tm * ptm;
49  //ptm = gmtime ( &t );
50  //int year = ptm->tm_year;
51 
52  //get correct year from ctime
53  time_t currentTime;
54  struct tm* localTime;
55  time(&currentTime); // Get the current time
56  localTime = localtime(&currentTime); // Convert the current time to the local time
57  int year = localTime->tm_year + 1900;
58 
59  tm* ptm;
60  ptm = gmtime(&t);
61 
62  //check if year is ok
63  if (year <= 37)
64  year += 2000;
65  if (year >= 70 && year <= 137)
66  year += 1900;
67 
68  if (year < 1995) {
69  edm::LogError("BadTimeStamp") << "year reported is " << year << " !!" << std::endl;
70  //year = 2015; //overwritten later by BeamFitter.cc for fits but needed here for TH1
71  //edm::LogError("BadTimeStamp") << "Resetting to " <<year<<std::endl;
72  }
73  sprintf(ts,
74  "%4d-%02d-%02d %02d:%02d:%02d",
75  year,
76  ptm->tm_mon + 1,
77  ptm->tm_mday,
78  (ptm->tm_hour + CEST) % 24,
79  ptm->tm_min,
80  ptm->tm_sec);
81 
82 #ifdef STRIP_TRAILING_BLANKS_IN_TIMEZONE
83  unsigned int b = strlen(ts);
84  while (ts[--b] == ' ') {
85  ts[b] = 0;
86  }
87 #endif
88 }
89 
90 static constexpr int buffTime = 23;
91 
92 std::string FakeBeamMonitor::getGMTstring(const time_t& timeToConvert) {
93  char buff[32];
94  std::strftime(buff, sizeof(buff), "%Y.%m.%d %H:%M:%S GMT", gmtime(&timeToConvert));
95  std::string timeStr(buff);
96  return timeStr;
97 }
98 
99 //
100 // constructors and destructor
101 //
103 
105  : dxBin_(ps.getParameter<int>("dxBin")),
106  dxMin_(ps.getParameter<double>("dxMin")),
107  dxMax_(ps.getParameter<double>("dxMax")),
108 
109  vxBin_(ps.getParameter<int>("vxBin")),
110  vxMin_(ps.getParameter<double>("vxMin")),
111  vxMax_(ps.getParameter<double>("vxMax")),
112 
113  phiBin_(ps.getParameter<int>("phiBin")),
114  phiMin_(ps.getParameter<double>("phiMin")),
115  phiMax_(ps.getParameter<double>("phiMax")),
116 
117  dzBin_(ps.getParameter<int>("dzBin")),
118  dzMin_(ps.getParameter<double>("dzMin")),
119  dzMax_(ps.getParameter<double>("dzMax")),
120 
121  countEvt_(0),
122  countLumi_(0),
123  nthBSTrk_(0),
124  nFitElements_(3),
125  resetHistos_(false),
126  StartAverage_(false),
127  firstAverageFit_(0),
128  countGapLumi_(0) {
129  monitorName_ = ps.getUntrackedParameter<string>("monitorName", "YourSubsystemName");
130  recordName_ = ps.getUntrackedParameter<string>("recordName");
131  intervalInSec_ = ps.getUntrackedParameter<int>("timeInterval", 920); //40 LS X 23"
132  fitNLumi_ = ps.getUntrackedParameter<int>("fitEveryNLumi", -1);
133  resetFitNLumi_ = ps.getUntrackedParameter<int>("resetEveryNLumi", -1);
134  fitPVNLumi_ = ps.getUntrackedParameter<int>("fitPVEveryNLumi", -1);
135  resetPVNLumi_ = ps.getUntrackedParameter<int>("resetPVEveryNLumi", -1);
136  deltaSigCut_ = ps.getUntrackedParameter<double>("deltaSignificanceCut", 15);
137  debug_ = ps.getUntrackedParameter<bool>("Debug");
138  onlineMode_ = ps.getUntrackedParameter<bool>("OnlineMode");
139  min_Ntrks_ = ps.getParameter<ParameterSet>("BeamFitter").getUntrackedParameter<int>("MinimumInputTracks");
140  maxZ_ = ps.getParameter<ParameterSet>("BeamFitter").getUntrackedParameter<double>("MaximumZ");
141  minNrVertices_ = ps.getParameter<ParameterSet>("PVFitter").getUntrackedParameter<unsigned int>("minNrVerticesForFit");
142  minVtxNdf_ = ps.getParameter<ParameterSet>("PVFitter").getUntrackedParameter<double>("minVertexNdf");
143  minVtxWgt_ = ps.getParameter<ParameterSet>("PVFitter").getUntrackedParameter<double>("minVertexMeanWeight");
144  useLockRecords_ = ps.getUntrackedParameter<bool>("useLockRecords");
145 
146  if (!monitorName_.empty())
147  monitorName_ = monitorName_ + "/";
148 
149  if (fitNLumi_ <= 0)
150  fitNLumi_ = 1;
152  refBStime[0] = refBStime[1] = refPVtime[0] = refPVtime[1] = 0;
153  maxZ_ = std::fabs(maxZ_);
154  lastlumi_ = 0;
155  nextlumi_ = 0;
156  processed_ = false;
157 
158  rndm_ = new TRandom3(0);
159 }
160 
161 //--------------------------------------------------------
162 namespace {
163  /*The order of the enums is identical to the order in which
164  MonitorElements are added to hs
165  */
166  enum Hists {
167  k_x0_lumi,
168  k_x0_lumi_all,
169  k_y0_lumi,
170  k_y0_lumi_all,
171  k_z0_lumi,
172  k_z0_lumi_all,
173  k_sigmaX0_lumi,
174  k_sigmaX0_lumi_all,
175  k_sigmaY0_lumi,
176  k_sigmaY0_lumi_all,
177  k_sigmaZ0_lumi,
178  k_sigmaZ0_lumi_all,
179  k_x0_time,
180  k_x0_time_all,
181  k_y0_time,
182  k_y0_time_all,
183  k_z0_time,
184  k_z0_time_all,
185  k_sigmaX0_time,
186  k_sigmaX0_time_all,
187  k_sigmaY0_time,
188  k_sigmaY0_time_all,
189  k_sigmaZ0_time,
190  k_sigmaZ0_time_all,
191  k_PVx_lumi,
192  k_PVx_lumi_all,
193  k_PVy_lumi,
194  k_PVy_lumi_all,
195  k_PVz_lumi,
196  k_PVz_lumi_all,
197  k_PVx_time,
198  k_PVx_time_all,
199  k_PVy_time,
200  k_PVy_time_all,
201  k_PVz_time,
202  k_PVz_time_all,
203  kNumHists
204  };
205 } // namespace
206 
210  }
211 }
212 
213 void FakeBeamMonitor::bookHistograms(DQMStore::IBooker& iBooker, edm::Run const& iRun, edm::EventSetup const& iSetup) {
214  frun = iRun.run();
215  ftimestamp = iRun.beginTime().value();
216  tmpTime = ftimestamp >> 32;
218  char eventTime[64];
219  formatFitTime(eventTime, tmpTime);
220  edm::LogInfo("FakeBeamMonitor") << "TimeOffset = " << eventTime << std::endl;
221  TDatime da(eventTime);
222  if (debug_) {
223  edm::LogInfo("FakeBeamMonitor") << "TimeOffset = ";
224  da.Print();
225  }
226  auto daTime = da.Convert(kTRUE);
227 
228  // book some histograms here
229 
230  // create and cd into new folder
231  iBooker.setCurrentFolder(monitorName_ + "Fit");
232 
233  h_nTrk_lumi = iBooker.book1D("nTrk_lumi", "Num. of selected tracks vs lumi (Fit)", 20, 0.5, 20.5);
234  h_nTrk_lumi->setAxisTitle("Lumisection", 1);
235  h_nTrk_lumi->setAxisTitle("Num of Tracks for Fit", 2);
236 
237  //store vtx vs lumi for monitoring why fits fail
238  h_nVtx_lumi = iBooker.book1D("nVtx_lumi", "Num. of selected Vtx vs lumi (Fit)", 20, 0.5, 20.5);
239  h_nVtx_lumi->setAxisTitle("Lumisection", 1);
240  h_nVtx_lumi->setAxisTitle("Num of Vtx for Fit", 2);
241 
242  h_nVtx_lumi_all = iBooker.book1D("nVtx_lumi_all", "Num. of selected Vtx vs lumi (Fit) all", 20, 0.5, 20.5);
243  h_nVtx_lumi_all->getTH1()->SetCanExtend(TH1::kAllAxes);
244  h_nVtx_lumi_all->setAxisTitle("Lumisection", 1);
245  h_nVtx_lumi_all->setAxisTitle("Num of Vtx for Fit", 2);
246 
247  h_d0_phi0 = iBooker.bookProfile(
248  "d0_phi0", "d_{0} vs. #phi_{0} (Selected Tracks)", phiBin_, phiMin_, phiMax_, dxBin_, dxMin_, dxMax_, "");
249  h_d0_phi0->setAxisTitle("#phi_{0} (rad)", 1);
250  h_d0_phi0->setAxisTitle("d_{0} (cm)", 2);
251 
252  h_vx_vy = iBooker.book2D(
253  "trk_vx_vy", "Vertex (PCA) position of selected tracks", vxBin_, vxMin_, vxMax_, vxBin_, vxMin_, vxMax_);
254  h_vx_vy->setOption("COLZ");
255  // h_vx_vy->getTH1()->SetCanExtend(TH1::kAllAxes);
256  h_vx_vy->setAxisTitle("x coordinate of input track at PCA (cm)", 1);
257  h_vx_vy->setAxisTitle("y coordinate of input track at PCA (cm)", 2);
258 
259  {
260  TDatime* da = new TDatime();
261  gStyle->SetTimeOffset(da->Convert(kTRUE));
262  }
263 
264  const int nvar_ = 6;
265  string coord[nvar_] = {"x", "y", "z", "sigmaX", "sigmaY", "sigmaZ"};
266  string label[nvar_] = {
267  "x_{0} (cm)", "y_{0} (cm)", "z_{0} (cm)", "#sigma_{X_{0}} (cm)", "#sigma_{Y_{0}} (cm)", "#sigma_{Z_{0}} (cm)"};
268 
269  hs.clear();
270  hs.reserve(kNumHists);
271  for (int i = 0; i < 4; i++) {
272  iBooker.setCurrentFolder(monitorName_ + "Fit");
273  for (int ic = 0; ic < nvar_; ++ic) {
274  TString histName(coord[ic]);
275  TString histTitle(coord[ic]);
276  string ytitle(label[ic]);
277  string xtitle("");
278  string options("E1");
279  bool createHisto = true;
280  switch (i) {
281  case 1: // BS vs time
282  histName += "0_time";
283  xtitle = "Time [UTC]";
284  if (ic < 3)
285  histTitle += " coordinate of beam spot vs time (Fit)";
286  else
287  histTitle = histTitle.Insert(5, " ") + " of beam spot vs time (Fit)";
288  break;
289  case 2: // PV vs lumi
290  if (ic < 3) {
291  iBooker.setCurrentFolder(monitorName_ + "PrimaryVertex");
292  histName.Insert(0, "PV");
293  histName += "_lumi";
294  histTitle.Insert(0, "Avg. ");
295  histTitle += " position of primary vtx vs lumi";
296  xtitle = "Lumisection";
297  ytitle.insert(0, "PV");
298  ytitle += " #pm #sigma_{PV";
299  ytitle += coord[ic];
300  ytitle += "} (cm)";
301  } else
302  createHisto = false;
303  break;
304  case 3: // PV vs time
305  if (ic < 3) {
306  iBooker.setCurrentFolder(monitorName_ + "PrimaryVertex");
307  histName.Insert(0, "PV");
308  histName += "_time";
309  histTitle.Insert(0, "Avg. ");
310  histTitle += " position of primary vtx vs time";
311  xtitle = "Time [UTC]";
312  ytitle.insert(0, "PV");
313  ytitle += " #pm #sigma_{PV";
314  ytitle += coord[ic];
315  ytitle += "} (cm)";
316  } else
317  createHisto = false;
318  break;
319  default: // BS vs lumi
320  histName += "0_lumi";
321  xtitle = "Lumisection";
322  if (ic < 3)
323  histTitle += " coordinate of beam spot vs lumi (Fit)";
324  else
325  histTitle = histTitle.Insert(5, " ") + " of beam spot vs lumi (Fit)";
326  break;
327  }
328  if (createHisto) {
329  edm::LogInfo("FakeBeamMonitor") << "hitsName = " << histName << "; histTitle = " << histTitle << std::endl;
330  auto tmpHs = iBooker.book1D(histName, histTitle, 40, 0.5, 40.5);
331  hs.push_back(tmpHs);
332  tmpHs->setAxisTitle(xtitle, 1);
333  tmpHs->setAxisTitle(ytitle, 2);
334  tmpHs->getTH1()->SetOption("E1");
335  if (histName.Contains("time")) {
336  //int nbins = (intervalInSec_/23 > 0 ? intervalInSec_/23 : 40);
337  tmpHs->getTH1()->SetBins(intervalInSec_, 0.5, intervalInSec_ + 0.5);
338  tmpHs->setAxisTimeDisplay(1);
339  tmpHs->setAxisTimeFormat("%H:%M:%S", 1);
340  tmpHs->getTH1()->GetXaxis()->SetTimeOffset(daTime);
341  }
342  histName += "_all";
343  histTitle += " all";
344  tmpHs = iBooker.book1D(histName, histTitle, 40, 0.5, 40.5);
345  hs.push_back(tmpHs);
346  tmpHs->getTH1()->SetCanExtend(TH1::kAllAxes);
347  tmpHs->setAxisTitle(xtitle, 1);
348  tmpHs->setAxisTitle(ytitle, 2);
349  tmpHs->getTH1()->SetOption("E1");
350  if (histName.Contains("time")) {
351  //int nbins = (intervalInSec_/23 > 0 ? intervalInSec_/23 : 40);
352  tmpHs->getTH1()->SetBins(intervalInSec_, 0.5, intervalInSec_ + 0.5);
353  tmpHs->setAxisTimeDisplay(1);
354  tmpHs->setAxisTimeFormat("%H:%M:%S", 1);
355  tmpHs->getTH1()->GetXaxis()->SetTimeOffset(daTime);
356  }
357  }
358  }
359  }
360  assert(hs.size() == kNumHists);
361  assert(0 == strcmp(hs[k_sigmaY0_time]->getTH1()->GetName(), "sigmaY0_time"));
362  assert(0 == strcmp(hs[k_PVz_lumi_all]->getTH1()->GetName(), "PVz_lumi_all"));
363 
364  iBooker.setCurrentFolder(monitorName_ + "Fit");
365 
366  h_trk_z0 = iBooker.book1D("trk_z0", "z_{0} of selected tracks", dzBin_, dzMin_, dzMax_);
367  h_trk_z0->setAxisTitle("z_{0} of selected tracks (cm)", 1);
368 
369  h_vx_dz = iBooker.bookProfile(
370  "vx_dz", "v_{x} vs. dz of selected tracks", dzBin_, dzMin_, dzMax_, dxBin_, dxMin_, dxMax_, "");
371  h_vx_dz->setAxisTitle("dz (cm)", 1);
372  h_vx_dz->setAxisTitle("x coordinate of input track at PCA (cm)", 2);
373 
374  h_vy_dz = iBooker.bookProfile(
375  "vy_dz", "v_{y} vs. dz of selected tracks", dzBin_, dzMin_, dzMax_, dxBin_, dxMin_, dxMax_, "");
376  h_vy_dz->setAxisTitle("dz (cm)", 1);
377  h_vy_dz->setAxisTitle("y coordinate of input track at PCA (cm)", 2);
378 
379  h_x0 = iBooker.book1D("BeamMonitorFeedBack_x0", "x coordinate of beam spot (Fit)", 100, -0.01, 0.01);
380  h_x0->setAxisTitle("x_{0} (cm)", 1);
381  h_x0->getTH1()->SetCanExtend(TH1::kAllAxes);
382 
383  h_y0 = iBooker.book1D("BeamMonitorFeedBack_y0", "y coordinate of beam spot (Fit)", 100, -0.01, 0.01);
384  h_y0->setAxisTitle("y_{0} (cm)", 1);
385  h_y0->getTH1()->SetCanExtend(TH1::kAllAxes);
386 
387  h_z0 = iBooker.book1D("BeamMonitorFeedBack_z0", "z coordinate of beam spot (Fit)", dzBin_, dzMin_, dzMax_);
388  h_z0->setAxisTitle("z_{0} (cm)", 1);
389  h_z0->getTH1()->SetCanExtend(TH1::kAllAxes);
390 
391  h_sigmaX0 = iBooker.book1D("BeamMonitorFeedBack_sigmaX0", "sigma x0 of beam spot (Fit)", 100, 0, 0.05);
392  h_sigmaX0->setAxisTitle("#sigma_{X_{0}} (cm)", 1);
393  h_sigmaX0->getTH1()->SetCanExtend(TH1::kAllAxes);
394 
395  h_sigmaY0 = iBooker.book1D("BeamMonitorFeedBack_sigmaY0", "sigma y0 of beam spot (Fit)", 100, 0, 0.05);
396  h_sigmaY0->setAxisTitle("#sigma_{Y_{0}} (cm)", 1);
397  h_sigmaY0->getTH1()->SetCanExtend(TH1::kAllAxes);
398 
399  h_sigmaZ0 = iBooker.book1D("BeamMonitorFeedBack_sigmaZ0", "sigma z0 of beam spot (Fit)", 100, 0, 10);
400  h_sigmaZ0->setAxisTitle("#sigma_{Z_{0}} (cm)", 1);
401  h_sigmaZ0->getTH1()->SetCanExtend(TH1::kAllAxes);
402 
403  // Histograms of all reco tracks (without cuts):
404  h_trkPt = iBooker.book1D("trkPt", "p_{T} of all reco'd tracks (no selection)", 200, 0., 50.);
405  h_trkPt->setAxisTitle("p_{T} (GeV/c)", 1);
406 
407  h_trkVz = iBooker.book1D("trkVz", "Z coordinate of PCA of all reco'd tracks (no selection)", dzBin_, dzMin_, dzMax_);
408  h_trkVz->setAxisTitle("V_{Z} (cm)", 1);
409 
410  cutFlowTable = iBooker.book1D("cutFlowTable", "Cut flow table of track selection", 9, 0, 9);
411 
412  // Results of previous good fit:
413  fitResults = iBooker.book2D("fitResults", "Results of previous good beam fit", 2, 0, 2, 8, 0, 8);
414  fitResults->setAxisTitle("Fitted Beam Spot (cm)", 1);
415  fitResults->setBinLabel(8, "x_{0}", 2);
416  fitResults->setBinLabel(7, "y_{0}", 2);
417  fitResults->setBinLabel(6, "z_{0}", 2);
418  fitResults->setBinLabel(5, "#sigma_{Z}", 2);
419  fitResults->setBinLabel(4, "#frac{dx}{dz} (rad)", 2);
420  fitResults->setBinLabel(3, "#frac{dy}{dz} (rad)", 2);
421  fitResults->setBinLabel(2, "#sigma_{X}", 2);
422  fitResults->setBinLabel(1, "#sigma_{Y}", 2);
423  fitResults->setBinLabel(1, "Mean", 1);
424  fitResults->setBinLabel(2, "Stat. Error", 1);
425  fitResults->getTH1()->SetOption("text");
426 
427  // Histos of PrimaryVertices:
428  iBooker.setCurrentFolder(monitorName_ + "PrimaryVertex");
429 
430  h_nVtx = iBooker.book1D("vtxNbr", "Reconstructed Vertices(non-fake) in all Event", 60, -0.5, 59.5);
431  h_nVtx->setAxisTitle("Num. of reco. vertices", 1);
432 
433  //For one Trigger only
434  h_nVtx_st = iBooker.book1D("vtxNbr_SelectedTriggers", "Reconstructed Vertices(non-fake) in Events", 60, -0.5, 59.5);
435  //h_nVtx_st->setAxisTitle("Num. of reco. vertices for Un-Prescaled Jet Trigger",1);
436 
437  // Monitor only the PV with highest sum pt of assoc. trks:
438  h_PVx[0] = iBooker.book1D("PVX", "x coordinate of Primary Vtx", 50, -0.01, 0.01);
439  h_PVx[0]->setAxisTitle("PVx (cm)", 1);
440  h_PVx[0]->getTH1()->SetCanExtend(TH1::kAllAxes);
441 
442  h_PVy[0] = iBooker.book1D("PVY", "y coordinate of Primary Vtx", 50, -0.01, 0.01);
443  h_PVy[0]->setAxisTitle("PVy (cm)", 1);
444  h_PVy[0]->getTH1()->SetCanExtend(TH1::kAllAxes);
445 
446  h_PVz[0] = iBooker.book1D("PVZ", "z coordinate of Primary Vtx", dzBin_, dzMin_, dzMax_);
447  h_PVz[0]->setAxisTitle("PVz (cm)", 1);
448 
449  h_PVx[1] = iBooker.book1D("PVXFit", "x coordinate of Primary Vtx (Last Fit)", 50, -0.01, 0.01);
450  h_PVx[1]->setAxisTitle("PVx (cm)", 1);
451  h_PVx[1]->getTH1()->SetCanExtend(TH1::kAllAxes);
452 
453  h_PVy[1] = iBooker.book1D("PVYFit", "y coordinate of Primary Vtx (Last Fit)", 50, -0.01, 0.01);
454  h_PVy[1]->setAxisTitle("PVy (cm)", 1);
455  h_PVy[1]->getTH1()->SetCanExtend(TH1::kAllAxes);
456 
457  h_PVz[1] = iBooker.book1D("PVZFit", "z coordinate of Primary Vtx (Last Fit)", dzBin_, dzMin_, dzMax_);
458  h_PVz[1]->setAxisTitle("PVz (cm)", 1);
459 
460  h_PVxz = iBooker.bookProfile("PVxz", "PVx vs. PVz", dzBin_ / 2, dzMin_, dzMax_, dxBin_ / 2, dxMin_, dxMax_, "");
461  h_PVxz->setAxisTitle("PVz (cm)", 1);
462  h_PVxz->setAxisTitle("PVx (cm)", 2);
463 
464  h_PVyz = iBooker.bookProfile("PVyz", "PVy vs. PVz", dzBin_ / 2, dzMin_, dzMax_, dxBin_ / 2, dxMin_, dxMax_, "");
465  h_PVyz->setAxisTitle("PVz (cm)", 1);
466  h_PVyz->setAxisTitle("PVy (cm)", 2);
467 
468  // Results of previous good fit:
469  pvResults = iBooker.book2D("pvResults", "Results of fitting Primary Vertices", 2, 0, 2, 6, 0, 6);
470  pvResults->setAxisTitle("Fitted Primary Vertex (cm)", 1);
471  pvResults->setBinLabel(6, "PVx", 2);
472  pvResults->setBinLabel(5, "PVy", 2);
473  pvResults->setBinLabel(4, "PVz", 2);
474  pvResults->setBinLabel(3, "#sigma_{X}", 2);
475  pvResults->setBinLabel(2, "#sigma_{Y}", 2);
476  pvResults->setBinLabel(1, "#sigma_{Z}", 2);
477  pvResults->setBinLabel(1, "Mean", 1);
478  pvResults->setBinLabel(2, "Stat. Error", 1);
479  pvResults->getTH1()->SetOption("text");
480 
481  // Summary plots:
482  iBooker.setCurrentFolder(monitorName_ + "EventInfo");
483 
484  reportSummary = iBooker.bookFloat("reportSummary");
485  if (reportSummary)
486  reportSummary->Fill(std::numeric_limits<double>::quiet_NaN());
487 
488  char histo[20];
489  iBooker.setCurrentFolder(monitorName_ + "EventInfo/reportSummaryContents");
490  for (int n = 0; n < nFitElements_; n++) {
491  switch (n) {
492  case 0:
493  sprintf(histo, "x0_status");
494  break;
495  case 1:
496  sprintf(histo, "y0_status");
497  break;
498  case 2:
499  sprintf(histo, "z0_status");
500  break;
501  }
503  }
504 
505  for (int i = 0; i < nFitElements_; i++) {
506  summaryContent_[i] = 0.;
507  reportSummaryContents[i]->Fill(std::numeric_limits<double>::quiet_NaN());
508  }
509 
510  iBooker.setCurrentFolder(monitorName_ + "EventInfo");
511 
512  reportSummaryMap = iBooker.book2D("reportSummaryMap", "Beam Spot Summary Map", 1, 0, 1, 3, 0, 3);
514  reportSummaryMap->setAxisTitle("Fitted Beam Spot", 2);
515  reportSummaryMap->setBinLabel(1, " ", 1);
516  reportSummaryMap->setBinLabel(1, "x_{0}", 2);
517  reportSummaryMap->setBinLabel(2, "y_{0}", 2);
518  reportSummaryMap->setBinLabel(3, "z_{0}", 2);
519  for (int i = 0; i < nFitElements_; i++) {
520  reportSummaryMap->setBinContent(1, i + 1, -1.);
521  }
522 }
523 
524 //--------------------------------------------------------
526  // start DB logger
527  DBloggerReturn_ = 0;
530  onlineDbService_->logger().logInfo() << "FakeBeamMonitor::beginLuminosityBlock - LS: " << lumiSeg.luminosityBlock()
531  << " - Run: " << lumiSeg.getRun().run();
532  }
533 
534  int nthlumi = lumiSeg.luminosityBlock();
535  const edm::TimeValue_t fbegintimestamp = lumiSeg.beginTime().value();
536  const std::time_t ftmptime = fbegintimestamp >> 32;
537 
538  if (countLumi_ == 0 && (!processed_)) {
540  refBStime[0] = refPVtime[0] = ftmptime;
541  mapBeginBSLS[countLumi_] = nthlumi;
542  mapBeginPVLS[countLumi_] = nthlumi;
543  mapBeginBSTime[countLumi_] = ftmptime;
544  mapBeginPVTime[countLumi_] = ftmptime;
545  } //for the first record
546 
547  if (nthlumi > nextlumi_) {
548  if (processed_) {
549  countLumi_++;
550  //store here them will need when we remove the first one of Last N LS
551  mapBeginBSLS[countLumi_] = nthlumi;
552  mapBeginPVLS[countLumi_] = nthlumi;
553  mapBeginBSTime[countLumi_] = ftmptime;
554  mapBeginPVTime[countLumi_] = ftmptime;
555  } //processed passed but not the first lumi
556  if ((!processed_) && countLumi_ != 0) {
557  mapBeginBSLS[countLumi_] = nthlumi;
558  mapBeginPVLS[countLumi_] = nthlumi;
559  mapBeginBSTime[countLumi_] = ftmptime;
560  mapBeginPVTime[countLumi_] = ftmptime;
561  } //processed fails for last lumi
562  } //nthLumi > nextlumi
563 
564  if (StartAverage_) {
565  //Just Make sure it get rest
566  refBStime[0] = 0;
567  refPVtime[0] = 0;
568  beginLumiOfPVFit_ = 0;
569  beginLumiOfBSFit_ = 0;
570 
571  if (debug_)
572  edm::LogInfo("FakeBeamMonitor") << " beginLuminosityBlock: Size of mapBeginBSLS before = "
573  << mapBeginBSLS.size() << endl;
574  if (nthlumi >
575  nextlumi_) { //this make sure that it does not take into account this lumi for fitting and only look forward for new lumi
576  //as countLumi also remains the same so map value get overwritten once return to normal running.
577  //even if few LS are misssing and DQM module do not sees them then it catchs up again
578  map<int, int>::iterator itbs = mapBeginBSLS.begin();
579  map<int, int>::iterator itpv = mapBeginPVLS.begin();
580  map<int, std::time_t>::iterator itbstime = mapBeginBSTime.begin();
581  map<int, std::time_t>::iterator itpvtime = mapBeginPVTime.begin();
582 
583  if (processed_) { // otherwise if false then LS range of fit get messed up because we don't remove trk/pvs but we remove LS begin value . This prevent it as it happened if LS is there but no event are processed for some reason
584  mapBeginBSLS.erase(itbs);
585  mapBeginPVLS.erase(itpv);
586  mapBeginBSTime.erase(itbstime);
587  mapBeginPVTime.erase(itpvtime);
588  }
589  /*//not sure if want this or not ??
590  map<int, int>::iterator itgapb=mapBeginBSLS.begin();
591  map<int, int>::iterator itgape=mapBeginBSLS.end(); itgape--;
592  countGapLumi_ = ( (itgape->second) - (itgapb->second) );
593  //if we see Gap more than then 2*resetNFitLumi !!!!!!!
594  //for example if 10-15 is fitted and if 16-25 are missing then we next fit will be for range 11-26 but BS can change in between
595  // so better start as fresh and reset everything like starting in the begining!
596  if(countGapLumi_ >= 2*resetFitNLumi_){RestartFitting(); mapBeginBSLS[countLumi_] = nthlumi;}
597  */
598  }
599 
600  if (debug_)
601  edm::LogInfo("FakeBeamMonitor") << " beginLuminosityBlock:: Size of mapBeginBSLS After = " << mapBeginBSLS.size()
602  << endl;
603 
604  map<int, int>::iterator bbs = mapBeginBSLS.begin();
605  map<int, int>::iterator bpv = mapBeginPVLS.begin();
606  map<int, std::time_t>::iterator bbst = mapBeginBSTime.begin();
607  map<int, std::time_t>::iterator bpvt = mapBeginPVTime.begin();
608 
609  if (beginLumiOfPVFit_ == 0)
610  beginLumiOfPVFit_ = bpv->second; //new begin time after removing the LS
611  if (beginLumiOfBSFit_ == 0)
612  beginLumiOfBSFit_ = bbs->second;
613  if (refBStime[0] == 0)
614  refBStime[0] = bbst->second;
615  if (refPVtime[0] == 0)
616  refPVtime[0] = bpvt->second;
617 
618  } //same logic for average fit as above commented line
619 
620  map<int, std::time_t>::iterator nbbst = mapBeginBSTime.begin();
621  map<int, std::time_t>::iterator nbpvt = mapBeginPVTime.begin();
622 
623  if (onlineMode_ && (nthlumi < nextlumi_))
624  return;
625 
626  if (onlineMode_) {
627  if (nthlumi > nextlumi_) {
628  if (countLumi_ != 0 && processed_)
629  FitAndFill(lumiSeg, lastlumi_, nextlumi_, nthlumi);
630  nextlumi_ = nthlumi;
631  edm::LogInfo("FakeBeamMonitor") << "beginLuminosityBlock:: Next Lumi to Fit: " << nextlumi_ << endl;
632  if ((StartAverage_) && refBStime[0] == 0)
633  refBStime[0] = nbbst->second;
634  if ((StartAverage_) && refPVtime[0] == 0)
635  refPVtime[0] = nbpvt->second;
636  }
637  } else {
638  if (processed_)
639  FitAndFill(lumiSeg, lastlumi_, nextlumi_, nthlumi);
640  nextlumi_ = nthlumi;
641  edm::LogInfo("FakeBeamMonitor") << " beginLuminosityBlock:: Next Lumi to Fit: " << nextlumi_ << endl;
642  if ((StartAverage_) && refBStime[0] == 0)
643  refBStime[0] = nbbst->second;
644  if ((StartAverage_) && refPVtime[0] == 0)
645  refPVtime[0] = nbpvt->second;
646  }
647 
648  //countLumi_++;
649  if (processed_)
650  processed_ = false;
651  edm::LogInfo("FakeBeamMonitor") << " beginLuminosityBlock:: Begin of Lumi: " << nthlumi << endl;
652 }
653 
654 // ----------------------------------------------------------
655 void FakeBeamMonitor::analyze(const Event& iEvent, const EventSetup& iSetup) {
656  const int nthlumi = iEvent.luminosityBlock();
657 
658  if (onlineMode_ && (nthlumi < nextlumi_)) {
659  edm::LogInfo("FakeBeamMonitor") << "analyze:: Spilt event from previous lumi section!" << std::endl;
660  return;
661  }
662  if (onlineMode_ && (nthlumi > nextlumi_)) {
663  edm::LogInfo("FakeBeamMonitor") << "analyze:: Spilt event from next lumi section!!!" << std::endl;
664  return;
665  }
666 
667  countEvt_++;
668  // theBeamFitter->readEvent(
669  // iEvent); //Remember when track fitter read the event in the same place the PVFitter read the events !!!!!!!!!
670 
671  // Handle<reco::BeamSpot> recoBeamSpotHandle;
672  // iEvent.getByToken(bsSrc_, recoBeamSpotHandle);
673  // refBS = *recoBeamSpotHandle;
674 
675  // //------Cut Flow Table filled every event!--------------------------------------
676  // {
677  // // Make a copy of the cut flow table from the beam fitter.
678  // auto tmphisto = static_cast<TH1F*>(theBeamFitter->getCutFlow());
679  // cutFlowTable->getTH1()->SetBins(
680  // tmphisto->GetNbinsX(), tmphisto->GetXaxis()->GetXmin(), tmphisto->GetXaxis()->GetXmax());
681  // // Update the bin labels
682  // if (countEvt_ == 1) // SetLabel just once
683  // for (int n = 0; n < tmphisto->GetNbinsX(); n++)
684  // cutFlowTable->setBinLabel(n + 1, tmphisto->GetXaxis()->GetBinLabel(n + 1), 1);
685  // cutFlowTable->Reset();
686  // cutFlowTable->getTH1()->Add(tmphisto);
687  // }
688 
689  //----Reco tracks -------------------------------------
690  // Handle<reco::TrackCollection> TrackCollection;
691  // iEvent.getByToken(tracksLabel_, TrackCollection);
692  // const reco::TrackCollection* tracks = TrackCollection.product();
693  // for (reco::TrackCollection::const_iterator track = tracks->begin(); track != tracks->end(); ++track) {
694  // h_trkPt->Fill(track->pt()); //no need to change here for average bs
695  // h_trkVz->Fill(track->vz());
696  // }
697 
698  //-------HLT Trigger --------------------------------
699  // edm::Handle<TriggerResults> triggerResults;
700  // bool JetTrigPass = false;
701  // if (iEvent.getByToken(hltSrc_, triggerResults)) {
702  // const edm::TriggerNames& trigNames = iEvent.triggerNames(*triggerResults);
703  // for (unsigned int i = 0; i < triggerResults->size(); i++) {
704  // const std::string& trigName = trigNames.triggerName(i);
705  //
706  // if (JetTrigPass)
707  // continue;
708  //
709  // for (size_t t = 0; t < jetTrigger_.size(); ++t) {
710  // if (JetTrigPass)
711  // continue;
712  //
713  // string string_search(jetTrigger_[t]);
714  // size_t found = trigName.find(string_search);
715  //
716  // if (found != string::npos) {
717  // int thisTrigger_ = trigNames.triggerIndex(trigName);
718  // if (triggerResults->accept(thisTrigger_))
719  // JetTrigPass = true;
720  // } //if trigger found
721  // } //for(t=0;..)
722  // } //for(i=0; ..)
723  // } //if trigger colleciton exist)
724 
725  //------ Primary Vertices-------
726  // edm::Handle<reco::VertexCollection> PVCollection;
727 
728  // if (iEvent.getByToken(pvSrc_, PVCollection)) {
729  int nPVcount = 0;
730  int nPVcount_ST = 0; //For Single Trigger(hence ST)
731 
732  // for (reco::VertexCollection::const_iterator pv = PVCollection->begin(); pv != PVCollection->end(); ++pv) {
733  for (int tmp_idx = 0; tmp_idx < 10; tmp_idx++) {
734  //--- vertex selection
735  // if (pv->isFake() || pv->tracksSize() == 0)
736  // continue;
737  nPVcount++; // count non fake pv:
738 
739  //if (JetTrigPass)
740  nPVcount_ST++; //non-fake pv with a specific trigger
741 
742  // if (pv->ndof() < minVtxNdf_ || (pv->ndof() + 3.) / pv->tracksSize() < 2 * minVtxWgt_)
743  // continue;
744 
745  //Fill this map to store xyx for pv so that later we can remove the first one for run aver
746  mapPVx[countLumi_].push_back(tmp_idx);
747  mapPVy[countLumi_].push_back(tmp_idx);
748  mapPVz[countLumi_].push_back(tmp_idx);
749 
750  // if (!StartAverage_) { //for first N LS
751  // h_PVx[0]->Fill(pv->x());
752  // h_PVy[0]->Fill(pv->y());
753  // h_PVz[0]->Fill(pv->z());
754  // h_PVxz->Fill(pv->z(), pv->x());
755  // h_PVyz->Fill(pv->z(), pv->y());
756  // } //for first N LiS
757  // else {
758  // h_PVxz->Fill(pv->z(), pv->x());
759  // h_PVyz->Fill(pv->z(), pv->y());
760  // }
761 
762  } //loop over pvs
763 
764  // h_nVtx->Fill(nPVcount * 1.); //no need to change it for average BS
765 
766  mapNPV[countLumi_].push_back((nPVcount_ST));
767 
768  // if (!StartAverage_) {
769  // h_nVtx_st->Fill(nPVcount_ST * 1.);
770  // }
771 
772  // } //if pv collection is availaable
773 
774  if (StartAverage_) {
775  map<int, std::vector<float> >::iterator itpvx = mapPVx.begin();
776  map<int, std::vector<float> >::iterator itpvy = mapPVy.begin();
777  map<int, std::vector<float> >::iterator itpvz = mapPVz.begin();
778 
779  map<int, std::vector<int> >::iterator itbspvinfo = mapNPV.begin();
780 
781  if ((int)mapPVx.size() > resetFitNLumi_) { //sometimes the events is not there but LS is there!
782  mapPVx.erase(itpvx);
783  mapPVy.erase(itpvy);
784  mapPVz.erase(itpvz);
785  mapNPV.erase(itbspvinfo);
786  } //loop over Last N lumi collected
787 
788  } //StartAverage==true
789 
790  processed_ = true;
791 }
792 
793 //--------------------------------------------------------
795  int nthlumi = lumiSeg.id().luminosityBlock();
796  edm::LogInfo("FakeBeamMonitor") << "endLuminosityBlock:: Lumi of the last event before endLuminosityBlock: "
797  << nthlumi << endl;
798 
799  if (onlineMode_ && nthlumi < nextlumi_)
800  return;
801  const edm::TimeValue_t fendtimestamp = lumiSeg.endTime().value();
802  const std::time_t fendtime = fendtimestamp >> 32;
803  tmpTime = refBStime[1] = refPVtime[1] = fendtime;
804 
805  // end DB logger
807  onlineDbService_->logger().logInfo() << "FakeBeamMonitor::endLuminosityBlock";
809  }
810 }
811 
812 //--------------------------------------------------------
813 void FakeBeamMonitor::FitAndFill(const LuminosityBlock& lumiSeg, int& lastlumi, int& nextlumi, int& nthlumi) {
814  if (onlineMode_ && (nthlumi <= nextlumi))
815  return;
816 
817  //set the correct run number when no event in the LS for fake output
818  // if ((processed_) && theBeamFitter->getRunNumber() != frun)
819  // theBeamFitter->setRun(frun);
820 
821  int currentlumi = nextlumi;
822  edm::LogInfo("FakeBeamMonitor") << "FitAndFill:: Lumi of the current fit: " << currentlumi << endl;
823  lastlumi = currentlumi;
824  endLumiOfBSFit_ = currentlumi;
825  endLumiOfPVFit_ = currentlumi;
826 
827  //---------Fix for Runninv average-------------
828  mapLSPVStoreSize[countLumi_] = 10; //theBeamFitter->getPVvectorSize();
829 
830  // if (StartAverage_) {
831  // std::map<int, std::size_t>::iterator rmLSPVi = mapLSPVStoreSize.begin();
832  // size_t SizeToRemovePV = rmLSPVi->second;
833  // for (std::map<int, std::size_t>::iterator rmLSPVe = mapLSPVStoreSize.end(); ++rmLSPVi != rmLSPVe;)
834  // rmLSPVi->second -= SizeToRemovePV;
835  //
836  // theBeamFitter->resizePVvector(SizeToRemovePV);
837  //
838  // map<int, std::size_t>::iterator tmpItpv = mapLSPVStoreSize.begin();
839  // mapLSPVStoreSize.erase(tmpItpv);
840  // }
841  // if (debug_)
842  // edm::LogInfo("BeamMonitor") << "FitAndFill:: Size of thePVvector After removing the PVs = "
843  // << theBeamFitter->getPVvectorSize() << endl;
844 
845  //lets filt the PV for GUI here: It was in analyzer in preivous versiton but moved here due to absence of event in some lumis, works OK
846  bool resetHistoFlag_ = false;
847  if ((int)mapPVx.size() >= resetFitNLumi_ && (StartAverage_)) {
848  h_PVx[0]->Reset();
849  h_PVy[0]->Reset();
850  h_PVz[0]->Reset();
851  h_nVtx_st->Reset();
852  resetHistoFlag_ = true;
853  }
854 
855  int MaxPVs = 0;
856  int countEvtLastNLS_ = 0;
857 
858  std::map<int, std::vector<int> >::iterator mnpv = mapNPV.begin();
859  std::map<int, std::vector<float> >::iterator mpv2 = mapPVy.begin();
860  std::map<int, std::vector<float> >::iterator mpv3 = mapPVz.begin();
861 
862  for (std::map<int, std::vector<float> >::iterator mpv1 = mapPVx.begin(); mpv1 != mapPVx.end();
863  ++mpv1, ++mpv2, ++mpv3, ++mnpv) {
864  std::vector<float>::iterator mpvs2 = (mpv2->second).begin();
865  std::vector<float>::iterator mpvs3 = (mpv3->second).begin();
866  for (std::vector<float>::iterator mpvs1 = (mpv1->second).begin(); mpvs1 != (mpv1->second).end();
867  ++mpvs1, ++mpvs2, ++mpvs3) {
868  if (resetHistoFlag_) {
869  h_PVx[0]->Fill(*mpvs1); //these histogram are reset after StartAverage_ flag is ON
870  h_PVy[0]->Fill(*mpvs2);
871  h_PVz[0]->Fill(*mpvs3);
872  }
873  } //loop over second
874 
875  //Do the same here for nPV distr.
876  for (std::vector<int>::iterator mnpvs = (mnpv->second).begin(); mnpvs != (mnpv->second).end(); ++mnpvs) {
877  if ((*mnpvs > 0) && (resetHistoFlag_))
878  h_nVtx_st->Fill((*mnpvs) * (1.0));
879  countEvtLastNLS_++;
880  if ((*mnpvs) > MaxPVs)
881  MaxPVs = (*mnpvs);
882  } //loop over second of mapNPV
883 
884  } //loop over last N lumis
885 
886  char tmpTitlePV[100];
887  sprintf(tmpTitlePV, "%s %i %s %i", "Num. of reco. vertices for LS: ", beginLumiOfPVFit_, " to ", endLumiOfPVFit_);
888  h_nVtx_st->setAxisTitle(tmpTitlePV, 1);
889 
890  std::vector<float> DipPVInfo_;
891  DipPVInfo_.clear();
892  DipPVInfo_.push_back(rndm_->Gaus(1000., 100.)); // Events used
893  DipPVInfo_.push_back(rndm_->Gaus(100., 10.)); // Mean PV
894  DipPVInfo_.push_back(rndm_->Gaus(10., 5.)); // Mean PV err
895  DipPVInfo_.push_back(rndm_->Gaus(10., 5.)); // Rms PV
896  DipPVInfo_.push_back(rndm_->Gaus(5., 3.)); // Rms PV err
897  DipPVInfo_.push_back(rndm_->Gaus(100., 10.)); // Max PVs
898  countEvtLastNLS_ = 0;
899 
900  if (onlineMode_) { // filling LS gap
901  // FIXME: need to add protection for the case if the gap is at the resetting LS!
902  const int countLS_bs = hs[k_x0_lumi]->getTH1()->GetEntries();
903  const int countLS_pv = hs[k_PVx_lumi]->getTH1()->GetEntries();
904  edm::LogInfo("FakeBeamMonitor") << "FitAndFill:: countLS_bs = " << countLS_bs << " ; countLS_pv = " << countLS_pv
905  << std::endl;
906  int LSgap_bs = currentlumi / fitNLumi_ - countLS_bs;
907  int LSgap_pv = currentlumi / fitPVNLumi_ - countLS_pv;
908  if (currentlumi % fitNLumi_ == 0)
909  LSgap_bs--;
910  if (currentlumi % fitPVNLumi_ == 0)
911  LSgap_pv--;
912  edm::LogInfo("FakeBeamMonitor") << "FitAndFill:: LSgap_bs = " << LSgap_bs << " ; LSgap_pv = " << LSgap_pv
913  << std::endl;
914  // filling previous fits if LS gap ever exists
915  for (int ig = 0; ig < LSgap_bs; ig++) {
916  hs[k_x0_lumi]->ShiftFillLast(0., 0., fitNLumi_); //x0 , x0err, fitNLumi_; see DQMCore....
917  hs[k_y0_lumi]->ShiftFillLast(0., 0., fitNLumi_);
918  hs[k_z0_lumi]->ShiftFillLast(0., 0., fitNLumi_);
919  hs[k_sigmaX0_lumi]->ShiftFillLast(0., 0., fitNLumi_);
920  hs[k_sigmaY0_lumi]->ShiftFillLast(0., 0., fitNLumi_);
921  hs[k_sigmaZ0_lumi]->ShiftFillLast(0., 0., fitNLumi_);
923  }
924  for (int ig = 0; ig < LSgap_pv; ig++) {
925  hs[k_PVx_lumi]->ShiftFillLast(0., 0., fitPVNLumi_);
926  hs[k_PVy_lumi]->ShiftFillLast(0., 0., fitPVNLumi_);
927  hs[k_PVz_lumi]->ShiftFillLast(0., 0., fitPVNLumi_);
928  }
929  const int previousLS = h_nTrk_lumi->getTH1()->GetEntries();
930  for (int i = 1; i < (currentlumi - previousLS);
931  i++) //if (current-previoius)= 1 then never go inside the for loop!!!!!!!!!!!
933  }
934 
935  edm::LogInfo("FakeBeamMonitor") << "FitAndFill:: Time lapsed since last scroll = " << tmpTime - refTime << std::endl;
936 
937  if (testScroll(tmpTime, refTime)) {
938  scrollTH1(hs[k_x0_time]->getTH1(), refTime);
939  scrollTH1(hs[k_y0_time]->getTH1(), refTime);
940  scrollTH1(hs[k_z0_time]->getTH1(), refTime);
941  scrollTH1(hs[k_sigmaX0_time]->getTH1(), refTime);
942  scrollTH1(hs[k_sigmaY0_time]->getTH1(), refTime);
943  scrollTH1(hs[k_sigmaZ0_time]->getTH1(), refTime);
944  scrollTH1(hs[k_PVx_time]->getTH1(), refTime);
945  scrollTH1(hs[k_PVy_time]->getTH1(), refTime);
946  scrollTH1(hs[k_PVz_time]->getTH1(), refTime);
947  }
948 
949  // bool doPVFit = false;
950  //
951  // if (fitPVNLumi_ > 0) {
952  // if (onlineMode_) {
953  // if (currentlumi % fitPVNLumi_ == 0)
954  // doPVFit = true;
955  // } else if (countLumi_ % fitPVNLumi_ == 0)
956  // doPVFit = true;
957  // } else
958  // doPVFit = true;
959  //
960  // if (doPVFit) {
961  edm::LogInfo("FakeBeamMonitor") << "FitAndFill:: Do PV Fitting for LS = " << beginLumiOfPVFit_ << " to "
962  << endLumiOfPVFit_ << std::endl;
963  // Primary Vertex Fit:
964  if (h_PVx[0]->getTH1()->GetEntries() > minNrVertices_) {
965  pvResults->Reset();
966  char tmpTitle[50];
967  sprintf(tmpTitle, "%s %i %s %i", "Fitted Primary Vertex (cm) of LS: ", beginLumiOfPVFit_, " to ", endLumiOfPVFit_);
968  pvResults->setAxisTitle(tmpTitle, 1);
969 
970  std::unique_ptr<TF1> fgaus{new TF1("fgaus", "gaus")};
971  double mean, width, meanErr, widthErr;
972  fgaus->SetLineColor(4);
973  h_PVx[0]->getTH1()->Fit(fgaus.get(), "QLM0");
974  mean = fgaus->GetParameter(1);
975  width = fgaus->GetParameter(2);
976  meanErr = fgaus->GetParError(1);
977  widthErr = fgaus->GetParError(2);
978 
979  hs[k_PVx_lumi]->ShiftFillLast(mean, width, fitPVNLumi_);
980  hs[k_PVx_lumi_all]->setBinContent(currentlumi, mean);
981  hs[k_PVx_lumi_all]->setBinError(currentlumi, width);
982  int nthBin = tmpTime - refTime;
983  if (nthBin < 0)
984  edm::LogInfo("FakeBeamMonitor") << "FitAndFill:: Event time outside current range of time histograms!"
985  << std::endl;
986  if (nthBin > 0) {
987  hs[k_PVx_time]->setBinContent(nthBin, mean);
988  hs[k_PVx_time]->setBinError(nthBin, width);
989  }
990  int jthBin = tmpTime - startTime;
991  if (jthBin > 0) {
992  hs[k_PVx_time_all]->setBinContent(jthBin, mean);
993  hs[k_PVx_time_all]->setBinError(jthBin, width);
994  }
995  pvResults->setBinContent(1, 6, mean);
996  pvResults->setBinContent(1, 3, width);
997  pvResults->setBinContent(2, 6, meanErr);
998  pvResults->setBinContent(2, 3, widthErr);
999 
1000  {
1001  // snap shot of the fit
1002  auto tmphisto = h_PVx[0]->getTH1F();
1003  h_PVx[1]->getTH1()->SetBins(
1004  tmphisto->GetNbinsX(), tmphisto->GetXaxis()->GetXmin(), tmphisto->GetXaxis()->GetXmax());
1005  h_PVx[1]->Reset();
1006  h_PVx[1]->getTH1()->Add(tmphisto);
1007  h_PVx[1]->getTH1()->Fit(fgaus.get(), "QLM");
1008  }
1009 
1010  h_PVy[0]->getTH1()->Fit(fgaus.get(), "QLM0");
1011  mean = fgaus->GetParameter(1);
1012  width = fgaus->GetParameter(2);
1013  meanErr = fgaus->GetParError(1);
1014  widthErr = fgaus->GetParError(2);
1015  hs[k_PVy_lumi]->ShiftFillLast(mean, width, fitPVNLumi_);
1016  hs[k_PVy_lumi_all]->setBinContent(currentlumi, mean);
1017  hs[k_PVy_lumi_all]->setBinError(currentlumi, width);
1018  if (nthBin > 0) {
1019  hs[k_PVy_time]->setBinContent(nthBin, mean);
1020  hs[k_PVy_time]->setBinError(nthBin, width);
1021  }
1022  if (jthBin > 0) {
1023  hs[k_PVy_time_all]->setBinContent(jthBin, mean);
1024  hs[k_PVy_time_all]->setBinError(jthBin, width);
1025  }
1026  pvResults->setBinContent(1, 5, mean);
1027  pvResults->setBinContent(1, 2, width);
1028  pvResults->setBinContent(2, 5, meanErr);
1029  pvResults->setBinContent(2, 2, widthErr);
1030  // snap shot of the fit
1031  {
1032  auto tmphisto = h_PVy[0]->getTH1F();
1033  h_PVy[1]->getTH1()->SetBins(
1034  tmphisto->GetNbinsX(), tmphisto->GetXaxis()->GetXmin(), tmphisto->GetXaxis()->GetXmax());
1035  h_PVy[1]->Reset();
1036  h_PVy[1]->getTH1()->Add(tmphisto);
1037  h_PVy[1]->getTH1()->Fit(fgaus.get(), "QLM");
1038  }
1039 
1040  h_PVz[0]->getTH1()->Fit(fgaus.get(), "QLM0");
1041  mean = fgaus->GetParameter(1);
1042  width = fgaus->GetParameter(2);
1043  meanErr = fgaus->GetParError(1);
1044  widthErr = fgaus->GetParError(2);
1045  hs[k_PVz_lumi]->ShiftFillLast(mean, width, fitPVNLumi_);
1046  hs[k_PVz_lumi_all]->setBinContent(currentlumi, mean);
1047  hs[k_PVz_lumi_all]->setBinError(currentlumi, width);
1048  if (nthBin > 0) {
1049  hs[k_PVz_time]->setBinContent(nthBin, mean);
1050  hs[k_PVz_time]->setBinError(nthBin, width);
1051  }
1052  if (jthBin > 0) {
1053  hs[k_PVz_time_all]->setBinContent(jthBin, mean);
1054  hs[k_PVz_time_all]->setBinError(jthBin, width);
1055  }
1056  pvResults->setBinContent(1, 4, mean);
1057  pvResults->setBinContent(1, 1, width);
1058  pvResults->setBinContent(2, 4, meanErr);
1059  pvResults->setBinContent(2, 1, widthErr);
1060  {
1061  // snap shot of the fit
1062  auto tmphisto = h_PVz[0]->getTH1F();
1063  h_PVz[1]->getTH1()->SetBins(
1064  tmphisto->GetNbinsX(), tmphisto->GetXaxis()->GetXmin(), tmphisto->GetXaxis()->GetXmax());
1065  h_PVz[1]->Reset();
1066  h_PVz[1]->getTH1()->Add(tmphisto);
1067  h_PVz[1]->getTH1()->Fit(fgaus.get(), "QLM");
1068  }
1069  } //check if found min Vertices
1070  // } //do PVfit
1071 
1072  if ((resetPVNLumi_ > 0 && countLumi_ == resetPVNLumi_) || StartAverage_) {
1073  beginLumiOfPVFit_ = 0;
1074  refPVtime[0] = 0;
1075  }
1076 
1077  //---------Readjustment of theBSvector, RefTime, beginLSofFit---------
1078  // vector<BSTrkParameters> theBSvector1 = theBeamFitter->getBSvector();
1079  // mapLSBSTrkSize[countLumi_] = (theBSvector1.size());
1080  size_t PreviousRecords = 0; //needed to fill nth record of tracks in GUI
1081 
1082  // if (StartAverage_) {
1083  // size_t SizeToRemove = 0;
1084  // std::map<int, std::size_t>::iterator rmls = mapLSBSTrkSize.begin();
1085  // SizeToRemove = rmls->second;
1086  // if (debug_)
1087  // edm::LogInfo("BeamMonitor") << " The size to remove is = " << SizeToRemove << endl;
1088  // int changedAfterThis = 0;
1089  // for (std::map<int, std::size_t>::iterator rmLS = mapLSBSTrkSize.begin(); rmLS != mapLSBSTrkSize.end();
1090  // ++rmLS, ++changedAfterThis) {
1091  // if (changedAfterThis > 0) {
1092  // (rmLS->second) = (rmLS->second) - SizeToRemove;
1093  // if ((mapLSBSTrkSize.size() - (size_t)changedAfterThis) == 2)
1094  // PreviousRecords = (rmLS->second);
1095  // }
1096  // }
1097  //
1098  // theBeamFitter->resizeBSvector(SizeToRemove);
1099  //
1100  // map<int, std::size_t>::iterator tmpIt = mapLSBSTrkSize.begin();
1101  // mapLSBSTrkSize.erase(tmpIt);
1102  //
1103  // std::pair<int, int> checkfitLS = theBeamFitter->getFitLSRange();
1104  // std::pair<time_t, time_t> checkfitTime = theBeamFitter->getRefTime();
1105  // theBeamFitter->setFitLSRange(beginLumiOfBSFit_, checkfitLS.second);
1106  // theBeamFitter->setRefTime(refBStime[0], checkfitTime.second);
1107  // }
1108 
1109  //Fill the track for this fit
1110  // vector<BSTrkParameters> theBSvector = theBeamFitter->getBSvector();
1111  // h_nTrk_lumi->ShiftFillLast(theBSvector.size());
1112  //
1113  // if (debug_)
1114  // edm::LogInfo("BeamMonitor") << "FitAndFill:: Size of theBSViector.size() After =" << theBSvector.size() << endl;
1115 
1116  // bool countFitting = false;
1117  // if (theBSvector.size() >= PreviousRecords && theBSvector.size() >= min_Ntrks_) {
1118  // countFitting = true;
1119  // }
1120 
1121  //---Fix for Cut Flow Table for Running average in a same way//the previous code has problem for resetting!!!
1122  // mapLSCF[countLumi_] = *theBeamFitter->getCutFlow();
1123  // if (StartAverage_ && !mapLSCF.empty()) {
1124  // const TH1F& cutFlowToSubtract = mapLSCF.begin()->second;
1125  // // Subtract the last cut flow from all of the others.
1126  // std::map<int, TH1F>::iterator cf = mapLSCF.begin();
1127  // // Start on second entry
1128  // for (; cf != mapLSCF.end(); ++cf) {
1129  // cf->second.Add(&cutFlowToSubtract, -1);
1130  // }
1131  // theBeamFitter->subtractFromCutFlow(&cutFlowToSubtract);
1132  // // Remove the obsolete lumi section
1133  // mapLSCF.erase(mapLSCF.begin());
1134  // }
1135 
1136  if (resetHistos_) {
1137  h_d0_phi0->Reset();
1138  h_vx_vy->Reset();
1139  h_vx_dz->Reset();
1140  h_vy_dz->Reset();
1141  h_trk_z0->Reset();
1142  resetHistos_ = false;
1143  }
1144 
1145  if (StartAverage_)
1146  nthBSTrk_ = PreviousRecords; //after average proccess is ON//for 2-6 LS fit PreviousRecords is size from 2-5 LS
1147 
1148  edm::LogInfo("FakeBeamMonitor") << " The Previous Recored for this fit is =" << nthBSTrk_ << endl;
1149 
1150  // unsigned int itrk = 0;
1151  // for (vector<BSTrkParameters>::const_iterator BSTrk = theBSvector.begin(); BSTrk != theBSvector.end();
1152  // ++BSTrk, ++itrk) {
1153  // if (itrk >= nthBSTrk_) { //fill for this record only !!
1154  // h_d0_phi0->Fill(BSTrk->phi0(), BSTrk->d0());
1155  // double vx = BSTrk->vx();
1156  // double vy = BSTrk->vy();
1157  // double z0 = BSTrk->z0();
1158  // h_vx_vy->Fill(vx, vy);
1159  // h_vx_dz->Fill(z0, vx);
1160  // h_vy_dz->Fill(z0, vy);
1161  // h_trk_z0->Fill(z0);
1162  // }
1163  // }
1164 
1165  // nthBSTrk_ = theBSvector.size(); // keep track of num of tracks filled so far
1166 
1167  edm::LogInfo("FakeBeamMonitor") << " The Current Recored for this fit is =" << nthBSTrk_ << endl;
1168 
1169  // if (countFitting)
1170  // edm::LogInfo("FakeBeamMonitor") << "FitAndFill:: Num of tracks collected = " << nthBSTrk_ << endl;
1171 
1172  if (fitNLumi_ > 0) {
1173  if (onlineMode_) {
1174  if (currentlumi % fitNLumi_ != 0) {
1175  // for (std::map<TString,MonitorElement*>::iterator itAll = hs.begin();
1176  // itAll != hs.end(); ++itAll) {
1177  // if ((*itAll).first.Contains("all")) {
1178  // (*itAll).second->setBinContent(currentlumi,0.);
1179  // (*itAll).second->setBinError(currentlumi,0.);
1180  // }
1181  // }
1182  return;
1183  }
1184  } else if (countLumi_ % fitNLumi_ != 0)
1185  return;
1186  }
1187 
1188  edm::LogInfo("FakeBeamMonitor") << "FitAndFill:: [DebugTime] refBStime[0] = " << refBStime[0]
1189  << "; address = " << &refBStime[0] << std::endl;
1190  edm::LogInfo("FakeBeamMonitor") << "FitAndFill:: [DebugTime] refBStime[1] = " << refBStime[1]
1191  << "; address = " << &refBStime[1] << std::endl;
1192 
1193  //Fill for all LS even if fit fails
1194  // h_nVtx_lumi->ShiftFillLast((theBeamFitter->getPVvectorSize()), 0., fitNLumi_);
1195  // h_nVtx_lumi_all->setBinContent(currentlumi, (theBeamFitter->getPVvectorSize()));
1196 
1197  // if (countFitting) {
1198  nFits_++;
1199  // std::pair<int, int> fitLS = theBeamFitter->getFitLSRange();
1200  std::pair<int, int> fitLS(beginLumiOfBSFit_, endLumiOfBSFit_);
1201  // edm::LogInfo("BeamMonitor") << "FitAndFill:: [BeamFitter] Do BeamSpot Fit for LS = " << fitLS.first << " to "
1202  // << fitLS.second << std::endl;
1203  edm::LogInfo("FakeBeamMonitor") << "FitAndFill:: [FakeBeamMonitor] Do BeamSpot Fit for LS = " << beginLumiOfBSFit_
1204  << " to " << endLumiOfBSFit_ << std::endl;
1205 
1206  //Now Run the PV and Track Fitter over the collected tracks and pvs
1207  // if (theBeamFitter->runPVandTrkFitter()) {
1208  // reco::BeamSpot bs = theBeamFitter->getBeamSpot();
1209 
1210  //Create fake BS here
1212  for (int j = 0; j < 7; ++j) {
1213  for (int k = j; k < 7; ++k) {
1214  matrix(j, k) = 0;
1215  }
1216  }
1217 
1218  // random values for fake BeamSpot
1219  float tmp_BSx = rndm_->Gaus(0.1, 0.1); // [cm]
1220  float tmp_BSy = rndm_->Gaus(0.1, 0.1); // [cm]
1221  float tmp_BSz = rndm_->Gaus(0.1, 0.1); // [cm]
1222  float tmp_BSwidthX = rndm_->Gaus(0.001, 0.0005); // [cm]
1223  float tmp_BSwidthY = rndm_->Gaus(0.001, 0.0005); // [cm]
1224  float tmp_BSwidthZ = rndm_->Gaus(3.5, 0.5); // [cm]
1225 
1226  reco::BeamSpot bs(reco::BeamSpot::Point(tmp_BSx, tmp_BSy, tmp_BSz),
1227  tmp_BSwidthZ,
1228  0,
1229  0,
1230  tmp_BSwidthX,
1231  matrix,
1233  bs.setBeamWidthY(tmp_BSwidthY);
1234 
1235  if (bs.type() > 0) // with good beamwidth fit
1236  preBS = bs; // cache good fit results
1237 
1238  edm::LogInfo("FakeBeamMonitor") << "\n RESULTS OF DEFAULT FIT:" << endl;
1239  edm::LogInfo("FakeBeamMonitor") << bs << endl;
1240  edm::LogInfo("FakeBeamMonitor") << "[BeamFitter] fitting done \n" << endl;
1241 
1242  hs[k_x0_lumi]->ShiftFillLast(bs.x0(), bs.x0Error(), fitNLumi_);
1243  hs[k_y0_lumi]->ShiftFillLast(bs.y0(), bs.y0Error(), fitNLumi_);
1244  hs[k_z0_lumi]->ShiftFillLast(bs.z0(), bs.z0Error(), fitNLumi_);
1245  hs[k_sigmaX0_lumi]->ShiftFillLast(bs.BeamWidthX(), bs.BeamWidthXError(), fitNLumi_);
1246  hs[k_sigmaY0_lumi]->ShiftFillLast(bs.BeamWidthY(), bs.BeamWidthYError(), fitNLumi_);
1247  hs[k_sigmaZ0_lumi]->ShiftFillLast(bs.sigmaZ(), bs.sigmaZ0Error(), fitNLumi_);
1248  hs[k_x0_lumi_all]->setBinContent(currentlumi, bs.x0());
1249  hs[k_x0_lumi_all]->setBinError(currentlumi, bs.x0Error());
1250  hs[k_y0_lumi_all]->setBinContent(currentlumi, bs.y0());
1251  hs[k_y0_lumi_all]->setBinError(currentlumi, bs.y0Error());
1252  hs[k_z0_lumi_all]->setBinContent(currentlumi, bs.z0());
1253  hs[k_z0_lumi_all]->setBinError(currentlumi, bs.z0Error());
1254  hs[k_sigmaX0_lumi_all]->setBinContent(currentlumi, bs.BeamWidthX());
1255  hs[k_sigmaX0_lumi_all]->setBinError(currentlumi, bs.BeamWidthXError());
1256  hs[k_sigmaY0_lumi_all]->setBinContent(currentlumi, bs.BeamWidthY());
1257  hs[k_sigmaY0_lumi_all]->setBinError(currentlumi, bs.BeamWidthYError());
1258  hs[k_sigmaZ0_lumi_all]->setBinContent(currentlumi, bs.sigmaZ());
1259  hs[k_sigmaZ0_lumi_all]->setBinError(currentlumi, bs.sigmaZ0Error());
1260 
1261  int nthBin = tmpTime - refTime;
1262  if (nthBin > 0) {
1263  hs[k_x0_time]->setBinContent(nthBin, bs.x0());
1264  hs[k_y0_time]->setBinContent(nthBin, bs.y0());
1265  hs[k_z0_time]->setBinContent(nthBin, bs.z0());
1266  hs[k_sigmaX0_time]->setBinContent(nthBin, bs.BeamWidthX());
1267  hs[k_sigmaY0_time]->setBinContent(nthBin, bs.BeamWidthY());
1268  hs[k_sigmaZ0_time]->setBinContent(nthBin, bs.sigmaZ());
1269  hs[k_x0_time]->setBinError(nthBin, bs.x0Error());
1270  hs[k_y0_time]->setBinError(nthBin, bs.y0Error());
1271  hs[k_z0_time]->setBinError(nthBin, bs.z0Error());
1272  hs[k_sigmaX0_time]->setBinError(nthBin, bs.BeamWidthXError());
1273  hs[k_sigmaY0_time]->setBinError(nthBin, bs.BeamWidthYError());
1274  hs[k_sigmaZ0_time]->setBinError(nthBin, bs.sigmaZ0Error());
1275  }
1276 
1277  int jthBin = tmpTime - startTime;
1278  if (jthBin > 0) {
1279  hs[k_x0_time_all]->setBinContent(jthBin, bs.x0());
1280  hs[k_y0_time_all]->setBinContent(jthBin, bs.y0());
1281  hs[k_z0_time_all]->setBinContent(jthBin, bs.z0());
1282  hs[k_sigmaX0_time_all]->setBinContent(jthBin, bs.BeamWidthX());
1283  hs[k_sigmaY0_time_all]->setBinContent(jthBin, bs.BeamWidthY());
1284  hs[k_sigmaZ0_time_all]->setBinContent(jthBin, bs.sigmaZ());
1285  hs[k_x0_time_all]->setBinError(jthBin, bs.x0Error());
1286  hs[k_y0_time_all]->setBinError(jthBin, bs.y0Error());
1287  hs[k_z0_time_all]->setBinError(jthBin, bs.z0Error());
1288  hs[k_sigmaX0_time_all]->setBinError(jthBin, bs.BeamWidthXError());
1289  hs[k_sigmaY0_time_all]->setBinError(jthBin, bs.BeamWidthYError());
1290  hs[k_sigmaZ0_time_all]->setBinError(jthBin, bs.sigmaZ0Error());
1291  }
1292 
1293  h_x0->Fill(bs.x0());
1294  h_y0->Fill(bs.y0());
1295  h_z0->Fill(bs.z0());
1296  if (bs.type() > 0) { // with good beamwidth fit
1297  h_sigmaX0->Fill(bs.BeamWidthX());
1298  h_sigmaY0->Fill(bs.BeamWidthY());
1299  }
1300  h_sigmaZ0->Fill(bs.sigmaZ());
1301 
1302  if (nthBSTrk_ >= 2 * min_Ntrks_) {
1303  double amp = std::sqrt(bs.x0() * bs.x0() + bs.y0() * bs.y0());
1304  double alpha = std::atan2(bs.y0(), bs.x0());
1305  std::unique_ptr<TF1> f1{new TF1("f1", "[0]*sin(x-[1])", -3.14, 3.14)};
1306  f1->SetParameters(amp, alpha);
1307  f1->SetParLimits(0, amp - 0.1, amp + 0.1);
1308  f1->SetParLimits(1, alpha - 0.577, alpha + 0.577);
1309  f1->SetLineColor(4);
1310  h_d0_phi0->getTProfile()->Fit(f1.get(), "QR");
1311 
1312  double mean = bs.z0();
1313  double width = bs.sigmaZ();
1314  std::unique_ptr<TF1> fgaus{new TF1("fgaus", "gaus")};
1315  fgaus->SetParameters(mean, width);
1316  fgaus->SetLineColor(4);
1317  h_trk_z0->getTH1()->Fit(fgaus.get(), "QLRM", "", mean - 3 * width, mean + 3 * width);
1318  }
1319 
1320  fitResults->Reset();
1321  std::pair<int, int> LSRange(beginLumiOfBSFit_, endLumiOfBSFit_); //= theBeamFitter->getFitLSRange();
1322  char tmpTitle[50];
1323  sprintf(tmpTitle, "%s %i %s %i", "Fitted Beam Spot (cm) of LS: ", LSRange.first, " to ", LSRange.second);
1324  fitResults->setAxisTitle(tmpTitle, 1);
1325  fitResults->setBinContent(1, 8, bs.x0());
1326  fitResults->setBinContent(1, 7, bs.y0());
1327  fitResults->setBinContent(1, 6, bs.z0());
1328  fitResults->setBinContent(1, 5, bs.sigmaZ());
1329  fitResults->setBinContent(1, 4, bs.dxdz());
1330  fitResults->setBinContent(1, 3, bs.dydz());
1331  if (bs.type() > 0) { // with good beamwidth fit
1332  fitResults->setBinContent(1, 2, bs.BeamWidthX());
1333  fitResults->setBinContent(1, 1, bs.BeamWidthY());
1334  } else { // fill cached widths
1337  }
1338 
1339  fitResults->setBinContent(2, 8, bs.x0Error());
1340  fitResults->setBinContent(2, 7, bs.y0Error());
1341  fitResults->setBinContent(2, 6, bs.z0Error());
1342  fitResults->setBinContent(2, 5, bs.sigmaZ0Error());
1343  fitResults->setBinContent(2, 4, bs.dxdzError());
1344  fitResults->setBinContent(2, 3, bs.dydzError());
1345  if (bs.type() > 0) { // with good beamwidth fit
1346  fitResults->setBinContent(2, 2, bs.BeamWidthXError());
1347  fitResults->setBinContent(2, 1, bs.BeamWidthYError());
1348  } else { // fill cached width errors
1351  }
1352 
1353  // count good fit
1354  // if (std::fabs(refBS.x0()-bs.x0())/bs.x0Error() < deltaSigCut_) { // disabled temporarily
1355  summaryContent_[0] += 1.;
1356  // }
1357  // if (std::fabs(refBS.y0()-bs.y0())/bs.y0Error() < deltaSigCut_) { // disabled temporarily
1358  summaryContent_[1] += 1.;
1359  // }
1360  // if (std::fabs(refBS.z0()-bs.z0())/bs.z0Error() < deltaSigCut_) { // disabled temporarily
1361  summaryContent_[2] += 1.;
1362  // }
1363 
1364  // Create the BeamSpotOnlineObjects object
1365  BeamSpotOnlineObjects BSOnline;
1366  BSOnline.setLastAnalyzedLumi(LSRange.second);
1367  BSOnline.setLastAnalyzedRun(frun);
1368  BSOnline.setLastAnalyzedFill(0); // To be updated with correct LHC Fill number
1369  BSOnline.setPosition(bs.x0(), bs.y0(), bs.z0());
1370  BSOnline.setSigmaZ(bs.sigmaZ());
1371  BSOnline.setBeamWidthX(bs.BeamWidthX());
1372  BSOnline.setBeamWidthY(bs.BeamWidthY());
1373  BSOnline.setBeamWidthXError(bs.BeamWidthXError());
1374  BSOnline.setBeamWidthYError(bs.BeamWidthYError());
1375  BSOnline.setdxdz(bs.dxdz());
1376  BSOnline.setdydz(bs.dydz());
1377  BSOnline.setType(bs.type());
1378  BSOnline.setEmittanceX(bs.emittanceX());
1379  BSOnline.setEmittanceY(bs.emittanceY());
1380  BSOnline.setBetaStar(bs.betaStar());
1381  for (int i = 0; i < 7; ++i) {
1382  for (int j = 0; j < 7; ++j) {
1383  BSOnline.setCovariance(i, j, bs.covariance(i, j));
1384  }
1385  }
1386  BSOnline.setNumTracks(50);
1387  BSOnline.setNumPVs(10);
1388  BSOnline.setUsedEvents((int)DipPVInfo_[0]);
1389  BSOnline.setMeanPV(DipPVInfo_[1]);
1390  BSOnline.setMeanErrorPV(DipPVInfo_[2]);
1391  BSOnline.setRmsPV(DipPVInfo_[3]);
1392  BSOnline.setRmsErrorPV(DipPVInfo_[4]);
1393  BSOnline.setMaxPVs((int)DipPVInfo_[5]);
1394  auto creationTime =
1395  std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::system_clock::now().time_since_epoch()).count();
1396  BSOnline.setCreationTime(creationTime);
1397 
1398  // use fake timestamps from 1970.01.01 00:00:00 to 1970.01.01 00:00:01 GMT
1399  std::pair<time_t, time_t> timeForDIP = std::make_pair(0, 1);
1400  BSOnline.setStartTimeStamp(timeForDIP.first);
1401  BSOnline.setStartTime(getGMTstring(timeForDIP.first));
1402  BSOnline.setEndTimeStamp(timeForDIP.second);
1403  BSOnline.setEndTime(getGMTstring(timeForDIP.second));
1404 
1405  edm::LogInfo("FakeBeamMonitor") << "FitAndFill::[PayloadCreation] BeamSpotOnline object created: \n" << std::endl;
1406  edm::LogInfo("FakeBeamMonitor") << BSOnline << std::endl;
1407 
1408  // Create the payload for BeamSpotOnlineObjects object
1409  if (onlineDbService_.isAvailable()) {
1410  edm::LogInfo("FakeBeamMonitor") << "FitAndFill::[PayloadCreation] onlineDbService available \n" << std::endl;
1411  onlineDbService_->logger().logInfo() << "FakeBeamMonitor::FitAndFill - Lumi of the current fit: " << currentlumi;
1412  onlineDbService_->logger().logInfo() << "FakeBeamMonitor::FitAndFill - Do PV Fitting for LS = " << beginLumiOfPVFit_
1413  << " to " << endLumiOfPVFit_;
1414  onlineDbService_->logger().logInfo() << "FakeBeamMonitor::FitAndFill - [BeamFitter] Do BeamSpot Fit for LS = "
1415  << LSRange.first << " to " << LSRange.second;
1416  onlineDbService_->logger().logInfo() << "FakeBeamMonitor::FitAndFill - [FakeBeamMonitor] Do BeamSpot Fit for LS = "
1417  << beginLumiOfBSFit_ << " to " << endLumiOfBSFit_;
1418  onlineDbService_->logger().logInfo() << "FakeBeamMonitor - RESULTS OF DEFAULT FIT:";
1419  onlineDbService_->logger().logInfo() << "\n" << bs;
1421  << "FakeBeamMonitor::FitAndFill - [PayloadCreation] BeamSpotOnline object created:";
1422  onlineDbService_->logger().logInfo() << "\n" << BSOnline;
1423  onlineDbService_->logger().logInfo() << "FakeBeamMonitor - Additional parameters for DIP:";
1424  onlineDbService_->logger().logInfo() << "Events used in the fit: " << BSOnline.usedEvents();
1425  onlineDbService_->logger().logInfo() << "Mean PV : " << BSOnline.meanPV();
1426  onlineDbService_->logger().logInfo() << "Mean PV Error : " << BSOnline.meanErrorPV();
1427  onlineDbService_->logger().logInfo() << "Rms PV : " << BSOnline.rmsPV();
1428  onlineDbService_->logger().logInfo() << "Rms PV Error : " << BSOnline.rmsErrorPV();
1429  onlineDbService_->logger().logInfo() << "Max PVs : " << BSOnline.maxPVs();
1430  onlineDbService_->logger().logInfo() << "StartTime : " << BSOnline.startTime();
1431  onlineDbService_->logger().logInfo() << "StartTimeStamp : " << BSOnline.startTimeStamp();
1432  onlineDbService_->logger().logInfo() << "EndTime : " << BSOnline.endTime();
1433  onlineDbService_->logger().logInfo() << "EndTimeStamp : " << BSOnline.endTimeStamp();
1434  onlineDbService_->logger().logInfo() << "FakeBeamMonitor::FitAndFill - [PayloadCreation] onlineDbService available";
1435  onlineDbService_->logger().logInfo() << "FakeBeamMonitor::FitAndFill - [PayloadCreation] SetCreationTime: "
1436  << creationTime << " [epoch in microseconds]";
1437  try {
1440  << "FakeBeamMonitor::FitAndFill - [PayloadCreation] writeIOVForNextLumisection executed correctly";
1441  } catch (const std::exception& e) {
1442  onlineDbService_->logger().logError() << "FakeBeamMonitor - Error writing record: " << recordName_
1443  << " for Run: " << frun << " - Lumi: " << LSRange.second;
1444  onlineDbService_->logger().logError() << "Error is: " << e.what();
1445  onlineDbService_->logger().logError() << "RESULTS OF DEFAULT FIT WAS:";
1446  onlineDbService_->logger().logError() << "\n" << bs;
1447  DBloggerReturn_ = 2;
1448  }
1449  }
1450  edm::LogInfo("FakeBeamMonitor") << "FitAndFill::[PayloadCreation] BeamSpotOnline payload created \n" << std::endl;
1451 
1452  // } //if (theBeamFitter->runPVandTrkFitter())
1453  // else { // beam fit fails
1454  // reco::BeamSpot bs = theBeamFitter->getBeamSpot();
1455  // edm::LogInfo("BeamMonitor") << "FitAndFill:: [BeamMonitor] Beam fit fails!!! \n" << endl;
1456  // edm::LogInfo("BeamMonitor") << "FitAndFill:: [BeamMonitor] Output beam spot for DIP \n" << endl;
1457  // edm::LogInfo("BeamMonitor") << bs << endl;
1458  //
1459  // hs[k_sigmaX0_lumi]->ShiftFillLast(bs.BeamWidthX(), bs.BeamWidthXError(), fitNLumi_);
1460  // hs[k_sigmaY0_lumi]->ShiftFillLast(bs.BeamWidthY(), bs.BeamWidthYError(), fitNLumi_);
1461  // hs[k_sigmaZ0_lumi]->ShiftFillLast(bs.sigmaZ(), bs.sigmaZ0Error(), fitNLumi_);
1462  // hs[k_x0_lumi]->ShiftFillLast(bs.x0(), bs.x0Error(), fitNLumi_);
1463  // hs[k_y0_lumi]->ShiftFillLast(bs.y0(), bs.y0Error(), fitNLumi_);
1464  // hs[k_z0_lumi]->ShiftFillLast(bs.z0(), bs.z0Error(), fitNLumi_);
1465  // } // end of beam fit fails
1466 
1467  // } //-------- end of countFitting------------------------------------------
1468  // else { // no fit
1469  // // Overwrite Fit LS and fit time when no event processed or no track selected
1470  // theBeamFitter->setFitLSRange(beginLumiOfBSFit_, endLumiOfBSFit_);
1471  // theBeamFitter->setRefTime(refBStime[0], refBStime[1]);
1472  // if (theBeamFitter->runPVandTrkFitter()) {
1473  // } // Dump fake beam spot for DIP
1474  // reco::BeamSpot bs = theBeamFitter->getBeamSpot();
1475  // edm::LogInfo("BeamMonitor") << "FitAndFill:: [BeamMonitor] No fitting \n" << endl;
1476  // edm::LogInfo("BeamMonitor") << "FitAndFill:: [BeamMonitor] Output fake beam spot for DIP \n" << endl;
1477  // edm::LogInfo("BeamMonitor") << bs << endl;
1478  //
1479  // hs[k_sigmaX0_lumi]->ShiftFillLast(bs.BeamWidthX(), bs.BeamWidthXError(), fitNLumi_);
1480  // hs[k_sigmaY0_lumi]->ShiftFillLast(bs.BeamWidthY(), bs.BeamWidthYError(), fitNLumi_);
1481  // hs[k_sigmaZ0_lumi]->ShiftFillLast(bs.sigmaZ(), bs.sigmaZ0Error(), fitNLumi_);
1482  // hs[k_x0_lumi]->ShiftFillLast(bs.x0(), bs.x0Error(), fitNLumi_);
1483  // hs[k_y0_lumi]->ShiftFillLast(bs.y0(), bs.y0Error(), fitNLumi_);
1484  // hs[k_z0_lumi]->ShiftFillLast(bs.z0(), bs.z0Error(), fitNLumi_);
1485  // }
1486 
1487  // Fill summary report
1488  // if (countFitting) {
1489  for (int n = 0; n < nFitElements_; n++) {
1491  }
1492 
1493  summarySum_ = 0;
1494  for (int ii = 0; ii < nFitElements_; ii++) {
1496  }
1498  if (reportSummary)
1500 
1501  for (int bi = 0; bi < nFitElements_; bi++) {
1502  reportSummaryMap->setBinContent(1, bi + 1, summaryContent_[bi] / (float)nFits_);
1503  }
1504  // }
1505 
1506  if ((resetFitNLumi_ > 0 &&
1507  ((onlineMode_ &&
1508  countLumi_ == resetFitNLumi_) || //OR it should be currentLumi_ (if in sequence then does not mattar)
1509  (!onlineMode_ && countLumi_ == resetFitNLumi_))) ||
1510  (StartAverage_)) {
1511  edm::LogInfo("FakeBeamMonitor") << "FitAndFill:: The flag is ON for running average Beam Spot fit" << endl;
1512  StartAverage_ = true;
1513  firstAverageFit_++;
1514  resetHistos_ = true;
1515  nthBSTrk_ = 0;
1516  beginLumiOfBSFit_ = 0;
1517  refBStime[0] = 0;
1518  }
1519 }
1520 
1521 //--------------------------------------------------------
1523  if (debug_)
1524  edm::LogInfo("FakeBeamMonitor")
1525  << " RestartingFitting:: Restart Beami everything to a fresh start !!! because Gap is > 10 LS" << endl;
1526  //track based fit reset here
1527  resetHistos_ = true;
1528  nthBSTrk_ = 0;
1529  // theBeamFitter->resetTrkVector();
1530  // theBeamFitter->resetLSRange();
1531  // theBeamFitter->resetRefTime();
1532  // theBeamFitter->resetPVFitter();
1533  // theBeamFitter->resetCutFlow();
1534  beginLumiOfBSFit_ = 0;
1535  refBStime[0] = 0;
1536  //pv based fit iis reset here
1537  h_PVx[0]->Reset();
1538  h_PVy[0]->Reset();
1539  h_PVz[0]->Reset();
1540  beginLumiOfPVFit_ = 0;
1541  refPVtime[0] = 0;
1542  //Clear all the Maps here
1543  mapPVx.clear();
1544  mapPVy.clear();
1545  mapPVz.clear();
1546  mapNPV.clear();
1547  mapBeginBSLS.clear();
1548  mapBeginPVLS.clear();
1549  mapBeginBSTime.clear();
1550  mapBeginPVTime.clear();
1551  mapLSBSTrkSize.clear();
1552  mapLSPVStoreSize.clear();
1553  mapLSCF.clear();
1554  countGapLumi_ = 0;
1555  countLumi_ = 0;
1556  StartAverage_ = false;
1557 }
1558 
1559 //-------------------------------------------------------
1561  if (debug_)
1562  edm::LogInfo("FakeBeamMonitor") << "dqmEndRun:: Clearing all the Maps " << endl;
1563  //Clear all the Maps here
1564  mapPVx.clear();
1565  mapPVy.clear();
1566  mapPVz.clear();
1567  mapNPV.clear();
1568  mapBeginBSLS.clear();
1569  mapBeginPVLS.clear();
1570  mapBeginBSTime.clear();
1571  mapBeginPVTime.clear();
1572  mapLSBSTrkSize.clear();
1573  mapLSPVStoreSize.clear();
1574  mapLSCF.clear();
1577  }
1578 }
1579 
1580 //--------------------------------------------------------
1581 void FakeBeamMonitor::scrollTH1(TH1* h, time_t ref) {
1582  char offsetTime[64];
1583  formatFitTime(offsetTime, ref);
1584  TDatime da(offsetTime);
1585  if (lastNZbin > 0) {
1586  double val = h->GetBinContent(lastNZbin);
1587  double valErr = h->GetBinError(lastNZbin);
1588  h->Reset();
1589  h->GetXaxis()->SetTimeOffset(da.Convert(kTRUE));
1590  int bin = (lastNZbin > buffTime ? buffTime : 1);
1591  h->SetBinContent(bin, val);
1592  h->SetBinError(bin, valErr);
1593  } else {
1594  h->Reset();
1595  h->GetXaxis()->SetTimeOffset(da.Convert(kTRUE));
1596  }
1597 }
1598 
1599 //--------------------------------------------------------
1600 // Method to check whether to chane histogram time offset (forward only)
1601 bool FakeBeamMonitor::testScroll(time_t& tmpTime_, time_t& refTime_) {
1602  bool scroll_ = false;
1603  if (tmpTime_ - refTime_ >= intervalInSec_) {
1604  scroll_ = true;
1605  edm::LogInfo("FakeBeamMonitor") << "testScroll:: Reset Time Offset" << std::endl;
1607  for (int bin = intervalInSec_; bin >= 1; bin--) {
1608  if (hs[k_x0_time]->getBinContent(bin) > 0) {
1609  lastNZbin = bin;
1610  break;
1611  }
1612  }
1613  edm::LogInfo("FakeBeamMonitor") << "testScroll:: Last non zero bin = " << lastNZbin << std::endl;
1614  if (tmpTime_ - refTime_ >= intervalInSec_ + lastNZbin) {
1615  edm::LogInfo("FakeBeamMonitor") << "testScroll:: Time difference too large since last readout" << std::endl;
1616  lastNZbin = 0;
1617  refTime_ = tmpTime_ - buffTime;
1618  } else {
1619  edm::LogInfo("FakeBeamMonitor") << "testScroll:: Offset to last record" << std::endl;
1620  int offset = ((lastNZbin > buffTime) ? (lastNZbin - buffTime) : (lastNZbin - 1));
1621  refTime_ += offset;
1622  }
1623  }
1624  return scroll_;
1625 }
1626 
1628 
1629 // Local Variables:
1630 // show-trailing-whitespace: t
1631 // truncate-lines: t
1632 // End:
MonitorElement * pvResults
#define CEST
math::Error< dimension >::type CovarianceMatrix
Definition: BeamSpot.h:29
double BeamWidthX() const
beam width X
Definition: BeamSpot.h:82
void setBeamWidthYError(double val)
set beam width Y error
float alpha
Definition: AMPTWrapper.h:105
LuminosityBlockNumber_t luminosityBlock() const
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
void setCovariance(int i, int j, double val)
set i,j element of the full covariance matrix 7x7
MonitorElement * bookFloat(TString const &name, FUNC onbooking=NOOP())
Definition: DQMStore.h:80
std::map< int, size_t > mapLSPVStoreSize
void setStartTimeStamp(cond::Time_t val)
MonitorElement * h_z0
std::vector< MonitorElement * > hs
double BeamWidthYError() const
error on beam width Y, assume error in X = Y
Definition: BeamSpot.h:101
const double phiMax_
MonitorElement * h_nTrk_lumi
void setEmittanceY(double val)
set emittance
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:36
MonitorElement * h_sigmaY0
const double vxMax_
void dqmBeginRun(edm::Run const &, edm::EventSetup const &) override
void FitAndFill(const edm::LuminosityBlock &lumiSeg, int &, int &, int &)
Run const & getRun() const
MonitorElement * cutFlowTable
virtual void setOption(const char *option)
MonitorElement * h_vy_dz
const double phiMin_
std::string getGMTstring(const std::time_t &)
const double dxMin_
void dqmEndRun(const edm::Run &r, const edm::EventSetup &c) override
Hists
Definition: BeamMonitor.cc:177
std::map< int, std::time_t > mapBeginPVTime
void setBetaStar(double val)
set beta star
unsigned int nthBSTrk_
FakeBeamMonitor(const edm::ParameterSet &)
bool testScroll(std::time_t &, std::time_t &)
std::string endTime() const
std::map< int, std::size_t > mapLSBSTrkSize
void setEndTimeStamp(cond::Time_t val)
math::XYZPoint Point
point in the space
Definition: BeamSpot.h:27
MonitorElement * reportSummary
MonitorElement * h_nVtx_lumi_all
Float_t summaryContent_[3]
Log< level::Error, false > LogError
std::time_t refBStime[2]
std::string startTime() const
assert(be >=bs)
std::map< int, std::vector< int > > mapNPV
const double vxMin_
void beginLuminosityBlock(const edm::LuminosityBlock &lumiSeg, const edm::EventSetup &context) override
void setType(int type)
set beam type
MonitorElement * h_PVz[2]
void setEndTime(std::string val)
MonitorElement * h_trkPt
unsigned int minNrVertices_
T getUntrackedParameter(std::string const &, T const &) const
edm::Service< cond::service::OnlineDBOutputService > onlineDbService_
void Fill(long long x)
virtual void Reset()
Remove all data from the ME, keept the empty histogram with all its settings.
DQM_DEPRECATED void ShiftFillLast(double y, double ye=0., int32_t xscale=1)
char const * label
void setEmittanceX(double val)
set emittance
int iEvent
Definition: GenABIO.cc:224
RunNumber_t run() const
Definition: RunBase.h:40
EchoedLogStream< edm::LogError > logError()
Definition: Logger.cc:165
std::time_t refPVtime[2]
MonitorElement * h_nVtx
MonitorElement * h_trkVz
MonitorElement * bookProfile(TString const &name, TString const &title, int nchX, double lowX, double highX, int, double lowY, double highY, char const *option="s", FUNC onbooking=NOOP())
Definition: DQMStore.h:399
cond::persistency::Logger & logger()
T sqrt(T t)
Definition: SSEVec.h:19
void formatFitTime(char *, const std::time_t &)
const double dzMin_
std::time_t startTime
MonitorElement * h_sigmaZ0
void setdydz(double val)
set dydz slope, crossing angle in XZ
cond::Time_t endTimeStamp() const
std::string monitorName_
MonitorElement * h_x0
double BeamWidthY() const
beam width Y
Definition: BeamSpot.h:84
std::map< int, std::vector< float > > mapPVy
std::map< int, std::vector< float > > mapPVz
void bookHistograms(DQMStore::IBooker &i, const edm::Run &r, const edm::EventSetup &c) override
MonitorElement * h_d0_phi0
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
cond::Time_t writeIOVForNextLumisection(const PayloadType &payload, const std::string &recordName)
virtual 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)
const double dxMax_
unsigned long long TimeValue_t
Definition: Timestamp.h:21
std::map< int, std::vector< float > > mapPVx
virtual TProfile * getTProfile()
void setdxdz(double val)
set dxdz slope, crossing angle
ii
Definition: cuy.py:589
std::map< int, std::time_t > mapBeginBSTime
MonitorElement * h_sigmaX0
double BeamWidthXError() const
error on beam width X, assume error in X = Y
Definition: BeamSpot.h:99
edm::TimeValue_t ftimestamp
Log< level::Info, false > LogInfo
std::map< int, int > mapBeginPVLS
cond::Time_t startTimeStamp() const
void scrollTH1(TH1 *, std::time_t)
~FakeBeamMonitor() override
virtual void setBinContent(int binx, double content)
set content of bin (1-D)
LuminosityBlockID id() const
TimeValue_t value() const
Definition: Timestamp.h:38
Timestamp const & beginTime() const
void setBeamWidthXError(double val)
set beam width X error
Timestamp const & endTime() const
MonitorElement * h_trk_z0
std::time_t refTime
void setSigmaZ(double val)
set sigma Z, RMS bunch length
MonitorElement * book2D(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, FUNC onbooking=NOOP())
Definition: DQMStore.h:212
MonitorElement * reportSummaryContents[3]
double b
Definition: hdecay.h:118
MonitorElement * h_nVtx_lumi
MonitorElement * h_vx_vy
MonitorElement * h_vx_dz
std::map< int, TH1F > mapLSCF
const double dzMax_
Timestamp const & beginTime() const
Definition: RunBase.h:41
void endLuminosityBlock(const edm::LuminosityBlock &lumiSeg, const edm::EventSetup &c) override
MonitorElement * h_PVy[2]
std::string recordName_
MonitorElement * h_y0
HLT enums.
MonitorElement * h_PVxz
reco::BeamSpot preBS
MonitorElement * h_nVtx_st
void setStartTime(std::string val)
void setPosition(double x, double y, double z)
set XYZ position
void setBeamWidthX(double val)
set average transverse beam width X
std::time_t tmpTime
void setCreationTime(cond::Time_t val)
std::map< int, int > mapBeginBSLS
void analyze(const edm::Event &e, const edm::EventSetup &c) override
MonitorElement * reportSummaryMap
bool isAvailable() const
Definition: Service.h:40
MonitorElement * h_PVyz
MonitorElement * h_PVx[2]
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:98
EchoedLogStream< edm::LogInfo > logInfo()
Definition: Logger.cc:157
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
void end(int retCode)
Definition: Logger.cc:80
LuminosityBlockNumber_t luminosityBlock() const
unsigned int min_Ntrks_
static constexpr int buffTime
void setBeamWidthY(double val)
set average transverse beam width Y
MonitorElement * fitResults
Definition: Run.h:45
virtual void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)