CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
EcalEBTrigPrimAnalyzer.cc
Go to the documentation of this file.
1 // system include files
2 #include <memory>
3 #include <utility>
4 
5 // user include files
9 
14 
16 
19 
21 
24 
25 //#include "CalibCalorimetry/EcalTPGTools/interface/EcalEBTPGScale.h"
26 
27 #include "EcalEBTrigPrimAnalyzer.h"
28 
29 #include <TMath.h>
30 
31 using namespace edm;
33 
35  : tokens_(consumesCollector())
36 
37 {
38  ecal_parts_.push_back("Barrel");
39 
40  histfile_ = new TFile("histos.root", "RECREATE");
41  tree_ = new TTree("TPGtree", "TPGtree");
42  tree_->Branch("tpIphi", &tpIphi_, "tpIphi/I");
43  tree_->Branch("tpIeta", &tpIeta_, "tpIeta/I");
44  tree_->Branch("rhIphi", &rhIphi_, "rhIphi/I");
45  tree_->Branch("rhIeta", &rhIeta_, "rhIeta/I");
46  tree_->Branch("eRec", &eRec_, "eRec/F");
47  tree_->Branch("tpgADC", &tpgADC_, "tpgADC/I");
48  tree_->Branch("tpgGeV", &tpgGeV_, "tpgGeV/F");
49  tree_->Branch("ttf", &ttf_, "ttf/I");
50  tree_->Branch("fg", &fg_, "fg/I");
51  for (unsigned int i = 0; i < ecal_parts_.size(); ++i) {
52  char title[30];
53  sprintf(title, "%s_Et", ecal_parts_[i].c_str());
54  ecal_et_[i] = new TH1I(title, "Et", 255, 0, 255);
55  sprintf(title, "%s_ttf", ecal_parts_[i].c_str());
56  ecal_tt_[i] = new TH1I(title, "TTF", 10, 0, 10);
57  sprintf(title, "%s_fgvb", ecal_parts_[i].c_str());
58  ecal_fgvb_[i] = new TH1I(title, "FGVB", 10, 0, 10);
59  }
60  eTTmapToken_ = esConsumes<EcalTrigTowerConstituentsMap, IdealGeometryRecord>();
61  recHits_ = iConfig.getParameter<bool>("AnalyzeRecHits");
62  debug_ = iConfig.getParameter<bool>("Debug");
63  rechits_labelEB_ = consumes<EcalRecHitCollection>(iConfig.getParameter<edm::InputTag>("inputRecHitsEB"));
64  primToken_ = consumes<EcalEBTrigPrimDigiCollection>(iConfig.getParameter<edm::InputTag>("inputTP"));
65  barrelGeomToken_ = esConsumes<CaloSubdetectorGeometry, EcalBarrelGeometryRecord>(edm::ESInputTag("", "EcalBarrel"));
66  tokenEBdigi_ = consumes<EBDigiCollection>(iConfig.getParameter<edm::InputTag>("barrelEcalDigis"));
67  nEvents_ = 0;
68 
69  hTPvsTow_eta_ = new TH2F("TP_vs_Tow_eta", "TP vs Tow eta ; #eta(tow); #eta(tp)", 50, -2.5, 2.5, 50, -2.5, 2.5);
70  hAllTPperEvt_ = new TH1F("AllTPperEvt", "TP per Event; N_{TP}; ", 100, 0., 20000.);
71  hTPperEvt_ = new TH1F("TPperEvt", "N_{TP} per Event; N_{TP}; ", 100, 0., 500.);
72  hTP_iphiVsieta_ = new TH2F("TP_iphiVsieta", "TP i#phi vs i#eta ; i#eta(tp); i#phi(tp)", 10, 70, 80, 10, 340, 350);
74  new TH2F("TP_iphiVsieta_fullrange", "TP i#phi vs i#eta ; i#eta(tp); i#phi(tp)", 200, -100, 100, 350, 0, 350);
75 
76  if (recHits_) {
78  new TH2F("TP_vs_Tow_ieta", "TP vs Tow ieta ; i#eta(tow); i#eta(tp)", 200, -100, 100, 200, -100, 100);
79 
80  hTPvsRechit_ = new TH2F("TP_vs_RecHit", "TP vs rechit Et;E_{T}(rh) (GeV);E_{T}(tp) (GeV)", 100, 0, 50, 100, 0, 50);
81  hDeltaEt_ = new TH1F("DeltaEt", "[Et(rh)-Et(TP)]/Et(rh); [E_{T}(rh)-E_{T}(tp)]/E_{T}(rh); Counts", 200, -1, 1);
82  hTPoverRechit_ = new TH1F("TP_over_RecHit", "Et(TP/rechit); E_{T}(tp)/E_{T}(rh); Counts", 200, 0, 2);
83  hRechitEt_ = new TH1F("RecHitEt", "E_{T};E_{T}(rh) (GeV);Counts", 100, 0, 50);
84  hTPEt_ = new TH1F("TPEt", "E_{T}{tp);E_{T}(rh) (GeV);Count", 100, 0, 50);
85  hRatioEt_ = new TH1F("RatioTPoverRH", "Et", 100, 0, 50);
86  hAllRechitEt_ = new TH1F("AllRecHit", "Et", 100, 0, 50);
87 
88  hRH_iphiVsieta_ = new TH2F("RH_iphiVsieta", "RH i#phi vs i#eta ; i#eta(rh); i#phi(rh)", 10, 70, 80, 10, 340, 350);
90  new TH2F("RH_iphiVsieta_fullrange", "RH i#phi vs i#eta ; i#eta(rh); i#phi(rh)", 200, -100, 100, 350, 0, 350);
91  }
92 }
93 
95  // do anything here that needs to be done at desctruction time
96  // (e.g. close files, deallocate resources etc.)
97 
98  histfile_->Write();
99  histfile_->Close();
100 }
101 
103 
104 //
105 // member functions
106 //
107 
108 // ------------ method called to analyze the data ------------
110  using namespace edm;
111  using namespace std;
112  nEvents_++;
113 
114  if (nEvents_ == 1)
115  this->init(iSetup);
116 
117  // Get input
119  iEvent.getByToken(primToken_, tp);
120  //
121  /*
122  edm::Handle<EBDigiCollection> barrelDigiHandle;
123  const EBDigiCollection *ebdigi=NULL;
124  iEvent.getByToken(tokenEBdigi_,barrelDigiHandle);
125  ebdigi=barrelDigiHandle.product();
126  */
127 
128  for (unsigned int i = 0; i < tp.product()->size(); i++) {
129  EcalEBTriggerPrimitiveDigi d = (*(tp.product()))[i];
130  int subdet = 0;
131  if (subdet == 0) {
132  ecal_et_[subdet]->Fill(d.encodedEt());
133  }
134  }
135 
136  // if (!recHits_) return;
137 
138  edm::Handle<EcalRecHitCollection> rechit_EB_col;
139  if (recHits_) {
140  // get the RecHits
141  iEvent.getByToken(rechits_labelEB_, rechit_EB_col);
142  }
143 
144  edm::ESHandle<CaloSubdetectorGeometry> theBarrelGeometry_handle = iSetup.getHandle(barrelGeomToken_);
145  const CaloSubdetectorGeometry* theBarrelGeometry = theBarrelGeometry_handle.product();
146 
147  if (debug_) {
148  std::cout << " TP analyzer =================> Treating event " << iEvent.id() << " Number of TPs "
149  << tp.product()->size() << std::endl;
150  if (recHits_)
151  std::cout << " Number of EB rechits " << rechit_EB_col.product()->size() << std::endl;
152  }
153  hAllTPperEvt_->Fill(float(tp.product()->size()));
154 
155  //if ( iEvent.id().event() != 648) return;
156 
157  //EcalEBTPGScale ecalScale ;
158  EcalTPGScale ecalScale(tokens_, iSetup);
159 
160  // for(unsigned int iDigi = 0; iDigi < ebdigi->size() ; ++iDigi) {
161  // EBDataFrame myFrame((*ebdigi)[iDigi]);
162  // const EBDetId & myId = myFrame.id();
163 
164  int nTP = 0;
165  for (unsigned int i = 0; i < tp.product()->size(); i++) {
166  EcalEBTriggerPrimitiveDigi d = (*(tp.product()))[i];
167  const EBDetId TPid = d.id();
168  // if ( myId != TPid ) continue;
169 
170  /*
171  int index=getIndex(ebdigi,coarser);
172  std::cout << " Same xTal " << myId << " " << TPid << " coarser " << coarser << " index " << index << std::endl;
173  double Et = ecalScale.getTPGInGeV(d.encodedEt(), coarser) ;
174  */
175  //this works if the energy is compressed into 8 bits float Et=d.compressedEt()/2.; // 2ADC counts/GeV
176  float Et = d.encodedEt() / 8.; // 8 ADCcounts/GeV
177  if (Et <= 5)
178  continue;
179  //if ( Et<= 0 ) continue;
180  nTP++;
181 
182  std::cout << " TP digi size " << d.size() << std::endl;
183  for (int iBx = 0; iBx < d.size(); iBx++) {
184  std::cout << " TP samples " << d.sample(iBx) << std::endl;
185  }
186 
187  // EcalTrigTowerDetId coarser=(*eTTmap_).towerOf(myId);
188  // does not work float etaTow = theBarrelGeometry->getGeometry(coarser)->getPosition().theta();
189  // float etaTP = theBarrelGeometry->getGeometry(TPid)->getPosition().eta();
190  // does not work hTPvsTow_eta_->Fill ( etaTow, etaTP );
191  // hTPvsTow_ieta_->Fill ( coarser.ieta(), TPid.ieta() );
192 
193  tpIphi_ = TPid.iphi();
194  tpIeta_ = TPid.ieta();
195  tpgADC_ = d.encodedEt();
196  tpgGeV_ = Et;
197 
198  hTP_iphiVsieta_->Fill(TPid.ieta(), TPid.iphi(), Et);
199  hTP_iphiVsieta_fullrange_->Fill(TPid.ieta(), TPid.iphi(), Et);
200 
201  if (recHits_) {
202  for (unsigned int j = 0; j < rechit_EB_col.product()->size(); j++) {
203  const EBDetId& myid1 = (*rechit_EB_col.product())[j].id();
204  float theta = theBarrelGeometry->getGeometry(myid1)->getPosition().theta();
205  float rhEt = ((*rechit_EB_col.product())[j].energy()) * sin(theta);
206  if (myid1 == TPid) {
207  if (debug_)
208  std::cout << " Analyzer same cristal " << myid1 << " " << TPid << std::endl;
209  // if ( rhEt < 1.5 && Et > 10 ) {
210  // std::cout << " TP analyzer =================> Treating event "<<iEvent.id()<< ", Number of EB rechits "<< rechit_EB_col.product()->size() << " Number of TPs " << tp.product()->size() << std::endl;
211  //std::cout << " TP compressed et " << d.encodedEt() << " Et in GeV " << Et << " RH Et " << rhEt << " Et/rhEt " << Et/rhEt << std::endl;
212  //}
213 
214  //std::cout << " TP out " << d << std::endl;
215 
216  // for (int isam=0;isam< d.size();++isam) {
217  // std::cout << " d[isam].raw() " << d[isam].raw() << std::endl;
218  //}
219 
220  rhIphi_ = myid1.iphi();
221  rhIeta_ = myid1.ieta();
222  hRH_iphiVsieta_->Fill(myid1.ieta(), myid1.iphi(), rhEt);
223  hRH_iphiVsieta_fullrange_->Fill(myid1.ieta(), myid1.iphi(), rhEt);
224 
225  hTPvsRechit_->Fill(rhEt, Et);
226  hTPoverRechit_->Fill(Et / rhEt);
227  hDeltaEt_->Fill((rhEt - Et) / rhEt);
228  if (debug_)
229  std::cout << " TP compressed et " << d.encodedEt() << " Et in GeV " << Et << " RH Et " << rhEt
230  << " Et/rhEt " << Et / rhEt << std::endl;
231  hRechitEt_->Fill(rhEt);
232  hTPEt_->Fill(Et);
233  if (rhEt < 1000000)
234  eRec_ = rhEt;
235  tree_->Fill();
236  }
237 
238  } // end loop of recHits
239  } // if recHits
240 
241  } // end loop over TP collection
242 
243  // } // end loop over digi collection
244 
245  hTPperEvt_->Fill(float(nTP));
246 
247  if (recHits_) {
248  hRatioEt_->Divide(hTPEt_, hRechitEt_);
249  for (unsigned int j = 0; j < rechit_EB_col.product()->size(); j++) {
250  const EBDetId& myid1 = (*rechit_EB_col.product())[j].id();
251  float theta = theBarrelGeometry->getGeometry(myid1)->getPosition().theta();
252  float rhEt = ((*rechit_EB_col.product())[j].energy()) * sin(theta);
253  if (rhEt > 0)
254  hAllRechitEt_->Fill(rhEt);
255  }
256  }
257 }
258 
260  for (unsigned int i = 0; i < ecal_parts_.size(); ++i) {
261  ecal_et_[i]->Write();
262  ecal_tt_[i]->Write();
263  ecal_fgvb_[i]->Write();
264  }
265 
266  hAllTPperEvt_->Write();
267  hTPperEvt_->Write();
268 
269  if (recHits_) {
270  hTPvsTow_ieta_->Write();
271  hTPvsTow_eta_->Write();
272  hTPvsRechit_->Write();
273  hTPoverRechit_->Write();
274  hAllRechitEt_->Write();
275  hRechitEt_->Write();
276  hDeltaEt_->Write();
277  hTPEt_->Write();
278  hRatioEt_->Write();
279  hTP_iphiVsieta_->Write();
280  hRH_iphiVsieta_->Write();
281  hTP_iphiVsieta_fullrange_->Write();
282  hRH_iphiVsieta_fullrange_->Write();
283  }
284 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
Geom::Theta< T > theta() const
edm::EDGetTokenT< EcalRecHitCollection > rechits_labelEB_
edm::ESGetToken< CaloSubdetectorGeometry, EcalBarrelGeometryRecord > barrelGeomToken_
int iphi() const
get the crystal iphi
Definition: EBDetId.h:51
tuple d
Definition: ztail.py:151
EcalTPGScale::Tokens tokens_
int iEvent
Definition: GenABIO.cc:224
edm::EDGetTokenT< EBDigiCollection > tokenEBdigi_
const EcalEBTriggerPrimitiveSample & sample(int i) const
int encodedEt() const
get the 10 bits Et of interesting sample
int ieta() const
get the crystal ieta
Definition: EBDetId.h:49
EcalEBTrigPrimAnalyzer(const edm::ParameterSet &)
std::vector< edm::EDGetTokenT< int > > tokens_
edm::ESGetToken< EcalTrigTowerConstituentsMap, IdealGeometryRecord > eTTmapToken_
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
std::vector< std::string > ecal_parts_
edm::EventID id() const
Definition: EventBase.h:59
edm::ESHandle< EcalTrigTowerConstituentsMap > eTTmap_
tuple cout
Definition: gather_cfg.py:144
edm::EDGetTokenT< EcalEBTrigPrimDigiCollection > primToken_
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:157
void analyze(const edm::Event &, const edm::EventSetup &) override
void init(const edm::EventSetup &)