CMS 3D CMS Logo

CaloTowersDQMClient.cc
Go to the documentation of this file.
3 
8 
11 
13  outputFile_ = iConfig.getUntrackedParameter<std::string>("outputFile", "myfile.root");
14  debug_ = false;
15  verbose_ = false;
16  dirName_ = iConfig.getParameter<std::string>("DQMDirName");
17 }
18 
20 
22 
24 
25 // called after entering the CaloTowersD/CaloTowersTask directory
26 // hcalMEs are within that directory
27 int CaloTowersDQMClient::CaloTowersEndjob(const std::vector<MonitorElement *> &hcalMEs) {
28  int useAllHistos = 0;
29  MonitorElement *Ntowers_vs_ieta = nullptr;
30  MonitorElement *mapEnergy_N = nullptr, *mapEnergy_E = nullptr, *mapEnergy_H = nullptr, *mapEnergy_EH = nullptr;
31  MonitorElement *occupancy_map = nullptr, *occupancy_vs_ieta = nullptr;
32  for (unsigned int ih = 0; ih < hcalMEs.size(); ih++) {
33  if (strcmp(hcalMEs[ih]->getName().c_str(), "Ntowers_per_event_vs_ieta") == 0) {
34  Ntowers_vs_ieta = hcalMEs[ih];
35  }
36  if (strcmp(hcalMEs[ih]->getName().c_str(), "CaloTowersTask_map_Nentries") == 0) {
37  mapEnergy_N = hcalMEs[ih];
38  }
39  if (strcmp(hcalMEs[ih]->getName().c_str(), "CaloTowersTask_map_energy_H") == 0) {
40  useAllHistos++;
41  mapEnergy_H = hcalMEs[ih];
42  }
43  if (strcmp(hcalMEs[ih]->getName().c_str(), "CaloTowersTask_map_energy_E") == 0) {
44  useAllHistos++;
45  mapEnergy_E = hcalMEs[ih];
46  }
47  if (strcmp(hcalMEs[ih]->getName().c_str(), "CaloTowersTask_map_energy_EH") == 0) {
48  useAllHistos++;
49  mapEnergy_EH = hcalMEs[ih];
50  }
51  if (strcmp(hcalMEs[ih]->getName().c_str(), "CaloTowersTask_map_occupancy") == 0) {
52  occupancy_map = hcalMEs[ih];
53  }
54  if (strcmp(hcalMEs[ih]->getName().c_str(), "CaloTowersTask_occupancy_vs_ieta") == 0) {
55  occupancy_vs_ieta = hcalMEs[ih];
56  }
57  }
58  if (useAllHistos != 0 && useAllHistos != 3)
59  return 0;
60 
61  double nevent = mapEnergy_N->getEntries();
62  if (verbose_)
63  std::cout << "nevent : " << nevent << std::endl;
64 
65  // mean number of towers per ieta
66  int nx = Ntowers_vs_ieta->getNbinsX();
67  float cont;
68  float conte;
69  float fev = float(nevent);
70 
71  for (int i = 1; i <= nx; i++) {
72  cont = Ntowers_vs_ieta->getBinContent(i) / fev;
73  conte = pow(Ntowers_vs_ieta->getBinContent(i), 0.5) / fev;
74  Ntowers_vs_ieta->setBinContent(i, cont);
75  Ntowers_vs_ieta->setBinError(i, conte);
76  }
77 
78  // mean energies & occupancies evaluation
79 
80  nx = mapEnergy_N->getNbinsX();
81  int ny = mapEnergy_N->getNbinsY();
82  float cnorm;
83  float cnorme;
84  float phi_factor;
85 
86  for (int i = 1; i <= nx; i++) {
87  float sumphi = 0.;
88 
89  for (int j = 1; j <= ny; j++) {
90  // Emean
91  cnorm = mapEnergy_N->getBinContent(i, j);
92  // Phi histos are not used in the macros
93  if (cnorm > 0.000001 && useAllHistos) {
94  cont = mapEnergy_E->getBinContent(i, j) / cnorm;
95  conte = mapEnergy_E->getBinError(i, j) / cnorm;
96  mapEnergy_E->setBinContent(i, j, cont);
97  mapEnergy_E->setBinError(i, j, conte);
98 
99  cont = mapEnergy_H->getBinContent(i, j) / cnorm;
100  conte = mapEnergy_H->getBinError(i, j) / cnorm;
101  mapEnergy_H->setBinContent(i, j, cont);
102  mapEnergy_H->setBinError(i, j, conte);
103 
104  cont = mapEnergy_EH->getBinContent(i, j) / cnorm;
105  conte = mapEnergy_EH->getBinError(i, j) / cnorm;
106  mapEnergy_EH->setBinContent(i, j, cont);
107  mapEnergy_EH->setBinError(i, j, conte);
108  }
109 
110  // Occupancy (needed for occupancy vs ieta)
111  cont = occupancy_map->getBinContent(i, j);
112  conte = occupancy_map->getBinError(i, j);
113  if (fev > 0. && cnorm > 1.e-30) {
114  occupancy_map->setBinContent(i, j, cont / fev);
115  occupancy_map->setBinError(i, j, conte / fev);
116  }
117 
118  sumphi += cont;
119 
120  } // end of iphy cycle (j)
121 
122  // Occupancy vs ieta histo is drawn
123  // phi-factor evaluation for occupancy_vs_ieta calculation
124  int ieta = i - 43; // should be the same as int ieta =
125  // int(occupancy_vs_ieta->getBinCenter(i));
126 
127  if (ieta >= -20 && ieta <= 20) {
128  phi_factor = 72.;
129  } else {
130  if (ieta >= 40 || ieta <= -40) {
131  phi_factor = 18.;
132  } else
133  phi_factor = 36.;
134  }
135 
136  cnorm = sumphi / phi_factor;
137  cnorme = pow(sumphi, 0.5) / phi_factor;
138  if (fev > 0. && cnorm > 1.e-30) {
139  occupancy_vs_ieta->setBinContent(i, cnorm / fev);
140  occupancy_vs_ieta->setBinError(i, cnorme / fev);
141  }
142 
143  } // end of ieta cycle (i)
144 
145  return 1;
146 }
147 
149  igetter.setCurrentFolder(dirName_);
150  if (verbose_)
151  std::cout << "\nrunClient" << std::endl;
152 
153  std::vector<MonitorElement *> hcalMEs;
154 
155  // Since out folders are fixed to three, we can just go over these three
156  // folders i.e., CaloTowersD/CaloTowersTask, HcalRecHitsD/HcalRecHitTask,
157  // NoiseRatesV/NoiseRatesTask.
158  std::vector<std::string> fullPathHLTFolders = igetter.getSubdirs();
159  for (unsigned int i = 0; i < fullPathHLTFolders.size(); i++) {
160  if (verbose_)
161  std::cout << "\nfullPath: " << fullPathHLTFolders[i] << std::endl;
162  igetter.setCurrentFolder(fullPathHLTFolders[i]);
163 
164  std::vector<std::string> fullSubPathHLTFolders = igetter.getSubdirs();
165  for (unsigned int j = 0; j < fullSubPathHLTFolders.size(); j++) {
166  if (verbose_)
167  std::cout << "fullSub: " << fullSubPathHLTFolders[j] << std::endl;
168 
169  if (strcmp(fullSubPathHLTFolders[j].c_str(), "CaloTowersD/CaloTowersTask") == 0) {
170  hcalMEs = igetter.getContents(fullSubPathHLTFolders[j]);
171  if (verbose_)
172  std::cout << "hltMES size : " << hcalMEs.size() << std::endl;
173  if (!CaloTowersEndjob(hcalMEs))
174  std::cout << "\nError in CaloTowersEndjob!" << std::endl << std::endl;
175  }
176  }
177  }
178 }
179 
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
int CaloTowersEndjob(const std::vector< MonitorElement * > &hcalMEs)
void setBinContent(int binx, double content)
set content of bin (1-D)
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:361
int nevent
Definition: AMPTWrapper.h:74
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
void setBinError(int binx, double error)
set uncertainty on content of bin (1-D)
std::vector< MonitorElement * > getContents(Args &&...args)
Definition: DQMStore.h:192
TString getName(TString structure, int layer, TString geometry)
Definition: DMRtrends.cc:167
double getEntries() const
get # of entries
double getBinError(int binx) const
get uncertainty on content of bin (1-D) - See TH1::GetBinError for details
void beginRun(const edm::Run &run, const edm::EventSetup &c) override
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
int getNbinsY() const
get # of bins in Y-axis
double getBinContent(int binx) const
get content of bin (1-D)
std::vector< std::string > getSubdirs()
Definition: DQMStore.cc:325
void beginJob(void) override
int getNbinsX() const
get # of bins in X-axis
CaloTowersDQMClient(const edm::ParameterSet &)
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:40
Definition: Run.h:45