12 if ( GEMGeometry_ ==
nullptr)
return ;
13 LogDebug(
"GEMPadDigiValidation")<<
"Geometry is acquired from MuonGeometryRecord\n";
15 LogDebug(
"GEMPadDigiValidation")<<
"ibooker set current folder\n";
17 if ( GEMGeometry_ ==
nullptr)
return ;
18 int npadsGE11 = GEMGeometry_->
regions()[0]->stations()[0]->superChambers()[0]->chambers()[0]->etaPartitions()[0]->npads();
22 if ( GEMGeometry_->
regions()[0]->stations()[1]->superChambers().size() != 0 ) {
23 npadsGE21 = GEMGeometry_->
regions()[0]->stations()[1]->superChambers()[0]->chambers()[0]->etaPartitions()[0]->npads();
26 for(
auto& region : GEMGeometry_->
regions() ){
27 int re = region->region();
30 TString simpleZR_title = TString::Format(
"ZR Occupancy%s; |Z|(cm) ; R(cm)",title_suffix.Data());
31 TString simpleZR_histname = TString::Format(
"pad_simple_zr%s",histname_suffix.Data());
33 auto* simpleZR =
getSimpleZR(ibooker, simpleZR_title, simpleZR_histname);
34 if ( simpleZR !=
nullptr) {
37 for(
auto&
station : region->stations()) {
42 TString dcEta_title = TString::Format(
"Occupancy for detector component %s;;#eta-partition",title_suffix2.Data());
43 TString dcEta_histname = TString::Format(
"pad_dcEta%s",histname_suffix2.Data());
46 if ( dcEta !=
nullptr) {
54 for(
auto& region : GEMGeometry_->
regions() ) {
55 int re = region->region();
56 int region_num = (re+1)/2;
57 for(
auto&
station : region->stations() ) {
59 int station_num = st-1;
60 if ( station_num == 0 ) nPads = npadsGE11;
61 else nPads = npadsGE21;
62 for(
int la = 1 ; la <= 2 ; la++) {
66 theCSCPad_phipad[region_num][station_num][layer_num] = ibooker.
book2D( (
"pad_dg_phipad"+name_prefix).c_str(), (
"Digi occupancy: "+label_prefix+
"; phi [rad]; Pad number").c_str(), 280,-
TMath::Pi(),
TMath::Pi(), nPads/2,0,nPads );
67 theCSCPad[region_num][station_num][layer_num] = ibooker.
book1D( (
"pad_dg"+name_prefix).c_str(), (
"Digi occupancy per pad number: "+label_prefix+
";Pad number; entries").c_str(), nPads,0.5,nPads+0.5);
68 theCSCPad_bx[region_num][station_num][layer_num] = ibooker.
book1D( (
"pad_dg_bx"+name_prefix).c_str(), (
"Bunch crossing: "+label_prefix+
"; bunch crossing ; entries").c_str(), 11,-5.5,5.5);
69 theCSCPad_zr[region_num][station_num][layer_num] =
BookHistZR(ibooker,
"pad_dg",
"Pad Digi",region_num,station_num,layer_num);
70 theCSCPad_xy[region_num][station_num][layer_num] =
BookHistXY(ibooker,
"pad_dg",
"Pad Digi",region_num,station_num,layer_num);
71 TString xy_name = TString::Format(
"pad_dg_xy%s_odd",name_prefix.c_str());
72 TString xy_title = TString::Format(
"Digi XY occupancy %s at odd chambers",label_prefix.c_str());
74 xy_name = TString::Format(
"pad_dg_xy%s_even",name_prefix.c_str());
75 xy_title = TString::Format(
"Digi XY occupancy %s at even chambers",label_prefix.c_str());
76 theCSCPad_xy_ch[ xy_name.Hash()] = ibooker.
book2D(xy_name, xy_title, 360, -360,360, 360, -360, 360);
97 GEMGeometry_ = &*hGeom;
100 edm::LogError(
"GEMPadDigiValidation") <<
"+++ Error : GEM geometry is unavailable on event loop. +++\n";
106 edm::LogError(
"GEMPadDigiValidation") <<
"Cannot get pads by label GEMPadToken.";
114 if ( gdet ==
nullptr) {
115 std::cout<<
"Getting DetId failed. Discard this gem pad hit.Maybe it comes from unmatched geometry."<<std::endl;
121 int re =
id.region();
123 int st =
id.station();
125 Short_t nroll = (Short_t)
id.roll();
130 for (digiItr = (*cItr ).second.first; digiItr != (*cItr ).second.second; ++digiItr)
132 Short_t pad = (Short_t) digiItr->
pad();
133 Short_t bx = (Short_t) digiItr->bx();
138 Float_t g_r = (Float_t) gp.
perp();
139 Float_t g_phi = (Float_t) gp.
phi();
140 Float_t g_x = (Float_t) gp.
x();
141 Float_t g_y = (Float_t) gp.
y();
142 Float_t g_z = (Float_t) gp.
z();
143 edm::LogInfo(
"GEMPadDIGIValidation")<<
"Global x "<<g_x<<
"Global y "<<g_y<<
"\n";
144 edm::LogInfo(
"GEMPadDIGIValidation")<<
"Global pad "<<pad<<
"Global phi "<<g_phi<<std::endl;
145 edm::LogInfo(
"GEMPadDIGIValidation")<<
"Global bx "<<bx<<std::endl;
147 int region_num = (re+1)/2;
148 int station_num = st-1;
149 int layer_num = la-1;
150 int binX = (chamber-1)*2+layer_num;
155 TString simple_zr_histname = TString::Format(
"pad_simple_zr%s",histname_suffix.Data());
159 TString dcEta_histname = TString::Format(
"pad_dcEta%s",histname_suffix.Data());
170 if ( chamber %2 == 0 ) { hname = TString::Format(
"pad_dg_xy%s_even",name_prefix.c_str()); }
171 else { hname = TString::Format(
"pad_dg_xy%s_odd",name_prefix.c_str()); }
MonitorElement * theCSCPad_zr[2][3][2]
T getParameter(std::string const &) const
MonitorElement * theCSCPad[2][3][2]
MonitorElement * theCSCPad_xy[2][3][2]
MonitorElement * BookHistZR(DQMStore::IBooker &, const char *name, const char *label, unsigned int region_num, unsigned int station_num, unsigned int layer_num=99)
std::unordered_map< UInt_t, MonitorElement * > thePad_dcEta
std::unordered_map< UInt_t, MonitorElement * > theCSCPad_xy_ch
edm::EDGetToken InputTagToken_
Geom::Phi< T > phi() const
MonitorElement * getSimpleZR(DQMStore::IBooker &, TString, TString)
MonitorElement * BookHistXY(DQMStore::IBooker &, const char *name, const char *label, unsigned int region_num, unsigned int station_num, unsigned int layer_num=99)
std::string getSuffixTitle(int region, int station, int layer)
const Plane & surface() const
The nominal surface of the GeomDet.
const GEMEtaPartition * etaPartition(GEMDetId id) const
Return a GEMEtaPartition given its id.
const GEMGeometry * initGeometry(const edm::EventSetup &)
std::string getSuffixName(int region, int station, int layer)
GEMPadDigiValidation(const edm::ParameterSet &)
const std::vector< const GEMRegion * > & regions() const
Return a vector of all GEM regions.
MonitorElement * book1D(Args &&...args)
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
MonitorElement * theCSCPad_bx[2][3][2]
void setCurrentFolder(const std::string &fullpath)
MonitorElement * book2D(Args &&...args)
const GeomDet * idToDet(DetId) const override
std::vector< GEMPadDigi >::const_iterator const_iterator
MonitorElement * getDCEta(DQMStore::IBooker &, const GEMStation *, TString, TString)
return(e1-e2)*(e1-e2)+dp *dp
std::unordered_map< UInt_t, MonitorElement * > thePad_simple_zr
void analyze(const edm::Event &e, const edm::EventSetup &) override
MonitorElement * theCSCPad_phipad[2][3][2]