CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ESOccupancyTask.cc
Go to the documentation of this file.
1 #include <memory>
2 #include <fstream>
3 #include <iostream>
4 
17 
18 #include "TStyle.h"
19 #include "TH2F.h"
20 
21 using namespace cms;
22 using namespace edm;
23 using namespace std;
24 
26 
27  rechittoken_ = consumes<ESRecHitCollection>(ps.getParameter<InputTag>("RecHitLabel"));
28  prefixME_ = ps.getUntrackedParameter<string>("prefixME", "EcalPreshower");
29 
30  dqmStore_ = Service<DQMStore>().operator->();
31  eCount_ = 0;
32 
33  //Histogram init
34  for (int i = 0; i < 2; ++i)
35  for (int j = 0; j < 2; ++j) {
36  hRecOCC_[i][j] = 0;
37  hRecNHit_[i][j] = 0;
38  hEng_[i][j] = 0;
39  hEvEng_[i][j] = 0;
40  hEnDensity_[i][i] = 0;
41  hDigiNHit_[i][j] = 0;
42 
43  hSelEng_[i][j] = 0;
44  hSelOCC_[i][j] = 0;
45  hSelEnDensity_[i][j] = 0;
46  }
47 
48  for (int i = 0; i<2; ++i)
49  hE1E2_[i]=0;
50 
51  dqmStore_->setCurrentFolder(prefixME_ + "/ESOccupancyTask");
52 
53  //Booking Histograms
54  //Notice: Change ESRenderPlugin under DQM/RenderPlugins/src if you change this histogram name.
55  char histo[200];
56  for (int i=0 ; i<2; ++i)
57  for (int j=0 ; j<2; ++j) {
58  int iz = (i==0)? 1:-1;
59  sprintf(histo, "ES RecHit 2D Occupancy Z %d P %d", iz, j+1);
60  hRecOCC_[i][j] = dqmStore_->book2D(histo, histo, 40, 0.5, 40.5, 40, 0.5, 40.5);
61  hRecOCC_[i][j]->setAxisTitle("Si X", 1);
62  hRecOCC_[i][j]->setAxisTitle("Si Y", 2);
63 
64  //Bin 40,40 is used to save eumber of event for scaling.
65  sprintf(histo, "ES Energy Density Z %d P %d", iz, j+1);
66  hEnDensity_[i][j] = dqmStore_->book2D(histo, histo, 40, 0.5, 40.5, 40, 0.5, 40.5);
67  hEnDensity_[i][j]->setAxisTitle("Si X", 1);
68  hEnDensity_[i][j]->setAxisTitle("Si Y", 2);
69 
70  sprintf(histo, "ES Num of RecHits Z %d P %d", iz, j+1);
71  hRecNHit_[i][j] = dqmStore_->book1DD(histo, histo, 60, 0, 1920);
72  hRecNHit_[i][j]->setAxisTitle("# of RecHits", 1);
73  hRecNHit_[i][j]->setAxisTitle("Num of Events", 2);
74 
75  sprintf(histo, "ES Num of Good RecHits Z %d P %d", iz, j+1);
76  hDigiNHit_[i][j] = dqmStore_->book1DD(histo, histo, 60, 0, 1920);
77  hDigiNHit_[i][j]->setAxisTitle("# of good RecHits", 1);
78  hDigiNHit_[i][j]->setAxisTitle("Num of Events", 2);
79 
80  sprintf(histo, "ES RecHit Energy Z %d P %d", iz, j+1);
81  hEng_[i][j] = dqmStore_->book1DD(histo, histo, 50, 0, 0.001);
82  hEng_[i][j]->setAxisTitle("RecHit Energy", 1);
83  hEng_[i][j]->setAxisTitle("Num of ReHits", 2);
84 
85  sprintf(histo, "ES Event Energy Z %d P %d", iz, j+1);
86  hEvEng_[i][j] = dqmStore_->book1DD(histo, histo, 50, 0, 0.1);
87  hEvEng_[i][j]->setAxisTitle("Event Energy", 1);
88  hEvEng_[i][j]->setAxisTitle("Num of Events", 2);
89 
90  // histograms with selected hits
91  sprintf(histo, "ES RecHit Energy with selected hits Z %d P %d", iz, j+1);
92  hSelEng_[i][j] = dqmStore_->book1DD(histo, histo, 50, 0, 0.001);
93  hSelEng_[i][j]->setAxisTitle("RecHit Energy", 1);
94  hSelEng_[i][j]->setAxisTitle("Num of ReHits", 2);
95 
96  sprintf(histo, "ES Occupancy with selected hits Z %d P %d", iz, j+1);
97  hSelOCC_[i][j] = dqmStore_->book2D(histo, histo, 40, 0.5, 40.5, 40, 0.5, 40.5);
98  hSelOCC_[i][j]->setAxisTitle("Si X", 1);
99  hSelOCC_[i][j]->setAxisTitle("Si Y", 2);
100 
101  sprintf(histo, "ES Energy Density with selected hits Z %d P %d", iz, j+1);
102  hSelEnDensity_[i][j] = dqmStore_->book2D(histo, histo, 40, 0.5, 40.5, 40, 0.5, 40.5);
103  hSelEnDensity_[i][j]->setAxisTitle("Si X", 1);
104  hSelEnDensity_[i][j]->setAxisTitle("Si Y", 2);
105  }
106 
107  hE1E2_[0] = dqmStore_->book2D("ES+ EP1 vs EP2", "ES+ EP1 vs EP2", 50, 0, 0.1, 50, 0, 0.1);
108  hE1E2_[1] = dqmStore_->book2D("ES- EP1 vs EP2", "ES- EP1 vs EP2", 50, 0, 0.1, 50, 0, 0.1);
109 
110 }
111 
113 }
114 
116 }
117 
119 }
120 
122 
123  runNum_ = e.id().run();
124  eCount_++;
125 
126  // RecHits
127  int zside, plane, ix, iy;
128  int sum_RecHits[2][2], sum_DigiHits[2][2];
129  float sum_Energy[2][2];
130 
131  for (int i = 0; i < 2; ++i)
132  for (int j = 0; j < 2; ++j) {
133  sum_RecHits[i][j] = 0;
134  sum_DigiHits[i][j] = 0;
135  sum_Energy[i][j] = 0;
136  }
137 
139  if ( e.getByToken(rechittoken_, ESRecHit) ) {
140 
141  for (ESRecHitCollection::const_iterator hitItr = ESRecHit->begin(); hitItr != ESRecHit->end(); ++hitItr) {
142 
143  ESDetId id = ESDetId(hitItr->id());
144 
145  zside = id.zside();
146  plane = id.plane();
147  ix = id.six();
148  iy = id.siy();
149 
150  int i = (zside==1)? 0:1;
151  int j = plane-1;
152 
153  sum_RecHits[i][j]++;
154  sum_Energy[i][j] += hitItr->energy();
155  hRecOCC_[i][j]->Fill(ix, iy);
156  if (hitItr->energy() != 0) {
157  hEng_[i][j]->Fill(hitItr->energy());
158  hEnDensity_[i][j]->Fill(ix, iy, hitItr->energy());
159 
160  if (hitItr->recoFlag()==14 || hitItr->recoFlag()==1 || (hitItr->recoFlag()<=10 && hitItr->recoFlag()>=5)) continue;
161  hSelEng_[i][j]->Fill(hitItr->energy());
162  hSelEnDensity_[i][j]->Fill(ix, iy, hitItr->energy());
163  hSelOCC_[i][j]->Fill(ix, iy);
164  }
165 
166  }
167  } else {
168  LogWarning("ESOccupancyTask") << "RecHitCollection not available";
169  }
170 
171  //Fill histograms after a event
172  for (int i = 0; i < 2; ++i)
173  for (int j = 0; j < 2; ++j) {
174 
175  hRecNHit_[i][j]->Fill(sum_RecHits[i][j]);
176  hDigiNHit_[i][j]->Fill(sum_DigiHits[i][j]);
177  hEvEng_[i][j]->Fill(sum_Energy[i][j]);
178 
179  //Save eCount_ for Scaling
180  hRecOCC_[i][j]->setBinContent(40,40,eCount_);
181  hEnDensity_[i][j]->setBinContent(40,40,eCount_);
182 
183  hSelOCC_[i][j]->setBinContent(40,40,eCount_);
184  hSelEnDensity_[i][j]->setBinContent(40,40,eCount_);
185  }
186 
187  hE1E2_[0]->Fill(sum_Energy[0][0], sum_Energy[0][1]);
188  hE1E2_[1]->Fill(sum_Energy[1][0], sum_Energy[1][1]);
189 
190 }
191 
192 //define this as a plug-in
RunNumber_t run() const
Definition: EventID.h:42
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
virtual ~ESOccupancyTask()
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
std::vector< EcalRecHit >::const_iterator const_iterator
int j
Definition: DBlmapReader.cc:9
virtual void endJob(void)
int zside() const
Definition: ESDetId.h:44
virtual void beginJob(void)
ESOccupancyTask(const edm::ParameterSet &ps)
virtual void analyze(const edm::Event &, const edm::EventSetup &)
DEFINE_FWK_MODULE(CaloMETProducer)
edm::EventID id() const
Definition: EventBase.h:56