CMS 3D CMS Logo

EcalSimpleTBAnalyzer.cc
Go to the documentation of this file.
1 
8 //
9 //
10 //
11 
19 
20 
21 //#include<fstream>
22 
23 #include "TFile.h"
24 #include "TH1.h"
25 #include "TH2.h"
26 #include "TF1.h"
27 
28 #include <iostream>
29 #include <string>
30 #include <stdexcept>
31 //
32 // constants, enums and typedefs
33 //
34 
35 //
36 // static data member definitions
37 //
38 
39 //
40 // constructors and destructor
41 //
42 
43 
44 //========================================================================
46 //========================================================================
47 {
48  //now do what ever initialization is needed
49  rootfile_ = iConfig.getUntrackedParameter<std::string>("rootfile","ecalSimpleTBanalysis.root");
50  digiCollection_ = iConfig.getParameter<std::string>("digiCollection");
51  digiProducer_ = iConfig.getParameter<std::string>("digiProducer");
52  hitCollection_ = iConfig.getParameter<std::string>("hitCollection");
53  hitProducer_ = iConfig.getParameter<std::string>("hitProducer");
54  hodoRecInfoCollection_ = iConfig.getParameter<std::string>("hodoRecInfoCollection");
55  hodoRecInfoProducer_ = iConfig.getParameter<std::string>("hodoRecInfoProducer");
56  tdcRecInfoCollection_ = iConfig.getParameter<std::string>("tdcRecInfoCollection");
57  tdcRecInfoProducer_ = iConfig.getParameter<std::string>("tdcRecInfoProducer");
58  eventHeaderCollection_ = iConfig.getParameter<std::string>("eventHeaderCollection");
59  eventHeaderProducer_ = iConfig.getParameter<std::string>("eventHeaderProducer");
60 
61 
62  std::cout << "EcalSimpleTBAnalyzer: fetching hitCollection: " << hitCollection_.c_str()
63  << " produced by " << hitProducer_.c_str() << std::endl;
64 
65 }
66 
67 
68 //========================================================================
70 //========================================================================
71 {
72  // do anything here that needs to be done at desctruction time
73  // (e.g. close files, deallocate resources etc.)
74  // Amplitude vs TDC offset
75 // if (h_ampltdc)
76 // delete h_ampltdc;
77 
78 // // Reconstructed energies
79 // delete h_e1x1;
80 // delete h_e3x3;
81 // delete h_e5x5;
82 
83 // delete h_bprofx;
84 // delete h_bprofy;
85 
86 // delete h_qualx;
87 // delete h_qualy;
88 
89 // delete h_slopex;
90 // delete h_slopey;
91 
92 // delete h_mapx;
93 // delete h_mapy;
94 
95 }
96 
97 //========================================================================
98 void
100 //========================================================================
101 
102  // Amplitude vs TDC offset
103  h_ampltdc = new TH2F("h_ampltdc","Max Amplitude vs TDC offset", 100,0.,1.,1000, 0., 4000.);
104 
105  // Reconstructed energies
106  h_tableIsMoving = new TH1F("h_tableIsMoving","TableIsMoving", 100000, 0., 100000.);
107 
108  h_e1x1 = new TH1F("h_e1x1","E1x1 energy", 1000, 0., 4000.);
109  h_e3x3 = new TH1F("h_e3x3","E3x3 energy", 1000, 0., 4000.);
110  h_e5x5 = new TH1F("h_e5x5","E5x5 energy", 1000, 0., 4000.);
111 
112  h_e1x1_center = new TH1F("h_e1x1_center","E1x1 energy", 1000, 0., 4000.);
113  h_e3x3_center = new TH1F("h_e3x3_center","E3x3 energy", 1000, 0., 4000.);
114  h_e5x5_center = new TH1F("h_e5x5_center","E5x5 energy", 1000, 0., 4000.);
115 
116  h_e1e9 = new TH1F("h_e1e9","E1/E9 ratio", 600, 0., 1.2);
117  h_e1e25 = new TH1F("h_e1e25","E1/E25 ratio", 600, 0., 1.2);
118  h_e9e25 = new TH1F("h_e9e25","E9/E25 ratio", 600, 0., 1.2);
119 
120  h_bprofx = new TH1F("h_bprofx","Beam Profile X",100,-20.,20.);
121  h_bprofy = new TH1F("h_bprofy","Beam Profile Y",100,-20.,20.);
122 
123  h_qualx = new TH1F("h_qualx","Beam Quality X",5000,0.,5.);
124  h_qualy = new TH1F("h_qualy","Beam Quality X",5000,0.,5.);
125 
126  h_slopex = new TH1F("h_slopex","Beam Slope X",500, -5e-4 , 5e-4 );
127  h_slopey = new TH1F("h_slopey","Beam Slope Y",500, -5e-4 , 5e-4 );
128 
129  char hname[50];
130  char htitle[50];
131  for (unsigned int icry=0;icry<25;icry++)
132  {
133  sprintf(hname,"h_mapx_%d",icry);
134  sprintf(htitle,"Max Amplitude vs X %d",icry);
135  h_mapx[icry] = new TH2F(hname,htitle,80,-20,20,1000,0.,4000.);
136  sprintf(hname,"h_mapy_%d",icry);
137  sprintf(htitle,"Max Amplitude vs Y %d",icry);
138  h_mapy[icry] = new TH2F(hname,htitle,80,-20,20,1000,0.,4000.);
139  }
140 
141  h_e1e9_mapx = new TH2F("h_e1e9_mapx","E1/E9 vs X",80,-20,20,600,0.,1.2);
142  h_e1e9_mapy = new TH2F("h_e1e9_mapy","E1/E9 vs Y",80,-20,20,600,0.,1.2);
143 
144  h_e1e25_mapx = new TH2F("h_e1e25_mapx","E1/E25 vs X",80,-20,20,600,0.,1.2);
145  h_e1e25_mapy = new TH2F("h_e1e25_mapy","E1/E25 vs Y",80,-20,20,600,0.,1.2);
146 
147  h_e9e25_mapx = new TH2F("h_e9e25_mapx","E9/E25 vs X",80,-20,20,600,0.,1.2);
148  h_e9e25_mapy = new TH2F("h_e9e25_mapy","E9/E25 vs Y",80,-20,20,600,0.,1.2);
149 
150  h_Shape_ = new TH2F("h_Shape_","Xtal in Beam Shape",250,0,10,350,0,3500);
151 
152 }
153 
154 //========================================================================
155 void
157 //========================================================================
158 
159  TFile f(rootfile_.c_str(),"RECREATE");
160 
161  // Amplitude vs TDC offset
162  h_ampltdc->Write();
163 
164  // Reconstructed energies
165  h_e1x1->Write();
166  h_e3x3->Write();
167  h_e5x5->Write();
168 
169  h_e1x1_center->Write();
170  h_e3x3_center->Write();
171  h_e5x5_center->Write();
172 
173  h_e1e9->Write();
174  h_e1e25->Write();
175  h_e9e25->Write();
176 
177  h_bprofx->Write();
178  h_bprofy->Write();
179 
180  h_qualx->Write();
181  h_qualy->Write();
182 
183  h_slopex->Write();
184  h_slopey->Write();
185 
186  h_Shape_->Write();
187 
188  for (unsigned int icry=0;icry<25;icry++)
189  {
190  h_mapx[icry]->Write();
191  h_mapy[icry]->Write();
192  }
193 
194  h_e1e9_mapx->Write();
195  h_e1e9_mapy->Write();
196 
197  h_e1e25_mapx->Write();
198  h_e1e25_mapy->Write();
199 
200  h_e9e25_mapx->Write();
201  h_e9e25_mapy->Write();
202 
203  h_tableIsMoving->Write();
204 
205  f.Close();
206 }
207 
208 //
209 // member functions
210 //
211 
212 //========================================================================
213 void
215 //========================================================================
216 
217  using namespace edm;
218  using namespace cms;
219 
220 
221 
223  const EBDigiCollection* digis=nullptr;
224  //std::cout << "EcalSimpleTBAnalyzer::analyze getting product with label: " << digiProducer_.c_str()<< " prodname: " << digiCollection_.c_str() << endl;
225  iEvent.getByLabel( digiProducer_, digiCollection_,pdigis);
226  if ( pdigis.isValid() ) {
227  digis = pdigis.product(); // get a ptr to the product
228  //iEvent.getByLabel( hitProducer_, phits);
229  } else {
230  edm::LogError("EcalSimpleTBAnalyzerError") << "Error! can't get the product " << digiCollection_;
231  }
232 
233  // fetch the digis and compute signal amplitude
235  const EBUncalibratedRecHitCollection* hits=nullptr;
236  //std::cout << "EcalSimpleTBAnalyzer::analyze getting product with label: " << digiProducer_.c_str()<< " prodname: " << digiCollection_.c_str() << endl;
237  iEvent.getByLabel( hitProducer_, hitCollection_,phits);
238  if (phits.isValid()) {
239  hits = phits.product(); // get a ptr to the product
240  //iEvent.getByLabel( hitProducer_, phits);
241  } else {
242  edm::LogError("EcalSimpleTBAnalyzerError") << "Error! can't get the product " << hitCollection_;
243  }
244 
246  const EcalTBHodoscopeRecInfo* recHodo=nullptr;
247  //std::cout << "EcalSimpleTBAnalyzer::analyze getting product with label: " << digiProducer_.c_str()<< " prodname: " << digiCollection_.c_str() << endl;
249  if ( pHodo.isValid() ) {
250  recHodo = pHodo.product(); // get a ptr to the product
251  } else {
252  edm::LogError("EcalSimpleTBAnalyzerError") << "Error! can't get the product " << hodoRecInfoCollection_;
253  }
254 
256  const EcalTBTDCRecInfo* recTDC=nullptr;
257  //std::cout << "EcalSimpleTBAnalyzer::analyze getting product with label: " << digiProducer_.c_str()<< " prodname: " << digiCollection_.c_str() << endl;
259  if ( pTDC.isValid() ) {
260  recTDC = pTDC.product(); // get a ptr to the product
261  } else {
262  edm::LogError("EcalSimpleTBAnalyzerError") << "Error! can't get the product " << tdcRecInfoCollection_;
263  }
264 
265  Handle<EcalTBEventHeader> pEventHeader;
266  const EcalTBEventHeader* evtHeader=nullptr;
267  //std::cout << "EcalSimpleTBAnalyzer::analyze getting product with label: " << digiProducer_.c_str()<< " prodname: " << digiCollection_.c_str() << endl;
268  iEvent.getByLabel( eventHeaderProducer_ , pEventHeader );
269  if ( pEventHeader.isValid() ) {
270  evtHeader = pEventHeader.product(); // get a ptr to the product
271  } else {
272  edm::LogError("EcalSimpleTBAnalyzerError") << "Error! can't get the product " << eventHeaderProducer_;
273  }
274 
275  if (!hits)
276  return;
277 
278  if (!recTDC)
279  return;
280 
281  if (!recHodo)
282  return;
283 
284  if (!evtHeader)
285  return;
286 
287  if (hits->empty())
288  return;
289 
290  if (evtHeader->tableIsMoving())
291  h_tableIsMoving->Fill(evtHeader->eventNumber());
292 
293  // Crystal hit by beam
294  if (xtalInBeam_.null())
295  {
297  std::cout<< "Xtal In Beam is " << xtalInBeam_.ic() << std::endl;
298  }
299  else if (xtalInBeam_ != EBDetId(1,evtHeader->crystalInBeam(),EBDetId::SMCRYSTALMODE))
300  return;
301 
302  if (evtHeader->tableIsMoving())
303  return;
304 
305 
306 // EBDetId maxHitId(0);
307 // float maxHit= -999999.;
308 
309 // for(EBUncalibratedRecHitCollection::const_iterator ithit = hits->begin(); ithit != hits->end(); ++ithit)
310 // {
311 // if (ithit->amplitude()>=maxHit)
312 // {
313 // maxHit=ithit->amplitude();
314 // maxHitId=ithit->id();
315 // }
316 
317 // }
318 
319 // if (maxHitId==EBDetId(0))
320 // return;
321 
322 // EBDetId maxHitId(1,704,EBDetId::SMCRYSTALMODE);
323 
324  //Find EBDetId in a 5x5 Matrix (to be substituted by the Selector code)
325  // Something like
326  // EBFixedWindowSelector<EcalUncalibratedRecHit> Simple5x5Matrix(hits,maxHitId,5,5);
327  // std::vector<EcalUncalibratedRecHit> Energies5x5 = Simple5x5Matrix.getHits();
328 
329 
330  EBDetId Xtals5x5[25];
331  for (unsigned int icry=0;icry<25;icry++)
332  {
333  unsigned int row = icry / 5;
334  unsigned int column= icry %5;
335  int ieta=xtalInBeam_.ieta()+column-2;
336  int iphi=xtalInBeam_.iphi()+row-2;
337  EBDetId tempId(ieta, iphi,EBDetId::ETAPHIMODE);
338  if (tempId.ism()==1)
339  Xtals5x5[icry]=tempId;
340  else
341  Xtals5x5[icry]=EBDetId(0);
343  }
344 
345 
346 
347  double samples_save[10]; for(int i=0; i < 10; ++i) samples_save[i]=0.0;
348 
349  // find the rechit corresponding digi and the max sample
351  double eMax = 0.;
352  if (myDg != digis->end())
353  {
354  EBDataFrame myDigi = (*myDg);
355  for (int sample = 0; sample < myDigi.size(); ++sample)
356  {
357  double analogSample = myDigi.sample(sample).adc();
358  samples_save[sample] = analogSample;
359  // std::cout << analogSample << " ";
360  if ( eMax < analogSample )
361  {
362  eMax = analogSample;
363  }
364  }
365  // std::cout << std::endl;
366  }
367 
368  for(int i =0; i < 10; ++i) {
369  h_Shape_->Fill(double(i)+recTDC->offset(),samples_save[i]);
370  }
371 
372  double amplitude[25];
373 
374  double amplitude3x3=0;
375  double amplitude5x5=0;
376 
377  for (unsigned int icry=0;icry<25;icry++)
378  {
379  if (!Xtals5x5[icry].null())
380  {
381  amplitude[icry]=(hits->find(Xtals5x5[icry]))->amplitude();
382  amplitude5x5 += amplitude[icry];
383  // Is in 3x3?
384  if ( icry == 6 || icry == 7 || icry == 8 ||
385  icry == 11 || icry == 12 || icry ==13 ||
386  icry == 16 || icry == 17 || icry ==18 )
387  {
388  amplitude3x3+=amplitude[icry];
389  }
390  }
391  }
392 
393 
394  h_e1x1->Fill(amplitude[12]);
395  h_e3x3->Fill(amplitude3x3);
396  h_e5x5->Fill(amplitude5x5);
397 
398  h_e1e9->Fill(amplitude[12]/amplitude3x3);
399  h_e1e25->Fill(amplitude[12]/amplitude5x5);
400  h_e9e25->Fill(amplitude3x3/amplitude5x5);
401 
402  if (recTDC)
403  h_ampltdc->Fill(recTDC->offset(),amplitude[12]);
404 
405  if (recHodo)
406  {
407  float x=recHodo->posX();
408  float y=recHodo->posY();
409  float xslope=recHodo->slopeX();
410  float yslope=recHodo->slopeY();
411  float xqual=recHodo->qualX();
412  float yqual=recHodo->qualY();
413 
414  //Filling beam profiles
415  h_bprofx->Fill(x);
416  h_bprofy->Fill(y);
417  h_qualx->Fill(xqual);
418  h_qualy->Fill(yqual);
419  h_slopex->Fill(xslope);
420  h_slopey->Fill(yslope);
421 
422  //Fill central events
423 
424 
425  if ( fabs(x + 2.5) < 2.5 && fabs(y + 0.5) < 2.5)
426  {
427  h_e1x1_center->Fill(amplitude[12]);
428  h_e3x3_center->Fill(amplitude3x3);
429  h_e5x5_center->Fill(amplitude5x5);
430 
431  h_e1e9->Fill(amplitude[12]/amplitude3x3);
432  h_e1e25->Fill(amplitude[12]/amplitude5x5);
433  h_e9e25->Fill(amplitude3x3/amplitude5x5);
434  }
435 
436  for (unsigned int icry=0;icry<25;icry++)
437  {
438  h_mapx[icry]->Fill(x,amplitude[icry]);
439  h_mapy[icry]->Fill(y,amplitude[icry]);
440  }
441 
442  h_e1e9_mapx->Fill(x,amplitude[12]/amplitude3x3);
443  h_e1e9_mapy->Fill(y,amplitude[12]/amplitude3x3);
444 
445  h_e1e25_mapx->Fill(x,amplitude[12]/amplitude5x5);
446  h_e1e25_mapy->Fill(y,amplitude[12]/amplitude5x5);
447 
448  h_e9e25_mapx->Fill(x,amplitude3x3/amplitude5x5);
449  h_e9e25_mapy->Fill(y,amplitude3x3/amplitude5x5);
450  }
451 
452 }
453 
454 
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
std::string hodoRecInfoCollection_
boost::transform_iterator< IterHelp, boost::counting_iterator< int > > const_iterator
bool tableIsMoving() const
Tell if the table is Moving.
std::string eventHeaderCollection_
constexpr bool null() const
is this a null id ?
Definition: DetId.h:52
void analyze(const edm::Event &, const edm::EventSetup &) override
EcalMGPASample sample(int i) const
Definition: EcalDataFrame.h:29
int crystalInBeam() const
Returns the crystal which is being hit by the beam (in the internal SM numbering scheme) ...
int ism() const
get the ECAL/SM id
Definition: EBDetId.h:59
int size() const
Definition: EcalDataFrame.h:26
int iphi() const
get the crystal iphi
Definition: EBDetId.h:51
const_iterator find(id_type i) const
int iEvent
Definition: GenABIO.cc:224
double f[11][100]
int ieta() const
get the crystal ieta
Definition: EBDetId.h:49
bool isValid() const
Definition: HandleBase.h:74
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:480
static const int ETAPHIMODE
Definition: EBDetId.h:158
int ic() const
get ECAL/crystal number inside SM
Definition: EBDetId.cc:41
Namespace of DDCMS conversion namespace.
EcalSimpleTBAnalyzer(const edm::ParameterSet &)
T const * product() const
Definition: Handle.h:74
int eventNumber() const
Returns the event number.
const_iterator end() const
iterator find(key_type k)
HLT enums.
static const int SMCRYSTALMODE
Definition: EBDetId.h:159
float offset() const
int adc() const
get the ADC sample (12 bits)