CMS 3D CMS Logo

EcalPFRecHitThresholds_PayloadInspector.cc
Go to the documentation of this file.
8 // the data format of the condition to be inspected
10 
11 #include "TH2F.h"
12 #include "TCanvas.h"
13 #include "TStyle.h"
14 #include "TLine.h"
15 #include "TLatex.h"
16 
17 #include <memory>
18 #include <sstream>
19 
20 namespace {
21  enum {kEBChannels = 61200, kEEChannels = 14648};
22  enum {MIN_IETA = 1, MIN_IPHI = 1, MAX_IETA = 85, MAX_IPHI = 360, EBhistEtaMax = 171}; // barrel lower and upper bounds on eta and phi
23  enum {IX_MIN = 1, IY_MIN = 1, IX_MAX = 100, IY_MAX = 100, EEhistXMax = 220}; // endcaps lower and upper bounds on x and y
24 
25  /*******************************************************
26 
27  2d histogram of ECAL barrel PFRec Hit Thresholds of 1 IOV
28 
29  *******************************************************/
30 
31  // inherit from one of the predefined plot class: Histogram2D
32  class EcalPFRecHitThresholdsEBMap : public cond::payloadInspector::Histogram2D<EcalPFRecHitThresholds> {
33 
34  public:
35  EcalPFRecHitThresholdsEBMap() : cond::payloadInspector::Histogram2D<EcalPFRecHitThresholds>("ECAL Barrel PFRec Hit Thresholds- map ",
36  "iphi", MAX_IPHI, MIN_IPHI, MAX_IPHI + 1,
37  "ieta", EBhistEtaMax, -MAX_IETA, MAX_IETA + 1) {
38  Base::setSingleIov( true );
39  }
40 
41  // Histogram2D::fill (virtual) needs be overridden - the implementation should use fillWithValue
42  bool fill( const std::vector<std::tuple<cond::Time_t,cond::Hash> >& iovs ) override{
43 
44  for (auto const & iov: iovs) {
45  std::shared_ptr<EcalPFRecHitThresholds> payload = Base::fetchPayload( std::get<1>(iov) );
46  if( payload.get() ){
47  // looping over the EB channels, via the dense-index, mapped into EBDetId's
48  if (payload->barrelItems().empty()) return false;
49  // set to -1 for ieta 0 (no crystal)
50  for(int iphi = MIN_IPHI; iphi < MAX_IPHI+1; iphi++) fillWithValue(iphi, 0, -1);
51 
52  for(int cellid = EBDetId::MIN_HASH; cellid < EBDetId::kSizeForDenseIndexing; ++cellid) {
53  uint32_t rawid = EBDetId::unhashIndex(cellid);
54 
55  // check the existence of Ecal PFRec Hit Thresholds, for a given ECAL barrel channel
56  EcalFloatCondObjectContainer::const_iterator value_ptr = payload->find(rawid);
57  if (value_ptr == payload->end())
58  continue; // cell absent from payload
59 
60  float weight = (float)(*value_ptr);
61 
62  // fill the Histogram2D here
63  fillWithValue( (EBDetId(rawid)).iphi() , (EBDetId(rawid)).ieta(), weight);
64  }// loop over cellid
65  }// if payload.get()
66  }// loop over IOV's (1 in this case)
67 
68  return true;
69 
70  }//fill method
71  };
72 
73  /*******************************************************
74 
75  2d histogram of ECAL EndCaps PFRec Hit Thresholds of 1 IOV
76 
77  *******************************************************/
78 
79  class EcalPFRecHitThresholdsEEMap : public cond::payloadInspector::Histogram2D<EcalPFRecHitThresholds> {
80 
81  private:
82  int EEhistSplit = 20;
83 
84  public:
85  EcalPFRecHitThresholdsEEMap() : cond::payloadInspector::Histogram2D<EcalPFRecHitThresholds>( "ECAL Endcap PFRec Hit Thresholds- map ",
86  "ix", EEhistXMax, IX_MIN, EEhistXMax + 1,
87  "iy", IY_MAX, IY_MIN, IY_MAX + 1) {
88  Base::setSingleIov( true );
89  }
90 
91  bool fill( const std::vector<std::tuple<cond::Time_t,cond::Hash> >& iovs ) override{
92 
93  for (auto const & iov: iovs) {
94  std::shared_ptr<EcalPFRecHitThresholds> payload = Base::fetchPayload( std::get<1>(iov) );
95  if( payload.get() ){
96  if (payload->endcapItems().empty()) return false;
97 
98  // set to -1 everywhwere
99  for(int ix = IX_MIN; ix < EEhistXMax + 1; ix++)
100  for(int iy = IY_MAX; iy < IY_MAX + 1; iy++)
101  fillWithValue(ix, iy, -1);
102 
103  for (int cellid = 0; cellid < EEDetId::kSizeForDenseIndexing; ++cellid){ // loop on EE cells
104  if (EEDetId::validHashIndex(cellid)){
105  uint32_t rawid = EEDetId::unhashIndex(cellid);
106  EcalFloatCondObjectContainer::const_iterator value_ptr = payload->find(rawid);
107  if (value_ptr == payload->end())
108  continue; // cell absent from payload
109 
110  float weight = (float)(*value_ptr);
111  EEDetId myEEId(rawid);
112  if(myEEId.zside() == -1)
113  fillWithValue(myEEId.ix(), myEEId.iy(), weight);
114  else
115  fillWithValue(myEEId.ix() + IX_MAX + EEhistSplit, myEEId.iy(), weight);
116  } // validDetId
117  } // loop over cellid
118 
119  } // payload
120  } // loop over IOV's (1 in this case)
121  return true;
122  }// fill method
123 
124  };
125 
126 
127  /*************************************************
128  2d plot of Ecal PFRec Hit Thresholds of 1 IOV
129  *************************************************/
130  class EcalPFRecHitThresholdsPlot : public cond::payloadInspector::PlotImage<EcalPFRecHitThresholds> {
131 
132  public:
133  EcalPFRecHitThresholdsPlot() : cond::payloadInspector::PlotImage<EcalPFRecHitThresholds>("Ecal PFRec Hit Thresholds - map ") {
134  setSingleIov( true );
135  }
136 
137  bool fill( const std::vector<std::tuple<cond::Time_t,cond::Hash> >& iovs ) override{
138  TH2F* barrel = new TH2F("EB", "mean EB", MAX_IPHI, 0, MAX_IPHI, 2 * MAX_IETA, -MAX_IETA, MAX_IETA);
139  TH2F* endc_p = new TH2F("EE+", "mean EE+", IX_MAX, IX_MIN, IX_MAX + 1, IY_MAX, IY_MIN, IY_MAX + 1);
140  TH2F* endc_m = new TH2F("EE-", "mean EE-", IX_MAX, IX_MIN, IX_MAX + 1, IY_MAX, IY_MIN, IY_MAX + 1);
141 
142  auto iov = iovs.front();
143  std::shared_ptr<EcalPFRecHitThresholds> payload = fetchPayload( std::get<1>(iov) );
144  unsigned int run = std::get<0>(iov);
145 
146  if( payload.get() ){
147 
148  if (payload->barrelItems().empty())
149  return false;
150 
151  fillEBMap_SingleIOV<EcalPFRecHitThresholds>(payload, barrel);
152 
153 
154  if (payload->endcapItems().empty())
155  return false;
156 
157  fillEEMap_SingleIOV<EcalPFRecHitThresholds>(payload, endc_m, endc_p);
158 
159  } // payload
160 
161  gStyle->SetPalette(1);
162  gStyle->SetOptStat(0);
163  TCanvas canvas("CC map","CC map", 1600, 450);
164  TLatex t1;
165  t1.SetNDC();
166  t1.SetTextAlign(26);
167  t1.SetTextSize(0.05);
168  t1.DrawLatex(0.5, 0.96, Form("Ecal PFRec Hit Thresholds, IOV %i", run));
169 
170  float xmi[3] = {0.0 , 0.24, 0.76};
171  float xma[3] = {0.24, 0.76, 1.00};
172  TPad** pad = new TPad*;
173  for (int obj = 0; obj < 3; obj++) {
174  pad[obj] = new TPad(Form("p_%i", obj),Form("p_%i", obj), xmi[obj], 0.0, xma[obj], 0.94);
175  pad[obj]->Draw();
176  }
177  // EcalDrawMaps ICMap;
178  pad[0]->cd();
179  // ICMap.DrawEE(endc_m, 0., 2.);
180  DrawEE(endc_m, 0., 2.5);
181  pad[1]->cd();
182  // ICMap.DrawEB(barrel, 0., 2.);
183  DrawEB(barrel, 0., 2.5);
184  pad[2]->cd();
185  // ICMap.DrawEE(endc_p, 0., 2.);
186  DrawEE(endc_p, 0., 2.5);
187 
188  std::string ImageName(m_imageFileName);
189  canvas.SaveAs(ImageName.c_str());
190  return true;
191  }// fill method
192  };
193 
194  /*****************************************************************
195  2d plot of Ecal PFRec Hit Thresholds between 2 IOVs
196  *****************************************************************/
197  class EcalPFRecHitThresholdsDiff : public cond::payloadInspector::PlotImage<EcalPFRecHitThresholds> {
198 
199  public:
200  EcalPFRecHitThresholdsDiff() : cond::payloadInspector::PlotImage<EcalPFRecHitThresholds>("Ecal PFRec Hit Thresholds difference ") {
201  setSingleIov(false);
202  }
203 
204  bool fill( const std::vector<std::tuple<cond::Time_t,cond::Hash> >& iovs ) override{
205  TH2F* barrel = new TH2F("EB", "mean EB", MAX_IPHI, 0, MAX_IPHI, 2 * MAX_IETA, -MAX_IETA, MAX_IETA);
206  TH2F* endc_p = new TH2F("EE+", "mean EE+", IX_MAX, IX_MIN, IX_MAX + 1, IY_MAX, IY_MIN, IY_MAX + 1);
207  TH2F* endc_m = new TH2F("EE-", "mean EE-", IX_MAX, IX_MIN, IX_MAX + 1, IY_MAX, IY_MIN, IY_MAX + 1);
208  float pEBmin, pEEmin, pEBmax, pEEmax;
209  pEBmin = 10.;
210  pEEmin = 10.;
211  pEBmax = -10.;
212  pEEmax = -10.;
213 
214  unsigned int run[2], irun = 0;
215  float pEB[kEBChannels], pEE[kEEChannels];
216  for ( auto const & iov: iovs) {
217  std::shared_ptr<EcalPFRecHitThresholds> payload = fetchPayload( std::get<1>(iov) );
218  run[irun] = std::get<0>(iov);
219 
220  if( payload.get() ){
221 
222  if (payload->barrelItems().empty())
223  return false;
224 
225  fillEBMap_DiffIOV<EcalPFRecHitThresholds>(payload, barrel, irun, pEB, pEBmin, pEBmax);
226 
227  if (payload->endcapItems().empty())
228  return false;
229 
230  fillEEMap_DiffIOV<EcalPFRecHitThresholds>(payload, endc_m, endc_p, irun, pEE, pEEmin, pEEmax);
231 
232  }// payload
233  irun++;
234 
235  }// loop over IOVs
236 
237  gStyle->SetPalette(1);
238  gStyle->SetOptStat(0);
239  TCanvas canvas("CC map","CC map", 1600, 450);
240  TLatex t1;
241  t1.SetNDC();
242  t1.SetTextAlign(26);
243  t1.SetTextSize(0.05);
244  t1.DrawLatex(0.5, 0.96, Form("Ecal PFRec Hit Thresholds Diff, IOV %i - %i", run[1], run[0]));
245 
246  float xmi[3] = {0.0 , 0.24, 0.76};
247  float xma[3] = {0.24, 0.76, 1.00};
248  TPad** pad = new TPad*;
249 
250  for (int obj = 0; obj < 3; obj++) {
251  pad[obj] = new TPad(Form("p_%i", obj),Form("p_%i", obj), xmi[obj], 0.0, xma[obj], 0.94);
252  pad[obj]->Draw();
253  }
254 
255  pad[0]->cd();
256  DrawEE(endc_m, pEEmin, pEEmax);
257  pad[1]->cd();
258  DrawEB(barrel, pEBmin, pEBmax);
259  pad[2]->cd();
260  DrawEE(endc_p, pEEmin, pEEmax);
261 
262  std::string ImageName(m_imageFileName);
263  canvas.SaveAs(ImageName.c_str());
264  return true;
265  }// fill method
266  };
267 
268 
269 /*******************************************************
270  2d plot of Ecal PFRec Hit Thresholds Summary of 1 IOV
271  *******************************************************/
272 class EcalPFRecHitThresholdsSummaryPlot: public cond::payloadInspector::PlotImage<EcalPFRecHitThresholds>{
273  public:
274  EcalPFRecHitThresholdsSummaryPlot():
275  cond::payloadInspector::PlotImage<EcalPFRecHitThresholds>("Ecal PFRec Hit Thresholds Summary - map "){
276  setSingleIov(true);
277  }
278 
279  bool fill(const std::vector<std::tuple<cond::Time_t, cond::Hash> >& iovs)override {
280  auto iov=iovs.front();
281  std::shared_ptr <EcalPFRecHitThresholds> payload = fetchPayload(std::get<1> (iov));
282  unsigned int run=std::get<0> (iov);
283  TH2F* align;
284  int NbRows;
285 
286  if(payload.get()){
287  NbRows=2;
288  align=new TH2F("", "", 0, 0, 0, 0, 0, 0);
289 
290 
291  float mean_x_EB=0.0f;
292  float mean_x_EE=0.0f;
293 
294  float rms_EB=0.0f;
295  float rms_EE=0.0f;
296 
297  int num_x_EB=0;
298  int num_x_EE=0;
299 
300 
301  payload->summary(mean_x_EB, rms_EB, num_x_EB, mean_x_EE, rms_EE, num_x_EE);
302  fillTableWithSummary(align, "Ecal PFRec Hit Thresholds", mean_x_EB, rms_EB, num_x_EB, mean_x_EE, rms_EE, num_x_EE);
303  }else
304  return false;
305 
306  gStyle->SetPalette(1);
307  gStyle->SetOptStat(0);
308  TCanvas canvas("CC map", "CC map", 1000, 1000);
309  TLatex t1;
310  t1.SetNDC();
311  t1.SetTextAlign(26);
312  t1.SetTextSize(0.04);
313  t1.SetTextColor(2);
314  t1.DrawLatex(0.5, 0.96,Form("Ecal PFRec Hit Thresholds Summary, IOV %i", run));
315 
316 
317  TPad* pad = new TPad("pad", "pad", 0.0, 0.0, 1.0, 0.94);
318  pad->Draw();
319  pad->cd();
320  align->Draw("TEXT");
321 
322  drawTable(NbRows,4);
323 
324  std::string ImageName(m_imageFileName);
325  canvas.SaveAs(ImageName.c_str());
326 
327  return true;
328  }
329 };
330 
331 }
332 
333 // Register the classes as boost python plugin
335  PAYLOAD_INSPECTOR_CLASS( EcalPFRecHitThresholdsEBMap );
336  PAYLOAD_INSPECTOR_CLASS( EcalPFRecHitThresholdsEEMap );
337  PAYLOAD_INSPECTOR_CLASS( EcalPFRecHitThresholdsPlot );
338  PAYLOAD_INSPECTOR_CLASS( EcalPFRecHitThresholdsDiff );
339  PAYLOAD_INSPECTOR_CLASS( EcalPFRecHitThresholdsSummaryPlot );
340 }
void fillTableWithSummary(TH2F *&align, std::string title, const float &mean_x_EB, const float &rms_EB, const int &num_x_EB, const float &mean_x_EE, const float &rms_EE, const int &num_x_EE)
Definition: weight.py:1
void fillWithValue(float xvalue, float yvalue, float weight=1)
static EEDetId unhashIndex(int hi)
Definition: EEDetId.cc:65
static bool validHashIndex(int i)
Definition: EEDetId.h:239
void DrawEE(TH2F *endc, float min, float max)
Definition: EcalDrawUtils.h:29
void DrawEB(TH2F *ebmap, float min, float max)
Definition: EcalDrawUtils.h:4
bool fill(const std::vector< std::tuple< cond::Time_t, cond::Hash > > &iovs) override
#define PAYLOAD_INSPECTOR_CLASS(CLASS_NAME)
static const int MIN_HASH
Definition: EBDetId.h:149
#define PAYLOAD_INSPECTOR_MODULE(PAYLOAD_TYPENAME)
std::vector< Item >::const_iterator const_iterator
static EBDetId unhashIndex(int hi)
get a DetId from a compact index for arrays
Definition: EBDetId.h:110
Definition: plugin.cc:24
def canvas(sub, attr)
Definition: svgfig.py:482
std::shared_ptr< PayloadType > fetchPayload(const cond::Hash &payloadHash)
void drawTable(int nbRows, int nbColumns)