test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTChamberEfficiencyClient.cc
Go to the documentation of this file.
1 /*
2  * See header file for a description of this class.
3  *
4  * \author M. Pelliccioni - INFN Torino
5  *
6  * threadsafe version (//-) oct/nov 2014 - WATWanAbdullah ncpp-um-my
7  *
8  */
9 
13 
16 
19 
20 #include <stdio.h>
21 #include <sstream>
22 #include <math.h>
23 
24 using namespace edm;
25 using namespace std;
26 
27 //two words about conventions: "All" histograms are those made for all segments
28 //while "Qual" histograms are those for segments with at least 12 hits
29 
31 {
32 
33  LogVerbatim ("DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
34  << "DTChamberEfficiencyClient: Constructor called";
35 
36  prescaleFactor = pSet.getUntrackedParameter<int>("diagnosticPrescale", 1);
37 
38 }
39 
41 {
42  LogVerbatim ("DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
43  << "DTChamberEfficiencyClient: Destructor called";
44 }
45 
47 
48  // Get the DT Geometry
49  setup.get<MuonGeometryRecord>().get(muonGeom);
50 
51 }
52 
53 
55  edm::LuminosityBlock const & lumiSeg, edm::EventSetup const & setup)
56 {
57  LogVerbatim ("DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
58  << "DTChamberEfficiencyClient: endluminosityBlock";
59 }
60 
62 {
63  LogVerbatim ("DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
64  << "DTChamberEfficiencyClient: endRun";
65 
66  bookHistos(ibooker);
67 
68  // reset the global summary
69  globalEffSummary->Reset();
70 
71  //Loop over the wheels
72  for(int wheel=-2;wheel<=2;wheel++){
73  stringstream wheel_str; wheel_str << wheel;
74 
75  // Get the ME produced by EfficiencyTask Source
76  // All means no selection on segments, Qual means segments with at least 12 hits
77 
78  MonitorElement* MECountAll = igetter.get("DT/05-ChamberEff/Task/hCountSectVsChamb_All_W" + wheel_str.str());
79  MonitorElement* MECountQual = igetter.get("DT/05-ChamberEff/Task/hCountSectVsChamb_Qual_W" + wheel_str.str());
80  MonitorElement* MEExtrap = igetter.get("DT/05-ChamberEff/Task/hExtrapSectVsChamb_W" + wheel_str.str());
81 
82  //get the TH2F
83  if(!MECountAll || !(MECountAll->getTH2F())) {
84  edm::LogWarning("DTChamberEfficiencyClient") << "ME not available" << std::endl;
85  return;
86  }
87 
88  TH2F* hCountAll = MECountAll->getTH2F();
89  TH2F* hCountQual = MECountQual->getTH2F();
90  TH2F* hExtrap = MEExtrap->getTH2F();
91 
92 
93 
94  const int nBinX = summaryHistos[wheel+2][0]->getNbinsX();
95  const int nBinY = summaryHistos[wheel+2][0]->getNbinsY();
96 
97  for(int j=1;j<=nBinX;j++){
98  for(int k=1;k<=nBinY;k++){
99  summaryHistos[wheel+2][0]->setBinContent(j,k,0.);
100  summaryHistos[wheel+2][1]->setBinContent(j,k,0.);
101 
102  const float numerAll = hCountAll->GetBinContent(j,k);
103  const float numerQual = hCountQual->GetBinContent(j,k);
104  const float denom = hExtrap->GetBinContent(j,k);
105 
106  if(denom != 0.){
107  const float effAll= numerAll/denom;
108  const float eff_error_All = sqrt((effAll+effAll*effAll)/denom);
109 
110  const float effQual= numerQual/denom;
111  const float eff_error_Qual = sqrt((effQual+effQual*effQual)/denom);
112 
113  summaryHistos[wheel+2][0]->setBinContent(j,k,effAll);
114  summaryHistos[wheel+2][0]->setBinError(j,k,eff_error_All);
115 
116  summaryHistos[wheel+2][1]->setBinContent(j,k,effQual);
117  summaryHistos[wheel+2][1]->setBinError(j,k,eff_error_Qual);
118 
119  // Fill 1D eff distributions
120  globalEffDistr -> Fill(effAll);
121  EffDistrPerWh[wheel+2] -> Fill(effAll);
122 
123  }
124  }
125  }
126  }
127 
128  // fill the global eff. summary
129  // problems at a granularity smaller than the chamber are ignored
130  for(int wheel=-2; wheel<=2; wheel++) { // loop over wheels
131  // retrieve the chamber efficiency summary
132  MonitorElement * segmentWheelSummary = summaryHistos[wheel+2][0];
133  if(segmentWheelSummary != 0) {
134 
135  for(int sector=1; sector<=12; sector++) { // loop over sectors
136  float nFailingChambers = 0.;
137 
138  double meaneff = 0.;
139  double errorsum = 0.;
140 
141  for(int station = 1; station != 5; ++station) { // loop over stations
142 
143  const double tmpefficiency = segmentWheelSummary->getBinContent(sector, station);
144  const double tmpvariance = pow(segmentWheelSummary->getBinError(sector, station),2);
145 
146  if(tmpefficiency < 0.2 || tmpvariance == 0){
147  nFailingChambers++;
148  continue;
149  }
150 
151  meaneff += tmpefficiency/tmpvariance;
152  errorsum += 1./tmpvariance;
153 
154  LogTrace("DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
155  << "Wheel: " << wheel << " Stat: " << station
156  << " Sect: " << sector << " status: " << meaneff/errorsum << endl;
157  }
158 
159  if(sector == 4 || sector == 10) {
160  int whichSector = (sector == 4) ? 13 : 14;
161 
162  const double tmpefficiency = segmentWheelSummary->getBinContent(whichSector, 4);
163  const double tmpvariance = pow(segmentWheelSummary->getBinError(whichSector, 4),2);
164 
165  if(tmpefficiency > 0.2 && tmpvariance != 0) {
166  meaneff += tmpefficiency/tmpvariance;
167  errorsum += 1./tmpvariance;
168  }
169  else nFailingChambers++;
170 
171  }
172 
173  double eff_result = 0;
174  if(errorsum != 0) eff_result = meaneff/errorsum;
175 
176  if(nFailingChambers != 0) {
177  if(sector != 4 && sector != 10) eff_result = eff_result*(4.-nFailingChambers)/4.;
178  else eff_result = eff_result*(5.-nFailingChambers)/5.;
179  }
180 
181  if(eff_result > 0.7) globalEffSummary->Fill(sector,wheel,1.);
182  else if(eff_result < 0.7 && eff_result > 0.5) globalEffSummary->Fill(sector,wheel,0.6);
183  else if(eff_result < 0.5 && eff_result > 0.3) globalEffSummary->Fill(sector,wheel,0.4);
184  else if(eff_result < 0.3 && eff_result > 0.) globalEffSummary->Fill(sector,wheel,0.15);
185 
186  }
187  }
188  }
189  return;
190 }
191 
193 {
194 
195  ibooker.setCurrentFolder("DT/05-ChamberEff");
196 
197  globalEffSummary = ibooker.book2D("EfficiencyGlbSummary","Efficiency Summary",12,1,13,5,-2,3);
198  globalEffSummary->setAxisTitle("sector",1);
199  globalEffSummary->setAxisTitle("wheel",2);
200 
201  globalEffDistr = ibooker.book1D("TotalEfficiency","Total efficiency",51,0.,1.02);
202  globalEffDistr -> setAxisTitle("Eff",1);
203 
204  for(int wh=-2; wh<=2; wh++){
205  stringstream wheel; wheel << wh;
206  string histoNameAll = "EfficiencyMap_All_W" + wheel.str();
207  string histoTitleAll = "Efficiency map for all segments for wheel " + wheel.str();
208 
209  string histoNameQual = "EfficiencyMap_Qual_W" + wheel.str();
210  string histoTitleQual = "Efficiency map for quality segments for wheel " + wheel.str();
211 
212  string histoNameEff = "Efficiency_W" + wheel.str();
213  string histoTitleEff = "Segment efficiency, wheel " + wheel.str();
214 
215  ibooker.setCurrentFolder("DT/05-ChamberEff");
216 
217  summaryHistos[wh+2][0] = ibooker.book2D(histoNameAll.c_str(),histoTitleAll.c_str(),14,1.,15.,4,1.,5.);
218  summaryHistos[wh+2][0]->setAxisTitle("Sector",1);
219  summaryHistos[wh+2][0]->setBinLabel(1,"MB1",2);
220  summaryHistos[wh+2][0]->setBinLabel(2,"MB2",2);
221  summaryHistos[wh+2][0]->setBinLabel(3,"MB3",2);
222  summaryHistos[wh+2][0]->setBinLabel(4,"MB4",2);
223 
224  EffDistrPerWh[wh+2] = ibooker.book1D(histoNameEff.c_str(),histoTitleEff.c_str(),51,0.,1.02);
225  EffDistrPerWh[wh+2] -> setAxisTitle("Eff",1);
226 
227  ibooker.setCurrentFolder("DT/05-ChamberEff/HighQual");
228 
229  summaryHistos[wh+2][1] = ibooker.book2D(histoNameQual.c_str(),histoTitleQual.c_str(),14,1.,15.,4,1.,5.);
230  summaryHistos[wh+2][1]->setAxisTitle("Sector",1);
231  summaryHistos[wh+2][1]->setBinLabel(1,"MB1",2);
232  summaryHistos[wh+2][1]->setBinLabel(2,"MB2",2);
233  summaryHistos[wh+2][1]->setBinLabel(3,"MB3",2);
234  summaryHistos[wh+2][1]->setBinLabel(4,"MB4",2);
235 
236  }
237 
238  return;
239 }
T getUntrackedParameter(std::string const &, T const &) const
MonitorElement * get(const std::string &path)
Definition: DQMStore.cc:305
void bookHistos()
Definition: Histogram.h:33
void Fill(HcalDetId &id, double val, std::vector< TH2F > &depth)
T sqrt(T t)
Definition: SSEVec.h:18
virtual ~DTChamberEfficiencyClient()
Destructor.
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:115
int j
Definition: DBlmapReader.cc:9
void beginRun(const edm::Run &, const edm::EventSetup &) override
void dqmEndLuminosityBlock(DQMStore::IBooker &, DQMStore::IGetter &, edm::LuminosityBlock const &, edm::EventSetup const &) override
#define LogTrace(id)
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
void bookHistos(DQMStore::IBooker &)
book the report summary
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:277
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:133
double getBinError(int binx) const
get uncertainty on content of bin (1-D) - See TH1::GetBinError for details
const T & get() const
Definition: EventSetup.h:56
double getBinContent(int binx) const
get content of bin (1-D)
TH2F * getTH2F(void) const
DTChamberEfficiencyClient(const edm::ParameterSet &ps)
Constructor.
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:40
Definition: Run.h:42