CMS 3D CMS Logo

HGCalRecHitsClient.cc
Go to the documentation of this file.
1 #include <unistd.h>
2 #include <iostream>
3 #include <fstream>
4 #include <vector>
5 
8 
10 
14 
22 
27 
29 
30 private:
31  //member data
34  unsigned int layers_;
35 
36 public:
37  explicit HGCalRecHitsClient(const edm::ParameterSet& );
38  ~HGCalRecHitsClient() override {}
39 
40  void beginRun(const edm::Run& run, const edm::EventSetup& c) override;
41  void dqmEndJob(DQMStore::IBooker &ib, DQMStore::IGetter &ig) override;
42  virtual void runClient_(DQMStore::IBooker &ib, DQMStore::IGetter &ig);
43 
44  int recHitsEndjob(const std::vector<MonitorElement*> &hcalMEs);
45 };
46 
48  nameDetector_(iConfig.getParameter<std::string>("DetectorName")),
49  verbosity_(iConfig.getUntrackedParameter<int>("Verbosity",0)) { }
50 
52  if (nameDetector_ == "HCal") {
54  iSetup.get<HcalRecNumberingRecord>().get( pHRNDC );
55  const HcalDDDRecConstants *hcons = &(*pHRNDC);
56  layers_ = hcons->getMaxDepth(1);
57  } else {
59  iSetup.get<IdealGeometryRecord>().get(nameDetector_, pHGDC);
60  const HGCalDDDConstants & hgcons_ = (*pHGDC);
61  layers_ = hgcons_.layers(true);
62  }
63 }
64 
66  runClient_(ib, ig);
67 }
68 
70 
71  ig.setCurrentFolder("/");
72  if (verbosity_>0) edm::LogVerbatim("HGCalValidation") << "\nrunClient";
73  std::vector<MonitorElement*> hgcalMEs;
74  std::vector<std::string> fullDirPath = ig.getSubdirs();
75 
76  for (unsigned int i=0; i<fullDirPath.size(); i++) {
77  if (verbosity_>0)
78  edm::LogVerbatim("HGCalValidation") << "\nfullPath: "
79  << fullDirPath.at(i);
80  ig.setCurrentFolder(fullDirPath.at(i));
81  std::vector<std::string> fullSubDirPath = ig.getSubdirs();
82 
83  for (unsigned int j=0; j<fullSubDirPath.size(); j++) {
84  if (verbosity_>1)
85  edm::LogVerbatim("HGCalValidation") << "fullSubPath: "
86  << fullSubDirPath.at(j);
87  std::string nameDirectory = "HGCAL/HGCalRecHitsV/"+nameDetector_;
88  if (strcmp(fullSubDirPath.at(j).c_str(), nameDirectory.c_str()) == 0) {
89  hgcalMEs = ig.getContents(fullSubDirPath.at(j));
90  if (verbosity_>1)
91  edm::LogVerbatim("HGCalValidation") << "hgcalMES size : "
92  << hgcalMEs.size();
93  if (!recHitsEndjob(hgcalMEs))
94  edm::LogWarning("HGCalValidation") << "\nError in RecHitsEndjob!";
95  }
96  }
97 
98  }
99 }
100 
101 int HGCalRecHitsClient::recHitsEndjob(const std::vector<MonitorElement*>& hgcalMEs) {
102  std::vector<MonitorElement*> energy_;
103  std::vector<MonitorElement*> EtaPhi_Plus_;
104  std::vector<MonitorElement*> EtaPhi_Minus_;
105  std::vector<MonitorElement*> HitOccupancy_Plus_;
106  std::vector<MonitorElement*> HitOccupancy_Minus_;
107  std::vector<MonitorElement*> MeanHitOccupancy_Plus_;
108  std::vector<MonitorElement*> MeanHitOccupancy_Minus_;
109 
110  std::ostringstream name;
111  double nevent;
112  int nbinsx, nbinsy;
113 
114  for (unsigned int ilayer = 0; ilayer < layers_; ilayer++ ){
115  name.str(""); name << "energy_layer_" << ilayer;
116  for(unsigned int ih=0; ih<hgcalMEs.size(); ih++){
117  if (strcmp(hgcalMEs[ih]->getName().c_str(), name.str().c_str()) == 0){
118  energy_.push_back(hgcalMEs[ih]);
119  }
120  }
121 
122  //normalization
123  nevent = energy_.at(ilayer)->getEntries();
124  nbinsx = energy_.at(ilayer)->getNbinsX();
125  for(int i=1; i <= nbinsx; i++) {
126  double binValue = energy_.at(ilayer)->getBinContent(i)/nevent;
127  energy_.at(ilayer)->setBinContent(i,binValue);
128  }
129 
130  //EtaPhi 2d plots
131  name.str(""); name << "EtaPhi_Plus_" << "layer_" << ilayer;
132  for(unsigned int ih=0; ih<hgcalMEs.size(); ih++){
133  if (strcmp(hgcalMEs[ih]->getName().c_str(), name.str().c_str()) == 0){
134  EtaPhi_Plus_.push_back(hgcalMEs[ih]);
135  }
136  }
137 
138  name.str(""); name << "EtaPhi_Minus_" << "layer_" << ilayer;
139  for(unsigned int ih=0; ih<hgcalMEs.size(); ih++){
140  if (strcmp(hgcalMEs[ih]->getName().c_str(), name.str().c_str()) == 0){
141  EtaPhi_Minus_.push_back(hgcalMEs[ih]);
142  }
143  }
144 
145  //normalization EtaPhi
146  nevent = EtaPhi_Plus_.at(ilayer)->getEntries();
147  nbinsx = EtaPhi_Plus_.at(ilayer)->getNbinsX();
148  nbinsy = EtaPhi_Plus_.at(ilayer)->getNbinsY();
149  for(int i=1; i<= nbinsx; ++i) {
150  for(int j=1; j<= nbinsy; ++j) {
151  double binValue = EtaPhi_Plus_.at(ilayer)->getBinContent(i, j)/nevent;
152  EtaPhi_Plus_.at(ilayer)->setBinContent(i, j, binValue);
153  }
154  }
155 
156  nevent = EtaPhi_Minus_.at(ilayer)->getEntries();
157  nbinsx = EtaPhi_Minus_.at(ilayer)->getNbinsX();
158  nbinsy = EtaPhi_Plus_.at(ilayer)->getNbinsY();
159  for(int i=1; i<= nbinsx; ++i) {
160  for(int j=1; j<= nbinsy; ++j) {
161  double binValue = EtaPhi_Minus_.at(ilayer)->getBinContent(i, j)/nevent;
162  EtaPhi_Minus_.at(ilayer)->setBinContent(i, j, binValue);
163  }
164  }
165 
166  //HitOccupancy
167  name.str(""); name << "HitOccupancy_Plus_layer_" << ilayer;
168  for(unsigned int ih=0; ih<hgcalMEs.size(); ih++){
169  if (strcmp(hgcalMEs[ih]->getName().c_str(), name.str().c_str()) == 0){
170  HitOccupancy_Plus_.push_back(hgcalMEs[ih]);
171  }
172  }
173 
174  name.str(""); name << "HitOccupancy_Minus_layer_" << ilayer;
175  for(unsigned int ih=0; ih<hgcalMEs.size(); ih++){
176  if (strcmp(hgcalMEs[ih]->getName().c_str(), name.str().c_str()) == 0){
177  HitOccupancy_Minus_.push_back(hgcalMEs[ih]);
178  }
179  }
180 
181  //normalization of hit occupancy histos
182  nevent = HitOccupancy_Plus_.at(ilayer)->getEntries();
183  nbinsx = HitOccupancy_Plus_.at(ilayer)->getNbinsX();
184  for(int i=1; i<= nbinsx; ++i) {
185  double binValue = HitOccupancy_Plus_.at(ilayer)->getBinContent(i)/nevent;
186  HitOccupancy_Plus_.at(ilayer)->setBinContent(i, binValue);
187  }
188 
189  nevent = HitOccupancy_Minus_.at(ilayer)->getEntries();
190  nbinsx = HitOccupancy_Minus_.at(ilayer)->getNbinsX();
191  for(int i=1; i<= nbinsx; ++i) {
192  double binValue = HitOccupancy_Minus_.at(ilayer)->getBinContent(i)/nevent;
193  HitOccupancy_Minus_.at(ilayer)->setBinContent(i, binValue);
194  }
195 
196  }//loop over layers
197 
198  name.str(""); name << "SUMOfRecHitOccupancy_Plus";
199  for(unsigned int ih=0; ih<hgcalMEs.size(); ih++){
200  if (strcmp(hgcalMEs[ih]->getName().c_str(), name.str().c_str()) == 0){
201  MeanHitOccupancy_Plus_.push_back(hgcalMEs[ih]);
202  unsigned int indx = MeanHitOccupancy_Plus_.size()-1;
203  for (int ilayer=0; ilayer < (int)layers_; ++ilayer) {
204  double meanVal = HitOccupancy_Plus_.at(ilayer)->getMean();
205  MeanHitOccupancy_Plus_[indx]->setBinContent(ilayer+1, meanVal);
206  }
207  break;
208  }
209  }
210 
211  name.str(""); name << "SUMOfRecHitOccupancy_Plus";
212  for(unsigned int ih=0; ih<hgcalMEs.size(); ih++){
213  if (strcmp(hgcalMEs[ih]->getName().c_str(), name.str().c_str()) == 0){
214  MeanHitOccupancy_Minus_.push_back(hgcalMEs[ih]);
215  unsigned indx = MeanHitOccupancy_Minus_.size()-1;
216  for (int ilayer=0; ilayer < (int)layers_; ++ilayer) {
217  double meanVal = HitOccupancy_Minus_.at(ilayer)->getMean();
218  MeanHitOccupancy_Minus_[indx]->setBinContent(ilayer+1, meanVal);
219  }
220  break;
221  }
222  }
223 
224  return 1;
225 }
226 
228 
int recHitsEndjob(const std::vector< MonitorElement * > &hcalMEs)
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:361
void dqmEndJob(DQMStore::IBooker &ib, DQMStore::IGetter &ig) override
int nevent
Definition: AMPTWrapper.h:74
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
unsigned int layers(bool reco) const
~HGCalRecHitsClient() override
HGCalRecHitsClient(const edm::ParameterSet &)
std::vector< MonitorElement * > getContents(Args &&...args)
Definition: DQMStore.h:192
TString getName(TString structure, int layer, TString geometry)
Definition: DMRtrends.cc:167
int getMaxDepth(const int &type) const
void beginRun(const edm::Run &run, const edm::EventSetup &c) override
virtual void runClient_(DQMStore::IBooker &ib, DQMStore::IGetter &ig)
T get() const
Definition: EventSetup.h:71
std::vector< std::string > getSubdirs()
Definition: DQMStore.cc:325
Definition: Run.h:45
ib
Definition: cuy.py:662