CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PFClient.cc
Go to the documentation of this file.
2 
7 
8 
12 
13 //
14 // -- Constructor
15 //
17 {
18  folderNames_ = parameterSet.getParameter< std::vector<std::string> >( "FolderNames" );
19  histogramNames_ = parameterSet.getParameter< std::vector<std::string> >( "HistogramNames" );
20  efficiencyFlag_ = parameterSet.getParameter< bool> ("CreateEfficiencyPlots" );
21  effHistogramNames_ = parameterSet.getParameter< std::vector<std::string> >( "HistogramNamesForEfficiencyPlots" );
22  projectionHistogramNames_ = parameterSet.getParameter< std::vector<std::string> >( "HistogramNamesForProjectionPlots" );
23  profileFlag_ = parameterSet.getParameter< bool> ("CreateProfilePlots" );
24  profileHistogramNames_ = parameterSet.getParameter< std::vector<std::string> >( "HistogramNamesForProfilePlots" );
25 }
26 //
27 // -- BeginJob
28 //
30 
32 }
33 //
34 // -- EndJobBegin Run
35 //
36 void PFClient::endRun(edm::Run const& run, edm::EventSetup const& eSetup) {
37  doSummaries();
38  doProjection();
40  if (profileFlag_) doProfiles();
41 }
42 //
43 // -- EndJob
44 //
46 
47 }
48 //
49 // -- Create Summaries
50 //
52 
53  for (std::vector<std::string>::const_iterator ifolder = folderNames_.begin();
54  ifolder != folderNames_.end(); ifolder++) {
55  std::string path = "ParticleFlow/"+(*ifolder);
56 
57  for (std::vector<std::string>::const_iterator ihist = histogramNames_.begin();
58  ihist != histogramNames_.end(); ihist++) {
59  std::string hname = (*ihist);
60  createResolutionPlots(path, hname);
61  }
62  }
63 }
64 //
65 // -- Create Projection
66 //
68 
69  for (std::vector<std::string>::const_iterator ifolder = folderNames_.begin();
70  ifolder != folderNames_.end(); ifolder++) {
71  std::string path = "ParticleFlow/"+(*ifolder);
72 
73  for (std::vector<std::string>::const_iterator ihist = projectionHistogramNames_.begin();
74  ihist != projectionHistogramNames_.end(); ihist++) {
75  std::string hname = (*ihist);
76  createProjectionPlots(path, hname);
77  }
78  }
79 }
80 //
81 // -- Create Profile
82 //
84 
85  for (std::vector<std::string>::const_iterator ifolder = folderNames_.begin();
86  ifolder != folderNames_.end(); ifolder++) {
87  std::string path = "ParticleFlow/"+(*ifolder);
88 
89  for (std::vector<std::string>::const_iterator ihist = profileHistogramNames_.begin();
90  ihist != profileHistogramNames_.end(); ihist++) {
91  std::string hname = (*ihist);
92  createProfilePlots(path, hname);
93  }
94  }
95 }
96 //
97 // -- Create Efficiency
98 //
100  for (std::vector<std::string>::const_iterator ifolder = folderNames_.begin();
101  ifolder != folderNames_.end(); ifolder++) {
102  std::string path = "ParticleFlow/"+(*ifolder);
103 
104  for (std::vector<std::string>::const_iterator ihist = effHistogramNames_.begin();
105  ihist != effHistogramNames_.end(); ihist++) {
106  std::string hname = (*ihist);
107  createEfficiencyPlots(path, hname);
108  }
109  }
110 }
111 //
112 // -- Create Resolution Plots
113 //
115  MonitorElement* me = dqmStore_->get(folder+"/"+name);
116  if (!me) return;
117 
118  MonitorElement* me_average;
119  MonitorElement* me_rms;
120  MonitorElement* me_mean;
121  MonitorElement* me_sigma;
122 
123  if ( (me->kind() == MonitorElement::DQM_KIND_TH2F) ||
124  (me->kind() == MonitorElement::DQM_KIND_TH2S) ||
125  (me->kind() == MonitorElement::DQM_KIND_TH2D) ) {
126  TH2* th = me->getTH2F();
127  size_t nbinx = me->getNbinsX();
128  size_t nbiny = me->getNbinsY();
129 
130  float ymin = th->GetYaxis()->GetXmin();
131  float ymax = th->GetYaxis()->GetXmax();
132  std::string xtit = th->GetXaxis()->GetTitle();
133  std::string ytit = th->GetYaxis()->GetTitle();
134  float* xbins = new float[nbinx+1];
135  for (size_t ix = 1; ix < nbinx+1; ++ix) {
136  xbins[ix-1] = th->GetBinLowEdge(ix);
137  if (ix == nbinx) xbins[ix] = th->GetXaxis()->GetBinUpEdge(ix);
138  }
139  std::string tit_new = ";"+xtit+";"+ytit;
140  dqmStore_->setCurrentFolder(folder);
141  MonitorElement* me_slice = dqmStore_->book1D("PFlowSlice","PFlowSlice",nbiny,ymin,ymax);
142 
143  tit_new = ";"+xtit+";Average_"+ytit;
144  me_average = dqmStore_->book1D("average_"+name,tit_new, nbinx, xbins);
145  me_average->setEfficiencyFlag();
146  tit_new = ";"+xtit+";RMS_"+ytit;
147  me_rms = dqmStore_->book1D("rms_"+name,tit_new, nbinx, xbins);
148  me_rms->setEfficiencyFlag();
149  tit_new = ";"+xtit+";Mean_"+ytit;
150  me_mean = dqmStore_->book1D("mean_"+name,tit_new, nbinx, xbins);
151  me_mean->setEfficiencyFlag();
152  tit_new = ";"+xtit+";Sigma_"+ytit;
153  me_sigma = dqmStore_->book1D("sigma_"+name,tit_new, nbinx, xbins);
154  me_sigma->setEfficiencyFlag();
155 
156  double average, rms, mean, sigma;
157 
158  for (size_t ix = 1; ix < nbinx+1; ++ix) {
159  me_slice->Reset();
160  for (size_t iy = 1; iy < nbiny+1; ++iy) {
161  me_slice->setBinContent(iy,th->GetBinContent(ix,iy));
162  }
163  getHistogramParameters(me_slice, average, rms, mean, sigma);
164  me_average->setBinContent(ix,average);
165  me_rms->setBinContent(ix,rms);
166  me_mean->setBinContent(ix,mean);
167  me_sigma->setBinContent(ix,sigma);
168  }
169  if (me_slice) dqmStore_->removeElement(me_slice->getName());
170  delete [] xbins;
171  }
172 }
173 
174 //
175 // -- Create Projection Plots
176 //
178  MonitorElement* me = dqmStore_->get(folder+"/"+name);
179  if (!me) return;
180 
181  MonitorElement* projection = 0;
182 
183  if ( (me->kind() == MonitorElement::DQM_KIND_TH2F) ||
184  (me->kind() == MonitorElement::DQM_KIND_TH2S) ||
185  (me->kind() == MonitorElement::DQM_KIND_TH2D) ) {
186  TH2* th = me->getTH2F();
187  size_t nbinx = me->getNbinsX();
188  size_t nbiny = me->getNbinsY();
189 
190  float ymin = th->GetYaxis()->GetXmin();
191  float ymax = th->GetYaxis()->GetXmax();
192  std::string xtit = th->GetXaxis()->GetTitle();
193  std::string ytit = th->GetYaxis()->GetTitle();
194  float* xbins = new float[nbinx+1];
195  for (size_t ix = 1; ix < nbinx+1; ++ix) {
196  xbins[ix-1] = th->GetBinLowEdge(ix);
197  if (ix == nbinx) xbins[ix] = th->GetXaxis()->GetBinUpEdge(ix);
198  }
199 
200  std::string tit_new;
201  dqmStore_->setCurrentFolder(folder);
202 
203  if (folder == "ParticleFlow/PFElectronValidation/CompWithGenElectron") {
204  if (name == "delta_et_Over_et_VS_et_") projection = dqmStore_->book1D("delta_et_Over_et","E_{T} resolution;#DeltaE_{T}/E_{T}",nbiny,ymin,ymax) ;
205  if (name == "delta_et_VS_et_") projection = dqmStore_->book1D("delta_et_","#DeltaE_{T};#DeltaE_{T}",nbiny,ymin,ymax) ;
206  if (name == "delta_eta_VS_et_") projection = dqmStore_->book1D("delta_eta_","#Delta#eta;#Delta#eta",nbiny,ymin,ymax) ;
207  if (name == "delta_phi_VS_et_") projection = dqmStore_->book1D("delta_phi_","#Delta#phi;#Delta#phi",nbiny,ymin,ymax) ;
208  }
209 
210  if (projection) {
211  for (size_t iy = 1; iy < nbiny+1; ++iy) {
212  projection->setBinContent(iy, th->ProjectionY("e")->GetBinContent(iy) ); }
213  projection->setEntries( me->getEntries() ) ;
214  }
215 
216  delete [] xbins;
217  }
218 }
219 
220 //
221 // -- Create Profile Plots
222 //
224  MonitorElement* me = dqmStore_->get(folder+"/"+name);
225  if (!me) return;
226 
227  if ( (me->kind() == MonitorElement::DQM_KIND_TH2F) ||
228  (me->kind() == MonitorElement::DQM_KIND_TH2S) ||
229  (me->kind() == MonitorElement::DQM_KIND_TH2D) ) {
230  TH2* th = me->getTH2F();
231  size_t nbinx = me->getNbinsX();
232 
233  float ymin = th->GetYaxis()->GetXmin();
234  float ymax = th->GetYaxis()->GetXmax();
235  std::string xtit = th->GetXaxis()->GetTitle();
236  std::string ytit = th->GetYaxis()->GetTitle();
237  double* xbins = new double[nbinx+1];
238  for (size_t ix = 1; ix < nbinx+1; ++ix) {
239  xbins[ix-1] = th->GetBinLowEdge(ix);
240  if (ix == nbinx) xbins[ix] = th->GetXaxis()->GetBinUpEdge(ix);
241  }
242 
243  std::string tit_new;
244  dqmStore_->setCurrentFolder(folder);
245  //TProfiles
246  MonitorElement* me_profile[2];
247  me_profile[0] = dqmStore_->bookProfile("profile_"+name, tit_new,
248  nbinx, xbins, ymin, ymax, "" );
249  me_profile[1] = dqmStore_->bookProfile("profileRMS_"+name, tit_new,
250  nbinx, xbins, ymin, ymax, "s" );
251  TProfile* profileX = th->ProfileX();
252  //size_t nbiny = me->getNbinsY();
253  //TProfile* profileX = th->ProfileX("",0,nbiny+1); add underflow and overflow
254  static const Int_t NUM_STAT = 6;
255  Double_t stats[NUM_STAT] = {0}; th->GetStats(stats);
256 
257  for (Int_t i = 0; i<2; i++) {
258  if (me_profile[i]) {
259  for (size_t ix = 0; ix <= nbinx+1; ++ix) {
260  me_profile[i]->setBinContent( ix, profileX->GetBinContent(ix)*profileX->GetBinEntries(ix) ) ;
261  //me_profile[i]->Fill( profileX->GetBinCenter(ix), profileX->GetBinContent(ix)*profileX->GetBinEntries(ix) ) ;
262  me_profile[i]->setBinEntries( ix, profileX->GetBinEntries(ix) );
263  me_profile[i]->getTProfile()->GetSumw2()->fArray[ix] = profileX->GetSumw2()->fArray[ix];
264  //me_profile[i]->getTProfile()->GetBinSumw2()->fArray[ix] = profileX->GetBinSumw2()->fArray[ix]; // segmentation violation
265  }
266  }
267  me_profile[i]->getTProfile()->PutStats(stats);
268  me_profile[i]->setEntries( profileX->GetEntries() ) ;
269  }
270 
271  delete [] xbins;
272  }
273 }
274 
275 //
276 // -- Get Histogram Parameters
277 //
279  double& rms,double& mean, double& sigma) {
280  average = 0.0;
281  rms = 0.0;
282  mean = 0.0;
283  sigma = 0.0;
284 
285  if (!me_slice) return;
286  if (me_slice->kind() == MonitorElement::DQM_KIND_TH1F) {
287  average = me_slice->getMean();
288  rms = me_slice->getRMS();
289  TH1F* th_slice = me_slice->getTH1F();
290  if (th_slice && th_slice->GetEntries() > 0) {
291  th_slice->Fit( "gaus","Q0");
292  TF1* gaus = th_slice->GetFunction( "gaus" );
293  if (gaus) {
294  sigma = gaus->GetParameter(2);
295  mean = gaus->GetParameter(1);
296  }
297  }
298  }
299 }
300 //
301 // -- Create Efficiency Plots
302 //
304  MonitorElement* me1 = dqmStore_->get(folder+"/"+name+"ref_");
305  MonitorElement* me2 = dqmStore_->get(folder+"/"+name+"gen_");
306  if (!me1 || !me2) return;
307 
308  TH1F* me1_forEff = (TH1F*)me1->getTH1F()->Rebin(2,"me1_forEff");
309  TH1F* me2_forEff = (TH1F*)me2->getTH1F()->Rebin(2,"me2_forEff");
310 
311  MonitorElement* me_eff;
312  if ( (me1->kind() == MonitorElement::DQM_KIND_TH1F) &&
313  (me1->kind() == MonitorElement::DQM_KIND_TH1F) ) {
314  //TH1* th1 = me1->getTH1F();
315  //size_t nbinx = me1->getNbinsX();
316  size_t nbinx = me1_forEff->GetNbinsX();
317 
318  //float xmin = th1->GetXaxis()->GetXmin();
319  //float xmax = th1->GetXaxis()->GetXmax();
320  float xmin = me1_forEff->GetXaxis()->GetXmin();
321  float xmax = me1_forEff->GetXaxis()->GetXmax();
322  std::string xtit = me1->getAxisTitle(1);
323  std::string tit_new;
324  tit_new = ";"+xtit+";"+xtit+" efficiency";
325 
326  dqmStore_->setCurrentFolder(folder);
327  me_eff = dqmStore_->book1D("efficiency_"+name,tit_new, nbinx, xmin, xmax);
328 
329  me_eff->Reset(); me_eff->setEfficiencyFlag();
330  /*
331  double efficiency;
332  for (size_t ix = 1; ix < nbinx+1; ++ix) {
333  float val1 = me1->getBinContent(ix);
334  float val2 = me2->getBinContent(ix);
335  if (val2 > 0.0) efficiency = val1/val2;
336  else efficiency = 0;
337  me_eff->setBinContent(ix,efficiency);
338  }
339  */
340  // Binomial errors "B" asked by Florian
341  /*me1_forEff->Sumw2(); me2_forEff->Sumw2();*/ me_eff->getTH1F()->Sumw2();
342  me_eff->getTH1F()->Divide( me1_forEff, me2_forEff, 1, 1, "B");
343  }
344 }
T getParameter(std::string const &) const
const std::string & getName(void) const
get name of ME
int i
Definition: DBlmapReader.cc:9
void setBinContent(int binx, double content)
set content of bin (1-D)
void createEfficiencyPlots(std::string &folder, std::string &name)
Definition: PFClient.cc:303
const double xbins[]
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:873
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
std::string getAxisTitle(int axis=1) const
get x-, y- or z-axis title (axis=1, 2, 3 respectively)
void doSummaries()
Definition: PFClient.cc:51
std::vector< std::string > projectionHistogramNames_
Definition: PFClient.h:38
std::vector< std::string > histogramNames_
Definition: PFClient.h:36
double getEntries(void) const
get # of entries
double getMean(int axis=1) const
get mean value of histogram along x, y or z axis (axis=1, 2, 3 respectively)
void doEfficiency()
Definition: PFClient.cc:99
void doProfiles()
Definition: PFClient.cc:83
void beginJob()
Definition: PFClient.cc:29
void endRun(edm::Run const &run, edm::EventSetup const &eSetup)
Definition: PFClient.cc:36
int getNbinsY(void) const
get # of bins in Y-axis
void createResolutionPlots(std::string &folder, std::string &name)
Definition: PFClient.cc:114
void removeElement(const std::string &name)
Definition: DQMStore.cc:2773
MonitorElement * bookProfile(const char *name, const char *title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, const char *option="s")
Definition: DQMStore.cc:1187
Kind kind(void) const
Get the type of the monitor element.
void setEntries(double nentries)
set # of entries
MonitorElement * get(const std::string &path) const
get ME from full pathname (e.g. &quot;my/long/dir/my_histo&quot;)
Definition: DQMStore.cc:1624
std::vector< std::string > profileHistogramNames_
Definition: PFClient.h:39
PFClient(const edm::ParameterSet &parameterSet)
Definition: PFClient.cc:16
std::vector< std::string > folderNames_
Definition: PFClient.h:35
TH1F * getTH1F(void) const
int average
Definition: PDRates.py:137
bool profileFlag_
Definition: PFClient.h:41
void endJob()
Definition: PFClient.cc:45
double getRMS(int axis=1) const
get RMS of histogram along x, y or z axis (axis=1, 2, 3 respectively)
TProfile * getTProfile(void) const
std::vector< std::string > effHistogramNames_
Definition: PFClient.h:37
int getNbinsX(void) const
get # of bins in X-axis
void doProjection()
Definition: PFClient.cc:67
void setEfficiencyFlag(void)
void createProjectionPlots(std::string &folder, std::string &name)
Definition: PFClient.cc:177
TH2F * getTH2F(void) const
void Reset(void)
reset ME (ie. contents, errors, etc)
void setBinEntries(int bin, double nentries)
set # of bin entries (to be used for profiles)
DQMStore * dqmStore_
Definition: PFClient.h:43
ParameterSet const & parameterSet(Provenance const &provenance)
Definition: Provenance.cc:11
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:585
void createProfilePlots(std::string &folder, std::string &name)
Definition: PFClient.cc:223
Definition: Run.h:41
bool efficiencyFlag_
Definition: PFClient.h:40
void getHistogramParameters(MonitorElement *me_slice, double &avarage, double &rms, double &mean, double &sigma)
Definition: PFClient.cc:278