30 LogVerbatim (
"DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
31 <<
"DTChamberEfficiencyClient: Constructor called";
40 LogVerbatim (
"DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
41 <<
"DTChamberEfficiencyClient: Destructor called";
46 LogVerbatim (
"DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
47 <<
"DTChamberEfficiencyClient: BeginJob";
58 LogVerbatim (
"DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
59 <<
"[DTChamberEfficiencyClient]: Begin of LS transition";
66 LogVerbatim (
"DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
67 <<
"DTChamberEfficiencyClient: beginRun";
79 LogVerbatim (
"DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
80 <<
"[DTChamberEfficiencyClient]: " <<
nevents <<
" events";
86 LogVerbatim (
"DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
87 <<
"DTChamberEfficiencyClient: endluminosityBlock";
93 LogVerbatim (
"DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
94 <<
"DTChamberEfficiencyClient: endRun";
96 globalEffSummary->Reset();
99 for(
int wheel=-2;wheel<=2;wheel++){
100 stringstream wheel_str; wheel_str << wheel;
104 MonitorElement* MECountAll = dbe->get(
"DT/05-ChamberEff/Task/hCountSectVsChamb_All_W" + wheel_str.str());
105 MonitorElement* MECountQual = dbe->get(
"DT/05-ChamberEff/Task/hCountSectVsChamb_Qual_W" + wheel_str.str());
106 MonitorElement* MEExtrap = dbe->get(
"DT/05-ChamberEff/Task/hExtrapSectVsChamb_W" + wheel_str.str());
109 if(!MECountAll)
cout<<
"fucking ME is null"<<endl;
110 if(!(MECountAll->
getTH2F()))
cout<<
"fucking puntator is null!"<<endl;
111 TH2F* hCountAll = MECountAll->
getTH2F();
112 TH2F* hCountQual = MECountQual->
getTH2F();
113 TH2F* hExtrap = MEExtrap->
getTH2F();
117 const int nBinX = summaryHistos[wheel+2][0]->getNbinsX();
118 const int nBinY = summaryHistos[wheel+2][0]->getNbinsY();
120 for(
int j=1;
j<=nBinX;
j++){
121 for(
int k=1;
k<=nBinY;
k++){
122 summaryHistos[wheel+2][0]->setBinContent(
j,
k,0.);
123 summaryHistos[wheel+2][1]->setBinContent(
j,
k,0.);
125 const float numerAll = hCountAll->GetBinContent(
j,
k);
126 const float numerQual = hCountQual->GetBinContent(
j,
k);
127 const float denom = hExtrap->GetBinContent(
j,
k);
130 const float effAll= numerAll/denom;
131 const float eff_error_All =
sqrt((effAll+effAll*effAll)/denom);
133 const float effQual= numerQual/denom;
134 const float eff_error_Qual =
sqrt((effQual+effQual*effQual)/denom);
138 summaryHistos[wheel+2][0]->setBinContent(
j,
k,effAll);
139 summaryHistos[wheel+2][0]->setBinError(
j,
k,eff_error_All);
141 summaryHistos[wheel+2][1]->setBinContent(
j,
k,effQual);
142 summaryHistos[wheel+2][1]->setBinError(
j,
k,eff_error_Qual);
145 globalEffDistr ->
Fill(effAll);
146 EffDistrPerWh[wheel+2] ->
Fill(effAll);
155 for(
int wheel=-2; wheel<=2; wheel++) {
158 if(segmentWheelSummary != 0) {
160 for(
int sector=1; sector<=12; sector++) {
161 float nFailingChambers = 0.;
164 double errorsum = 0.;
173 if(tmpefficiency < 0.2 || tmpvariance == 0){
178 meaneff += tmpefficiency/tmpvariance;
179 errorsum += 1./tmpvariance;
181 LogTrace(
"DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
182 <<
"Wheel: " << wheel <<
" Stat: " <<
station
183 <<
" Sect: " << sector <<
" status: " << meaneff/errorsum << endl;
186 if(sector == 4 || sector == 10) {
187 int whichSector = (sector == 4) ? 13 : 14;
189 const double tmpefficiency = segmentWheelSummary->
getBinContent(whichSector, 4);
190 const double tmpvariance =
pow(segmentWheelSummary->
getBinError(whichSector, 4),2);
192 if(tmpefficiency > 0.2 && tmpvariance != 0) {
193 meaneff += tmpefficiency/tmpvariance;
194 errorsum += 1./tmpvariance;
196 else nFailingChambers++;
200 double eff_result = 0;
201 if(errorsum != 0) eff_result = meaneff/errorsum;
203 if(nFailingChambers != 0) {
204 if(sector != 4 && sector != 10) eff_result = eff_result*(4.-nFailingChambers)/4.;
205 else eff_result = eff_result*(5.-nFailingChambers)/5.;
208 if(eff_result > 0.7) globalEffSummary->Fill(sector,wheel,1.);
209 else if(eff_result < 0.7 && eff_result > 0.5) globalEffSummary->Fill(sector,wheel,0.6);
210 else if(eff_result < 0.5 && eff_result > 0.3) globalEffSummary->Fill(sector,wheel,0.4);
211 else if(eff_result < 0.3 && eff_result > 0.) globalEffSummary->Fill(sector,wheel,0.15);
224 LogVerbatim (
"DTDQM|DTMonitorClient|DTChamberEfficiencyClient")
225 <<
"DTChamberEfficiencyClient: endJob";
232 dbe->setCurrentFolder(
"DT/05-ChamberEff");
233 globalEffSummary = dbe->book2D(
"EfficiencyGlbSummary",
"Efficiency Summary",12,1,13,5,-2,3);
234 globalEffSummary->setAxisTitle(
"sector",1);
235 globalEffSummary->setAxisTitle(
"wheel",2);
237 globalEffDistr = dbe->book1D(
"TotalEfficiency",
"Total efficiency",51,0.,1.02);
238 globalEffDistr -> setAxisTitle(
"Eff",1);
240 for(
int wh=-2; wh<=2; wh++){
241 stringstream wheel; wheel << wh;
242 string histoNameAll =
"EfficiencyMap_All_W" + wheel.str();
243 string histoTitleAll =
"Efficiency map for all segments for wheel " + wheel.str();
245 string histoNameQual =
"EfficiencyMap_Qual_W" + wheel.str();
246 string histoTitleQual =
"Efficiency map for quality segments for wheel " + wheel.str();
248 string histoNameEff =
"Efficiency_W" + wheel.str();
249 string histoTitleEff =
"Segment efficiency, wheel " + wheel.str();
251 dbe->setCurrentFolder(
"DT/05-ChamberEff");
253 summaryHistos[wh+2][0] = dbe->book2D(histoNameAll.c_str(),histoTitleAll.c_str(),14,1.,15.,4,1.,5.);
254 summaryHistos[wh+2][0]->setAxisTitle(
"Sector",1);
255 summaryHistos[wh+2][0]->setBinLabel(1,
"MB1",2);
256 summaryHistos[wh+2][0]->setBinLabel(2,
"MB2",2);
257 summaryHistos[wh+2][0]->setBinLabel(3,
"MB3",2);
258 summaryHistos[wh+2][0]->setBinLabel(4,
"MB4",2);
260 EffDistrPerWh[wh+2] = dbe -> book1D(histoNameEff.c_str(),histoTitleEff.c_str(),51,0.,1.02);
261 EffDistrPerWh[wh+2] -> setAxisTitle(
"Eff",1);
263 dbe->setCurrentFolder(
"DT/05-ChamberEff/HighQual");
265 summaryHistos[wh+2][1] = dbe->book2D(histoNameQual.c_str(),histoTitleQual.c_str(),14,1.,15.,4,1.,5.);
266 summaryHistos[wh+2][1]->setAxisTitle(
"Sector",1);
267 summaryHistos[wh+2][1]->setBinLabel(1,
"MB1",2);
268 summaryHistos[wh+2][1]->setBinLabel(2,
"MB2",2);
269 summaryHistos[wh+2][1]->setBinLabel(3,
"MB3",2);
270 summaryHistos[wh+2][1]->setBinLabel(4,
"MB4",2);
void beginLuminosityBlock(edm::LuminosityBlock const &lumiSeg, edm::EventSetup const &context)
DQM Client Diagnostic.
void beginRun(const edm::Run &run, const edm::EventSetup &setup)
T getUntrackedParameter(std::string const &, T const &) const
void Fill(HcalDetId &id, double val, std::vector< TH2F > &depth)
virtual ~DTChamberEfficiencyClient()
Destructor.
void endRun(edm::Run const &run, edm::EventSetup const &c)
void analyze(const edm::Event &e, const edm::EventSetup &c)
void bookHistos()
book the report summary
double getBinError(int binx) const
get uncertainty on content of bin (1-D) - See TH1::GetBinError for details
double getBinContent(int binx) const
get content of bin (1-D)
void endLuminosityBlock(edm::LuminosityBlock const &lumiSeg, edm::EventSetup const &c)
TH2F * getTH2F(void) const
DTChamberEfficiencyClient(const edm::ParameterSet &ps)
Constructor.
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")
Power< A, B >::type pow(const A &a, const B &b)