CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ParticleTowerProducer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: ParticleTowerProducer
4 // Class: ParticleTowerProducer
5 //
13 //
14 // Original Author: Yetkin Yilmaz,32 4-A08,+41227673039,
15 // Created: Thu Jan 20 19:53:58 CET 2011
16 //
17 //
18 
19 
20 // system include files
21 #include <memory>
22 
23 
24 // user include files
27 
30 
32 
34 
36 
41 
46 
47 #include "TMath.h"
48 #include "TRandom.h"
49 
50 
51 
52 
53 //
54 // constants, enums and typedefs
55 //
56 
57 
58 //
59 // static data member definitions
60 //
61 
62 //
63 // constructors and destructor
64 //
66  geo_(0)
67 {
68  //register your products
69  src_ = consumes<reco::PFCandidateCollection>(iConfig.getParameter<edm::InputTag>("src"));
70  useHF_ = iConfig.getParameter<bool>("useHF");
71 
72  produces<CaloTowerCollection>();
73 
74  //now do what ever other initialization is needed
75  random_ = new TRandom();
76  PI = TMath::Pi();
77 
78 
79 
80 }
81 
82 
84 {
85 
86  // do anything here that needs to be done at desctruction time
87  // (e.g. close files, deallocate resources etc.)
88 
89 }
90 
91 
92 //
93 // member functions
94 //
95 
96 // ------------ method called to produce the data ------------
97 void
99 {
100  using namespace edm;
101 
102  if(!geo_){
104  iSetup.get<CaloGeometryRecord>().get(pG);
105  geo_ = pG.product();
106  }
107 
108 
109  resetTowers(iEvent, iSetup);
110 
111 
113  iEvent.getByToken(src_, inputsHandle);
114 
115  for(reco::PFCandidateCollection::const_iterator ci = inputsHandle->begin(); ci!=inputsHandle->end(); ++ci) {
116 
117  const reco::PFCandidate& particle = *ci;
118 
119  // put a cutoff if you want
120  //if(particle.et() < 0.3) continue;
121 
122  double eta = particle.eta();
123 
124  if(!useHF_ && fabs(eta) > 3. ) continue;
125 
126  int ieta = eta2ieta(eta);
127  if(ieta==-1) continue;
128  if(eta<0) ieta *= -1;
129 
130  int iphi = phi2iphi(particle.phi(),ieta);
131 
133  if(abs(ieta)<=16) sd = HcalBarrel;
134  else if(fabs(eta)< 3.) sd = HcalEndcap; // Use the endcap until eta =3
135  else sd = HcalForward;
136 
137  HcalDetId hid = HcalDetId(sd,ieta,iphi,1); // assume depth=1
138 
139  // check against the old method (boundaries slightly shifted in the endcaps
140  /*
141  HcalDetId hid_orig = getNearestTower(particle);
142 
143  if(hid != hid_orig)
144  {
145  if(abs((hid).ieta()-(hid_orig).ieta())>1 || abs((hid).iphi()-(hid_orig).iphi()) >1 ){
146 
147  int phi_diff = 1;
148  if(abs((hid).ieta())>39 || abs((hid_orig).ieta())>39) phi_diff = 4;
149  else if(abs((hid).ieta())>20 || abs((hid_orig).ieta())>20) phi_diff = 2;
150 
151  if(abs((hid).ieta()-(hid_orig).ieta()) > 1 || abs((hid).iphi()-(hid_orig).iphi()) > phi_diff ){
152  std::cout<<" eta "<<eta<<std::endl;
153  std::cout<<" hid "<<hid<<std::endl;
154  std::cout<<" old method "<<hid_orig<<std::endl;
155  }
156  }
157  }
158  */
159  towers_[hid] += particle.et();
160  }
161 
162 
163  std::auto_ptr<CaloTowerCollection> prod(new CaloTowerCollection());
164 
165  for ( std::map< DetId, double >::const_iterator iter = towers_.begin();
166  iter != towers_.end(); ++iter ){
167 
168  CaloTowerDetId newTowerId(iter->first.rawId());
169  double et = iter->second;
170 
171  if(et>0){
172 
173  GlobalPoint pos =geo_->getGeometry(newTowerId)->getPosition();
174 
175  if(!useHF_ && fabs(pos.eta()) > 3. ) continue;
176 
177  // currently sets et = pt, mass to zero
178  // pt, eta , phi, mass
179  reco::Particle::PolarLorentzVector p4(et,pos.eta(),pos.phi(),0.);
180 
181  CaloTower newTower(newTowerId,et,0,0,0,0,p4,pos,pos);
182  prod->push_back(newTower);
183  }
184  }
185 
186 
187  //For reference, Calo Tower Constructors
188 
189  /*
190  CaloTower(const CaloTowerDetId& id,
191  double emE, double hadE, double outerE,
192  int ecal_tp, int hcal_tp,
193  const PolarLorentzVector p4,
194  GlobalPoint emPosition, GlobalPoint hadPosition);
195 
196  CaloTower(const CaloTowerDetId& id,
197  double emE, double hadE, double outerE,
198  int ecal_tp, int hcal_tp,
199  const LorentzVector p4,
200  GlobalPoint emPosition, GlobalPoint hadPosition);
201  */
202 
203 
204  iEvent.put(prod);
205 
206 
207 }
208 
209 // ------------ method called once each job just before starting event loop ------------
210 void
212 {
213  // tower edges from fast sim, used starting at index 30 for the HF
214  const double etatow[42] = {0.000, 0.087, 0.174, 0.261, 0.348, 0.435, 0.522, 0.609, 0.696, 0.783, 0.870, 0.957, 1.044, 1.131, 1.218, 1.305, 1.392, 1.479, 1.566, 1.653, 1.740, 1.830, 1.930, 2.043, 2.172, 2.322, 2.500, 2.650, 2.853, 3.000, 3.139, 3.314, 3.489, 3.664, 3.839, 4.013, 4.191, 4.363, 4.538, 4.716, 4.889, 5.191};
215 
216  // tower centers derived directly from by looping over HCAL towers and printing out the values, used up until eta = 3 where the HF/Endcap interface becomes problematic
217  const double etacent[40] = {
218  0.0435, // 1
219  0.1305, // 2
220  0.2175, // 3
221  0.3045, // 4
222  0.3915, // 5
223  0.4785, // 6
224  0.5655, // 7
225  0.6525, // 8
226  0.7395, // 9
227  0.8265, // 10
228  0.9135, // 11
229  1.0005, // 12
230  1.0875, // 13
231  1.1745, // 14
232  1.2615, // 15
233  1.3485, // 16
234  1.4355, // 17
235  1.5225, // 18
236  1.6095, // 19
237  1.6965, // 20
238  1.785 , // 21
239  1.88 , // 22
240  1.9865, // 23
241  2.1075, // 24
242  2.247 , // 25
243  2.411 , // 26
244  2.575 , // 27
245  2.759 , // 28
246  2.934 , // 29
247  2.90138,// 29
248  3.04448,// 30
249  3.21932,// 31
250  3.39462,// 32
251  3.56966,// 33
252  3.74485,// 34
253  3.91956,// 35
254  4.09497,// 36
255  4.27007,// 37
256  4.44417,// 38
257  4.62046 // 39
258  };
259 
260  // Use the real towers centrers for the barrel and endcap up to eta=3
261  etaedge[0] = 0.;
262  for(int i=1;i<30;i++){
263  etaedge[i] = (etacent[i-1]-etaedge[i-1])*2.0 + etaedge[i-1];
264  //std::cout<<" i "<<i<<" etaedge "<<etaedge[i]<<std::endl;
265  }
266  // beyond eta = 3 just use the fast sim values
267  if(useHF_){
268  for(int i=30;i<42;i++){
269  etaedge[i]=etatow[i];
270  //std::cout<<" i "<<i<<" etaedge "<<etaedge[i]<<std::endl;
271  }
272  }
273 }
274 
275 // ------------ method called once each job just after ending the event loop ------------
276 void
278 }
279 
280 
282 {
283 
284  std::vector<DetId> alldid = geo_->getValidDetIds();
285 
286  for(std::vector<DetId>::const_iterator did=alldid.begin(); did != alldid.end(); did++){
287  if( (*did).det() == DetId::Hcal ){
288  HcalDetId hid = HcalDetId(*did);
289  if( hid.depth() == 1 ) {
290 
291  if(!useHF_){
292  GlobalPoint pos =geo_->getGeometry(hid)->getPosition();
293  //if((hid).iphi()==1)std::cout<<" ieta "<<(hid).ieta()<<" eta "<<pos.eta()<<" iphi "<<(hid).iphi()<<" phi "<<pos.phi()<<std::endl;
294  if(fabs(pos.eta())>3.) continue;
295  }
296  towers_[(*did)] = 0.;
297  }
298 
299  }
300  }
301 
302 
303 
304 
305  //print out tower eta boundaries
306  /*
307  int current_ieta=0;
308  float testphi =0.;
309  for(double testeta=1.7; testeta<=5.4;testeta+=0.00001){
310  HcalDetId hid = getNearestTower(testeta,testphi);
311  if((hid).ieta()!=current_ieta) {
312  std::cout<<" new ieta "<<current_ieta<<" testeta "<<testeta<<std::endl;
313  current_ieta = (hid).ieta();
314  }
315  }
316  */
317 
318 }
319 
320 
321 
322 
324 
325  double eta = in.eta();
326  double phi = in.phi();
327 
328  double minDeltaR = 9999;
329 
330  std::vector<DetId> alldid = geo_->getValidDetIds();
331 
332  DetId returnId;
333 
334  //int nclosetowers=0;
335 
336  for(std::vector<DetId>::const_iterator did=alldid.begin(); did != alldid.end(); did++){
337  if( (*did).det() == DetId::Hcal ){
338 
339  HcalDetId hid(*did);
340 
341  // which layer is irrelevant for an eta-phi map, no?
342 
343  if( hid.depth() != 1 ) continue;
344 
345  GlobalPoint pos =geo_->getGeometry(hid)->getPosition();
346 
347  double hcalEta = pos.eta();
348  double hcalPhi = pos.phi();
349 
350  //std::cout<<" transverse distance = "<<sqrt(pos.x()*pos.x()+pos.y()*pos.y())<<std::endl;
351 
352  //std::cout<<" ieta "<<(hid).ieta()<<" iphi "<<(hid).iphi()<<" hcalEta "<<hcalEta<<" hcalPhi "<<hcalPhi<<std::endl;
353 
354  double deltaR = reco::deltaR(eta,phi,hcalEta,hcalPhi);
355 
356  // need to factor in the size of the tower
357  double towersize = 0.087;
358 
359  int ieta = (hid).ieta();
360 
361  if(abs(ieta)>21){
362  if(abs(ieta)>29) towersize=0.175;
363  else{
364  if(abs(ieta)==22) towersize=0.1;
365  else if(abs(ieta)==23) towersize=0.113;
366  else if(abs(ieta)==24) towersize=0.129;
367  else if(abs(ieta)==25) towersize=0.16;
368  else if(abs(ieta)==26) towersize=0.168;
369  else if(abs(ieta)==27) towersize=0.15;
370  else if(abs(ieta)==28) towersize=0.218;
371  else if(abs(ieta)==29) towersize=0.132;
372  }
373  }
374 
375  deltaR /= towersize;
376  //if(deltaR<1/3.) nclosetowers++;
377 
378  if(deltaR<minDeltaR){
379  returnId = DetId(*did);
380  minDeltaR = deltaR;
381  }
382 
383  //if(abs(eta-hcalEta)<towersize/2. && abs(phi-hcalPhi)<towersize/2.) break;
384  }
385  }
386  //if(nclosetowers>1)std::cout<<"eta "<<eta<<" phi "<<phi<<" minDeltaR "<<minDeltaR<<" nclosetowers "<<nclosetowers<<std::endl;
387  return returnId;
388 
389 
390 }
391 
392 
394 
395  // get closest tower by delta R matching
396  // Now obsolute, instead use faster premade eta-phi grid
397 
398  double minDeltaR = 9999;
399 
400  std::vector<DetId> alldid = geo_->getValidDetIds();
401 
402  DetId returnId;
403 
404  //int nclosetowers=0;
405 
406  for(std::vector<DetId>::const_iterator did=alldid.begin(); did != alldid.end(); did++){
407  if( (*did).det() == DetId::Hcal ){
408 
409  HcalDetId hid(*did);
410 
411  // which layer is irrelevant for an eta-phi map, no?
412 
413  if( hid.depth() != 1 ) continue;
414 
415  GlobalPoint pos =geo_->getGeometry(hid)->getPosition();
416 
417  double hcalEta = pos.eta();
418  double hcalPhi = pos.phi();
419 
420  //std::cout<<" transverse distance = "<<sqrt(pos.x()*pos.x()+pos.y()*pos.y())<<std::endl;
421 
422  //std::cout<<" ieta "<<(hid).ieta()<<" iphi "<<(hid).iphi()<<" hcalEta "<<hcalEta<<" hcalPhi "<<hcalPhi<<std::endl;
423 
424  double deltaR = reco::deltaR(eta,phi,hcalEta,hcalPhi);
425 
426  // need to factor in the size of the tower
427  double towersize = 0.087;
428 
429  int ieta = (hid).ieta();
430 
431  if(abs(ieta)>21){
432  if(abs(ieta)>29) towersize=0.175;
433  else{
434  if(abs(ieta)==22) towersize=0.1;
435  else if(abs(ieta)==23) towersize=0.113;
436  else if(abs(ieta)==24) towersize=0.129;
437  else if(abs(ieta)==25) towersize=0.16;
438  else if(abs(ieta)==26) towersize=0.168;
439  else if(abs(ieta)==27) towersize=0.15;
440  else if(abs(ieta)==28) towersize=0.218;
441  else if(abs(ieta)==29) towersize=0.132;
442  }
443  }
444 
445  deltaR /= towersize;
446  //if(deltaR<1/3.) nclosetowers++;
447 
448  if(deltaR<minDeltaR){
449  returnId = DetId(*did);
450  minDeltaR = deltaR;
451  }
452 
453  //if(abs(eta-hcalEta)<towersize/2. && abs(phi-hcalPhi)<towersize/2.) break;
454  }
455  }
456  //if(nclosetowers>1)std::cout<<"eta "<<eta<<" phi "<<phi<<" minDeltaR "<<minDeltaR<<" nclosetowers "<<nclosetowers<<std::endl;
457  return returnId;
458 
459 
460 }
461 
462 
463 
464 
465 // Taken from FastSimulation/CalorimeterProperties/src/HCALProperties.cc
466 // Note this returns an abs(ieta)
468  // binary search in the array of towers eta edges
469 
470  int size = 42;
471  if(!useHF_) size = 30;
472 
473  if(fabs(eta)>etaedge[size-1]) return -1;
474 
475  double x = fabs(eta);
476  int curr = size / 2;
477  int step = size / 4;
478  int iter;
479  int prevdir = 0;
480  int actudir = 0;
481 
482  for (iter = 0; iter < size ; iter++) {
483 
484  if( curr >= size || curr < 1 )
485  std::cout << " ParticleTowerProducer::eta2ieta - wrong current index = "
486  << curr << " !!!" << std::endl;
487 
488  if ((x <= etaedge[curr]) && (x > etaedge[curr-1])) break;
489  prevdir = actudir;
490  if(x > etaedge[curr]) {actudir = 1;}
491  else {actudir = -1;}
492  if(prevdir * actudir < 0) { if(step > 1) step /= 2;}
493  curr += actudir * step;
494  if(curr > size) curr = size;
495  else { if(curr < 1) {curr = 1;}}
496 
497  /*
498  std::cout << " HCALProperties::eta2ieta end of iter." << iter
499  << " curr, etaedge[curr-1], etaedge[curr] = "
500  << curr << " " << etaedge[curr-1] << " " << etaedge[curr] << std::endl;
501  */
502 
503  }
504 
505  /*
506  std::cout << " HCALProperties::eta2ieta for input x = " << x
507  << " found index = " << curr-1
508  << std::endl;
509  */
510 
511  return curr;
512 }
513 
514 int ParticleTowerProducer::phi2iphi(double phi, int ieta) const {
515 
516  if(phi<0) phi += 2.*PI;
517  else if(phi> 2.*PI) phi -= 2.*PI;
518 
519  int iphi = (int) TMath::Ceil(phi/2.0/PI*72.);
520  // take into account larger granularity in endcap (x2) and at the end of the HF (x4)
521  if(abs(ieta)>20){
522  if(abs(ieta)<40) iphi -= (iphi+1)%2;
523  else {
524  iphi -= (iphi+1)%4;
525  if(iphi==-1) iphi=71;
526  }
527  }
528 
529  return iphi;
530 
531 }
532 
533  //define this as a plug-in
const double Pi
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
static const double etatow[]
int phi2iphi(double phi, int ieta) const
virtual double et() const
transverse energy
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
Geom::Phi< T > phi() const
Definition: PV3DBase.h:69
double deltaR(const T1 &t1, const T2 &t2)
Definition: deltaR.h:48
virtual double eta() const
momentum pseudorapidity
ParticleTowerProducer(const edm::ParameterSet &)
void resetTowers(edm::Event &iEvent, const edm::EventSetup &iSetup)
int depth() const
get the tower depth
Definition: HcalDetId.h:55
int iEvent
Definition: GenABIO.cc:230
std::map< DetId, double > towers_
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:120
double p4[4]
Definition: TauolaWrapper.h:92
HcalSubdetector
Definition: HcalAssistant.h:31
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
static const double etacent[]
double deltaR(double eta1, double eta2, double phi1, double phi2)
Definition: TreeUtility.cc:17
Definition: DetId.h:18
int eta2ieta(double eta) const
double sd
const T & get() const
Definition: EventSetup.h:56
edm::EDGetTokenT< reco::PFCandidateCollection > src_
T const * product() const
Definition: ESHandle.h:86
std::vector< DetId > getValidDetIds() const
Get the list of all valid detector ids.
Definition: CaloGeometry.cc:90
T eta() const
Definition: PV3DBase.h:76
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:39
edm::SortedCollection< CaloTower > CaloTowerCollection
Definition: CaloTowerFwd.h:15
const CaloCellGeometry * getGeometry(const DetId &id) const
Get the cell geometry of a given detector id.
Definition: CaloGeometry.cc:76
math::PtEtaPhiMLorentzVector PolarLorentzVector
Lorentz vector.
Definition: Particle.h:23
CaloGeometry const * geo_
DetId getNearestTower(const reco::PFCandidate &in) const
tuple cout
Definition: gather_cfg.py:121
virtual void produce(edm::Event &, const edm::EventSetup &)
const GlobalPoint & getPosition() const
Returns the position of reference for this cell.
virtual double phi() const
momentum azimuthal angle
tuple size
Write out results.