Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

F pix cluster occupancy #9468

Merged
merged 2 commits into from
Jun 16, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions DQM/SiPixelMonitorCluster/src/SiPixelClusterSource.cc
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ void SiPixelClusterSource::buildStructure(const edm::EventSetup& iSetup){
LogDebug ("PixelDQM") << " ---> Adding Endcap Module " << detId.rawId() << endl;
PixelEndcapName::HalfCylinder side = PixelEndcapName(DetId(id),pTT,isUpgrade).halfCylinder();
int disk = PixelEndcapName(DetId(id),pTT,isUpgrade).diskName();
if (disk>noOfDisks) noOfDisks=disk;
int blade = PixelEndcapName(DetId(id),pTT,isUpgrade).bladeName();
int panel = PixelEndcapName(DetId(id),pTT,isUpgrade).pannelName();
int module = PixelEndcapName(DetId(id),pTT,isUpgrade).plaquetteName();
Expand Down
2 changes: 2 additions & 0 deletions DQM/SiStripMonitorClient/src/SiStripQualityChecker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,8 @@ void SiStripQualityChecker::fillSubDetStatus(DQMStore* dqm_store,
std::string dname = (*ic);
if (dname.find("BadModuleList") != std::string::npos) continue;
std::vector<MonitorElement*> meVec;
if (dname.find("ring") !=std::string::npos) continue;

ybin++;
dqm_store->cd((*ic));
meVec = dqm_store->getContents((*ic));
Expand Down