CMS 3D CMS Logo

HcalSimHitsClient.cc
Go to the documentation of this file.
3 
9 
11 
13  dirName_ = iConfig.getParameter<std::string>("DQMDirName");
14  verbose_ = iConfig.getUntrackedParameter<bool>("Verbosity", false);
15  tok_HRNDC_ = esConsumes<HcalDDDRecConstants, HcalRecNumberingRecord, edm::Transition::BeginRun>();
16 }
17 
19 
21  const auto &pHRNDC = c.getData(tok_HRNDC_);
22  hcons = &pHRNDC;
27 
28  edm::LogInfo("HitsValidationHcal") << " Maximum Depths HB:" << maxDepthHB_ << " HE:" << maxDepthHE_
29  << " HO:" << maxDepthHO_ << " HF:" << maxDepthHF_;
30 }
31 
33 
36 
37  if (verbose_)
38  edm::LogInfo("HitsValidationHcal") << "runClient";
39 
40  std::vector<MonitorElement *> hcalMEs;
41 
42  std::vector<std::string> fullPathHLTFolders = ig.getSubdirs();
43  for (unsigned int i = 0; i < fullPathHLTFolders.size(); i++) {
44  if (verbose_)
45  edm::LogInfo("HitsValidationHcal") << "fullPath: " << fullPathHLTFolders[i];
46  ig.setCurrentFolder(fullPathHLTFolders[i]);
47 
48  std::vector<std::string> fullSubPathHLTFolders = ig.getSubdirs();
49  for (unsigned int j = 0; j < fullSubPathHLTFolders.size(); j++) {
50  if (verbose_)
51  edm::LogInfo("HitsValidationHcal") << "fullSub: " << fullSubPathHLTFolders[j];
52 
53  if (strcmp(fullSubPathHLTFolders[j].c_str(), "HcalHitsV/SimHitsValidationHcal") == 0) {
54  hcalMEs = ig.getContents(fullSubPathHLTFolders[j]);
55  if (verbose_)
56  edm::LogInfo("HitsValidationHcal") << "hltMES size : " << hcalMEs.size();
57  if (!SimHitsEndjob(hcalMEs))
58  edm::LogWarning("HitsValidationHcal") << "Error in SimhitEndjob!";
59  }
60  }
61  }
62 }
63 
64 // called after entering the directory
65 // hcalMEs are within that directory
66 int HcalSimHitsClient::SimHitsEndjob(const std::vector<MonitorElement *> &hcalMEs) {
67  std::vector<std::string> divisions = getHistogramTypes();
68  MonitorElement *Occupancy_map[nTime][divisions.size()];
69  MonitorElement *Energy[nType1], *Time_weighteden[nType1];
70  MonitorElement *HitEnergyvsieta[divisions.size()], *HitTimevsieta[divisions.size()];
71 
72  std::string time[nTime] = {"25", "50", "100", "250"};
73  std::string detdivision[nType1] = {"HB", "HE", "HF", "HO"};
74  char name[40], name1[40], name2[40], name3[40], name4[40];
75 
76  for (int k = 0; k < nType1; k++) {
77  Energy[k] = nullptr;
78  Time_weighteden[k] = nullptr;
79  for (unsigned int ih = 0; ih < hcalMEs.size(); ih++) {
80  sprintf(name1, "Energy_%s", detdivision[k].c_str());
81  sprintf(name2, "Time_Enweighted_%s", detdivision[k].c_str());
82  if (strcmp(hcalMEs[ih]->getName().c_str(), name1) == 0) {
83  Energy[k] = hcalMEs[ih];
84  }
85  if (strcmp(hcalMEs[ih]->getName().c_str(), name2) == 0) {
86  Time_weighteden[k] = hcalMEs[ih];
87  }
88  }
89  }
90 
91  for (int i = 0; i < nTime; i++) {
92  for (unsigned int j = 0; j < divisions.size(); j++) {
93  for (unsigned int ih = 0; ih < hcalMEs.size(); ih++) {
94  sprintf(name, "HcalHitE%s%s", time[i].c_str(), divisions[j].c_str());
95  if (strcmp(hcalMEs[ih]->getName().c_str(), name) == 0) {
96  Occupancy_map[i][j] = hcalMEs[ih];
97  }
98  }
99  }
100  }
101 
102  for (unsigned int k = 0; k < divisions.size(); k++) {
103  HitEnergyvsieta[k] = nullptr;
104  HitTimevsieta[k] = nullptr;
105  for (unsigned int ih = 0; ih < hcalMEs.size(); ih++) {
106  sprintf(name3, "HcalHitEta%s", divisions[k].c_str());
107  sprintf(name4, "HcalHitTimeAEta%s", divisions[k].c_str());
108  if (strcmp(hcalMEs[ih]->getName().c_str(), name3) == 0) {
109  HitEnergyvsieta[k] = hcalMEs[ih];
110  }
111  if (strcmp(hcalMEs[ih]->getName().c_str(), name4) == 0) {
112  HitTimevsieta[k] = hcalMEs[ih];
113  }
114  }
115  }
116 
117  // mean energy
118 
119  double nevent = Energy[0]->getEntries();
120  if (verbose_)
121  edm::LogInfo("HitsValidationHcal") << "nevent : " << nevent;
122 
123  float cont[nTime][divisions.size()];
124  float en[nType1], tme[nType1];
125  float hitenergy[divisions.size()], hittime[divisions.size()];
126  float fev = float(nevent);
127 
128  for (int dettype = 0; dettype < nType1; dettype++) {
129  int nx1 = Energy[dettype]->getNbinsX();
130  for (int i = 0; i <= nx1; i++) {
131  en[dettype] = Energy[dettype]->getBinContent(i) / fev;
132  Energy[dettype]->setBinContent(i, en[dettype]);
133  }
134  int nx2 = Time_weighteden[dettype]->getNbinsX();
135  for (int i = 0; i <= nx2; i++) {
136  tme[dettype] = Time_weighteden[dettype]->getBinContent(i) / fev;
137  Time_weighteden[dettype]->setBinContent(i, tme[dettype]);
138  }
139  }
140 
141  for (unsigned int dettype = 0; dettype < divisions.size(); dettype++) {
142  int nx1 = HitEnergyvsieta[dettype]->getNbinsX();
143  for (int i = 0; i <= nx1; i++) {
144  hitenergy[dettype] = HitEnergyvsieta[dettype]->getBinContent(i) / fev;
145  HitEnergyvsieta[dettype]->setBinContent(i, hitenergy[dettype]);
146  }
147  int nx2 = HitTimevsieta[dettype]->getNbinsX();
148  for (int i = 0; i <= nx2; i++) {
149  hittime[dettype] = HitTimevsieta[dettype]->getBinContent(i) / fev;
150  HitTimevsieta[dettype]->setBinContent(i, hittime[dettype]);
151  }
152  }
153 
154  for (int itime = 0; itime < nTime; itime++) {
155  for (unsigned int det = 0; det < divisions.size(); det++) {
156  int ny = Occupancy_map[itime][det]->getNbinsY();
157  int nx = Occupancy_map[itime][det]->getNbinsX();
158  for (int i = 1; i < nx + 1; i++) {
159  for (int j = 1; j < ny + 1; j++) {
160  cont[itime][det] = Occupancy_map[itime][det]->getBinContent(i, j) / fev;
161  Occupancy_map[itime][det]->setBinContent(i, j, cont[itime][det]);
162  }
163  }
164  }
165  }
166 
167  return 1;
168 }
169 
170 std::vector<std::string> HcalSimHitsClient::getHistogramTypes() {
172  if (verbose_)
173  edm::LogInfo("HitsValidationHcal") << "Max depth 1st step:: " << maxDepth;
175  if (verbose_)
176  edm::LogInfo("HitsValidationHcal") << "Max depth 2nd step:: " << maxDepth;
178  if (verbose_)
179  edm::LogInfo("HitsValidationHcal") << "Max depth 3rd step:: " << maxDepth;
180  std::vector<std::string> divisions;
181  char name1[20];
182 
183  // first overall Hcal
184  for (int depth = 0; depth < maxDepth; ++depth) {
185  sprintf(name1, "HC%d", depth);
186  divisions.push_back(std::string(name1));
187  }
188  // HB
189  for (int depth = 0; depth < maxDepthHB_; ++depth) {
190  sprintf(name1, "HB%d", depth);
191  divisions.push_back(std::string(name1));
192  }
193  // HE
194  for (int depth = 0; depth < maxDepthHE_; ++depth) {
195  sprintf(name1, "HE%d+z", depth);
196  divisions.push_back(std::string(name1));
197  sprintf(name1, "HE%d-z", depth);
198  divisions.push_back(std::string(name1));
199  }
200  // HO
201  {
202  int depth = maxDepthHO_;
203  sprintf(name1, "HO%d", depth);
204  divisions.push_back(std::string(name1));
205  }
206  // HF (first absorber, then different types of abnormal hits)
207  std::string hfty1[4] = {"A", "W", "B", "J"};
208  for (int k = 0; k < 4; ++k) {
209  for (int depth = 0; depth < maxDepthHF_; ++depth) {
210  sprintf(name1, "HF%s%d+z", hfty1[k].c_str(), depth);
211  divisions.push_back(std::string(name1));
212  sprintf(name1, "HF%s%d-z", hfty1[k].c_str(), depth);
213  divisions.push_back(std::string(name1));
214  }
215  }
216  return divisions;
217 }
218 
nevent
int nevent
Definition: AMPTWrapper.h:84
mps_fire.i
i
Definition: mps_fire.py:428
HcalSimHitsClient.h
dqm::implementation::IGetter::getContents
virtual std::vector< dqm::harvesting::MonitorElement * > getContents(std::string const &path) const
Definition: DQMStore.cc:593
dqmMemoryStats.float
float
Definition: dqmMemoryStats.py:127
EcalCondDBWriter_cfi.Energy
Energy
Definition: EcalCondDBWriter_cfi.py:152
ESHandle.h
edm::Run
Definition: Run.h:45
dqm::implementation::NavigatorBase::setCurrentFolder
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
generateEDF.cont
cont
load Luminosity info ##
Definition: generateEDF.py:629
DQMStore.h
dqm::implementation::IGetter::getSubdirs
virtual DQM_DEPRECATED std::vector< std::string > getSubdirs() const
Definition: DQMStore.cc:678
dqm::legacy::MonitorElement
Definition: MonitorElement.h:461
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
HcalSimHitsClient::nType1
static const int nType1
Definition: HcalSimHitsClient.h:43
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
HcalSimHitsClient::getHistogramTypes
std::vector< std::string > getHistogramTypes()
Definition: HcalSimHitsClient.cc:170
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
HcalSimHitsClient
Definition: HcalSimHitsClient.h:34
HLT_FULL_cff.maxDepth
maxDepth
Definition: HLT_FULL_cff.py:8669
HcalSimHitsClient::dirName_
std::string dirName_
Definition: HcalSimHitsClient.h:39
MakerMacros.h
HcalSimHitsClient::tok_HRNDC_
edm::ESGetToken< HcalDDDRecConstants, HcalRecNumberingRecord > tok_HRNDC_
Definition: HcalSimHitsClient.h:41
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
HcalSimHitsClient::maxDepthHO_
int maxDepthHO_
Definition: HcalSimHitsClient.h:45
HcalSimHitsClient::SimHitsEndjob
int SimHitsEndjob(const std::vector< MonitorElement * > &hcalMEs)
Definition: HcalSimHitsClient.cc:66
Service.h
getName
TString getName(TString structure, int layer, TString geometry)
Definition: DMRtrends.cc:235
HcalSimHitsClient::~HcalSimHitsClient
~HcalSimHitsClient() override
Definition: HcalSimHitsClient.cc:18
Run.h
dqmdumpme.k
k
Definition: dqmdumpme.py:60
LEDCalibrationChannels.depth
depth
Definition: LEDCalibrationChannels.py:65
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
HcalSimHitsClient::runClient_
virtual void runClient_(DQMStore::IBooker &, DQMStore::IGetter &)
Definition: HcalSimHitsClient.cc:34
edm::ParameterSet
Definition: ParameterSet.h:47
dqm::impl::MonitorElement::getNbinsY
virtual int getNbinsY() const
get # of bins in Y-axis
Definition: MonitorElement.cc:580
HcalSimHitsClient::maxDepthHB_
int maxDepthHB_
Definition: HcalSimHitsClient.h:45
Event.h
HcalSimHitsClient::dqmEndJob
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
Definition: HcalSimHitsClient.cc:32
SiStripPI::max
Definition: SiStripPayloadInspectorHelper.h:169
HcalSimHitsClient::nTime
static const int nTime
Definition: HcalSimHitsClient.h:42
HcalSimHitsClient::maxDepthHE_
int maxDepthHE_
Definition: HcalSimHitsClient.h:45
HcalSimHitsClient::hcons
const HcalDDDRecConstants * hcons
Definition: HcalSimHitsClient.h:44
cuy.ib
ib
Definition: cuy.py:662
edm::EventSetup
Definition: EventSetup.h:57
HltBtagPostValidation_cff.c
c
Definition: HltBtagPostValidation_cff.py:31
dqm::impl::MonitorElement::setBinContent
virtual void setBinContent(int binx, double content)
set content of bin (1-D)
Definition: MonitorElement.cc:691
writedatasetfile.run
run
Definition: writedatasetfile.py:27
dqm::implementation::IGetter
Definition: DQMStore.h:484
dqm::impl::MonitorElement::getNbinsX
virtual int getNbinsX() const
get # of bins in X-axis
Definition: MonitorElement.cc:574
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
dqm::implementation::IBooker
Definition: DQMStore.h:43
HcalSimHitsClient::verbose_
bool verbose_
Definition: HcalSimHitsClient.h:40
HcalDDDRecConstants::getMaxDepth
int getMaxDepth(const int &type) const
Definition: HcalDDDRecConstants.h:88
ParameterSet.h
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
ntuplemaker.time
time
Definition: ntuplemaker.py:310
HcalSimHitsClient::maxDepthHF_
int maxDepthHF_
Definition: HcalSimHitsClient.h:45
hfnoseParametersInitialization_cfi.name2
name2
Definition: hfnoseParametersInitialization_cfi.py:8
dqm::impl::MonitorElement::getBinContent
virtual double getBinContent(int binx) const
get content of bin (1-D)
Definition: MonitorElement.cc:592
HcalSimHitsClient::HcalSimHitsClient
HcalSimHitsClient(const edm::ParameterSet &)
Definition: HcalSimHitsClient.cc:12
HcalSimHitsClient::beginRun
void beginRun(edm::Run const &run, edm::EventSetup const &c) override
Definition: HcalSimHitsClient.cc:20