CMS 3D CMS Logo

ESPedestalClient.cc
Go to the documentation of this file.
2 
5 
6 #include <fstream>
7 #include <iostream>
8 #include <memory>
9 #include <string>
10 
11 using namespace std;
12 
14  : ESClient(ps),
15  fitPedestal_(ps.getUntrackedParameter<bool>("fitPedestal")),
16  fg_(new TF1("fg", "gaus")),
17  senZ_(),
18  senP_(),
19  senX_(),
20  senY_() {
21  for (int i = 0; i < 2; i++)
22  for (int j = 0; j < 2; j++)
23  for (int k = 0; k < 40; k++)
24  for (int m = 0; m < 40; m++) {
25  hPed_[i][j][k][m] = nullptr;
26  hTotN_[i][j][k][m] = nullptr;
27  }
28 
29  std::string lutPath(ps.getUntrackedParameter<edm::FileInPath>("LookupTable").fullPath());
30 
31  // read in look-up table
32  int nLines, iz, ip, ix, iy, fed, kchip, pace, bundle, fiber, optorx;
33  ifstream file(lutPath);
34 
35  if (file.is_open()) {
36  file >> nLines;
37 
38  for (int i = 0; i < nLines; ++i) {
39  file >> iz >> ip >> ix >> iy >> fed >> kchip >> pace >> bundle >> fiber >> optorx;
40 
41  senZ_.push_back(iz);
42  senP_.push_back(ip);
43  senX_.push_back(ix);
44  senY_.push_back(iy);
45  }
46 
47  file.close();
48  } else {
49  cout << "ESPedestalClient : Look up table file can not be found in " << lutPath << endl;
50  }
51 }
52 
54 
56  if (debug_)
57  cout << "ESPedestalClient: endJob" << endl;
58 
59  // Preform pedestal fit
60  char hname[300];
61  int iz = 0;
62  if (fitPedestal_) {
63  if (verbose_)
64  cout << "ESPedestalClient: Fit Pedestal" << endl;
65 
66  for (unsigned i = 0; i < senZ_.size(); ++i) {
67  iz = (senZ_[i] == 1) ? 0 : 1;
68 
69  for (int is = 0; is < 32; ++is) {
70  string dirname = prefixME_ + "/ESPedestalTask/";
71  sprintf(hname, "ADC Z %d P %d X %d Y %d Str %d", senZ_[i], senP_[i], senX_[i], senY_[i], is + 1);
72  MonitorElement *meFit = _igetter.get(dirname + hname);
73 
74  if (meFit == nullptr)
75  continue;
76  TH1F *rootHisto = meFit->getTH1F();
77 
78  rootHisto->Fit(fg_, "Q", "", 500, 1800);
79  rootHisto->Fit(fg_,
80  "RQ",
81  "",
82  fg_->GetParameter(1) - 2. * fg_->GetParameter(2),
83  fg_->GetParameter(1) + 2. * fg_->GetParameter(2));
84  hPed_[iz][senP_[i] - 1][senX_[i] - 1][senY_[i] - 1]->setBinContent(is + 1, (int)(fg_->GetParameter(1) + 0.5));
85  hTotN_[iz][senP_[i] - 1][senX_[i] - 1][senY_[i] - 1]->setBinContent(is + 1, fg_->GetParameter(2));
86  }
87  }
88 
89  } else {
90  if (verbose_)
91  cout << "ESPedestalClient: Use Histogram Mean" << endl;
92 
93  for (unsigned i = 0; i < senZ_.size(); ++i) {
94  iz = (senZ_[i] == 1) ? 0 : 1;
95 
96  for (int is = 0; is < 32; ++is) {
97  string dirname = prefixME_ + "/ESPedestalTask/";
98  sprintf(hname, "ADC Z %d P %d X %d Y %d Str %d", senZ_[i], senP_[i], senX_[i], senY_[i], is + 1);
99  MonitorElement *meMean = _igetter.get(dirname + hname);
100 
101  if (meMean == nullptr)
102  continue;
103  TH1F *rootHisto = meMean->getTH1F();
104 
105  hPed_[iz][senP_[i] - 1][senX_[i] - 1][senY_[i] - 1]->setBinContent(is + 1, (int)(rootHisto->GetMean() + 0.5));
106  hTotN_[iz][senP_[i] - 1][senX_[i] - 1][senY_[i] - 1]->setBinContent(is + 1, rootHisto->GetRMS());
107  }
108  }
109  }
110 }
111 
113  // define histograms
114  _ibooker.setCurrentFolder(prefixME_ + "/ESPedestalClient");
115 
116  char hname[300];
117  for (unsigned i = 0; i < senZ_.size(); ++i) {
118  int iz = (senZ_[i] == 1) ? 0 : 1;
119 
120  sprintf(hname, "Ped Z %d P %d X %d Y %d", senZ_[i], senP_[i], senX_[i], senY_[i]);
121  hPed_[iz][senP_[i] - 1][senX_[i] - 1][senY_[i] - 1] = _ibooker.book1D(hname, hname, 32, 0, 32);
122 
123  sprintf(hname, "Total Noise Z %d P %d X %d Y %d", senZ_[i], senP_[i], senX_[i], senY_[i]);
124  hTotN_[iz][senP_[i] - 1][senX_[i] - 1][senY_[i] - 1] = _ibooker.book1D(hname, hname, 32, 0, 32);
125  }
126 }
std::vector< int > senP_
std::string fullPath() const
Definition: FileInPath.cc:161
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
MonitorElement * hTotN_[2][2][40][40]
~ESPedestalClient() override
std::vector< int > senX_
T getUntrackedParameter(std::string const &, T const &) const
std::string prefixME_
Definition: ESClient.h:32
bool debug_
Definition: ESClient.h:35
void endJobAnalyze(DQMStore::IGetter &) override
std::vector< int > senZ_
std::vector< int > senY_
virtual void setBinContent(int binx, double content)
set content of bin (1-D)
bool verbose_
Definition: ESClient.h:34
virtual TH1F * getTH1F() const
virtual MonitorElement * get(std::string const &fullpath) const
Definition: DQMStore.cc:673
void book(DQMStore::IBooker &) override
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:98
ESPedestalClient(const edm::ParameterSet &)
MonitorElement * hPed_[2][2][40][40]