43 edm::LogInfo(
"HGCalValid") <<
"HGCalGeometry :: runClient" << std::endl;
45 std::vector<MonitorElement*> hgcalMEs;
46 std::vector<std::string> fullDirPath = ig.
getSubdirs();
48 for (
unsigned int i=0;
i<fullDirPath.size();
i++) {
50 edm::LogInfo(
"HGCalValid") <<
"HGCalGeometry::fullPath: " 51 << fullDirPath.at(
i) << std::endl;
54 std::vector<std::string> fullSubDirPath = ig.
getSubdirs();
56 for (
unsigned int j=0; j<fullSubDirPath.size(); j++) {
58 edm::LogInfo(
"HGCalValid") <<
"HGCalGeometry:: fullSubPath: " 59 << fullSubDirPath.at(j) << std::endl;
61 if (strcmp(fullSubDirPath.at(j).c_str(),
subDirectory_.c_str()) == 0) {
64 edm::LogInfo(
"HGCalValid") <<
"HGCalGeometry:: hgcalMES size : " 65 << hgcalMEs.size() << std::endl;
76 std::string hist1[4] = {
"TotEdepStep",
"dX",
"dY",
"dZ"};
77 std::string hist2[10]= {
"LayerVsEnStep",
"XG4VsId",
"YG4VsId",
"ZG4VsId",
"dxVsX",
78 "dyVsY",
"dzVsZ",
"dxVsLayer",
"dyVsLayer",
"dzVsLayer"};
79 std::vector<MonitorElement*> hist1_;
80 std::vector<MonitorElement*> hist2_;
83 for (
unsigned int idet=0; idet<3; ++idet) {
85 for (
unsigned int kh=0; kh<4; ++kh) {
86 sprintf(name,
"%s%s", dets[idet].c_str(), hist1[kh].c_str());
87 for (
unsigned int ih=0; ih<hgcalMEs.size(); ih++) {
88 if (strcmp(hgcalMEs[ih]->getName().c_str(), name) == 0) {
89 hist1_.push_back(hgcalMEs[ih]);
90 double nevent = hist1_.back()->getEntries();
91 int nbinsx = hist1_.back()->getNbinsX();
92 for (
int i=1;
i<= nbinsx; ++
i) {
93 double binValue = hist1_.back()->getBinContent(
i)/
nevent;
94 hist1_.back()->setBinContent(
i,binValue);
99 for (
unsigned int kh=0; kh<10; ++kh) {
100 sprintf(name,
"%s%s", dets[idet].c_str(), hist2[kh].c_str());
101 for (
unsigned int ih=0; ih<hgcalMEs.size(); ih++) {
102 if (strcmp(hgcalMEs[ih]->getName().c_str(), name) == 0) {
103 hist2_.push_back(hgcalMEs[ih]);
104 double nevent = hist2_.back()->getEntries();
105 int nbinsx = hist2_.back()->getNbinsX();
106 int nbinsy = hist2_.back()->getNbinsY();
107 for (
int i=1;
i<= nbinsx; ++
i) {
108 for (
int j=1; j<= nbinsy; ++j) {
109 double binValue = hist2_.back()->getBinContent(
i,j)/
nevent;
110 hist2_.back()->setBinContent(
i,j,binValue);
std::vector< MonitorElement * > getContents(Args &&...args)
T getParameter(std::string const &) const
int geometryEndjob(const std::vector< MonitorElement * > &hcalMEs)
#define DEFINE_FWK_MODULE(type)
std::string subDirectory_
void dqmEndJob(DQMStore::IBooker &ib, DQMStore::IGetter &ig)
HGCalGeometryClient(const edm::ParameterSet &)
virtual ~HGCalGeometryClient()
std::vector< std::string > getSubdirs(void)
void setCurrentFolder(const std::string &fullpath)
virtual void beginRun(const edm::Run &run, const edm::EventSetup &c)