CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
EcalTPInputAnalyzer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Class: EcalTPInputAnalyzer
4 //
10 //
11 //
12 // Original Author: Ursula Berthon
13 // Created: Thu Jul 4 11:38:38 CEST 2005
14 //
15 //
16 
17 // system include files
18 #include <memory>
19 #include <utility>
20 
21 // user include files
23 
26 
29 
32 #include "EcalTPInputAnalyzer.h"
33 
34 using namespace edm;
35 
37 
38 {
39  histfile_ = new TFile("histos.root", "UPDATE");
40  histEndc = new TH1I("AdcE", "Adc-s for Endcap", 100, 0., 5000.);
41  histBar = new TH1I("AdcB", "Adc-s for Barrel", 100, 0., 5000.);
42  ecal_parts_.push_back("Barrel");
43  ecal_parts_.push_back("Endcap");
44 
45  // for (unsigned int i=0;i<2;++i) {
46  // ecal_et_[i]=new TH1I(ecal_parts_[i].c_str(),"Et",255,0,255);
47  // char title[30];
48  // sprintf(title,"%s_ttf",ecal_parts_[i].c_str());
49  // ecal_tt_[i]=new TH1I(title,"TTF",10,0,10);
50  // sprintf(title,"%s_fgvb",ecal_parts_[i].c_str());
51  // ecal_fgvb_[i]=new TH1I(title,"FGVB",10,0,10);
52  // }
53  producer_ = iConfig.getParameter<std::string>("Producer");
54  ebLabel_ = iConfig.getParameter<std::string>("EBLabel");
55  eeLabel_ = iConfig.getParameter<std::string>("EELabel");
56 }
57 
59  // do anything here that needs to be done at desctruction time
60  // (e.g. close files, deallocate resources etc.)
61 
62  histfile_->Write();
63  histfile_->Close();
64 }
65 
66 //
67 // member functions
68 //
69 
70 // ------------ method called to analyze the data ------------
72  using namespace edm;
73  using namespace std;
74 
75  bool barrel = true;
78  if (!iEvent.getByLabel(producer_, ebLabel_, ebDigis)) {
79  barrel = false;
80  edm::LogWarning("EcalTPG") << " Couldnt find Barrel dataframes with Producer:" << producer_
81  << " and label: " << ebLabel_;
82  }
83  bool endcap = true;
84  if (!iEvent.getByLabel(producer_, eeLabel_, eeDigis)) {
85  endcap = false;
86  edm::LogWarning("EcalTPG") << " Couldnt find Endcap dataframes with Producer:" << producer_
87  << " and label: " << eeLabel_;
88  }
89  // barrel
90  if (barrel) {
91  const EBDigiCollection *ebdb = ebDigis.product();
92  for (unsigned int i = 0; i < ebDigis->size(); ++i) {
93  EBDataFrame ebdf = (*ebdb)[i];
94  int nrSamples = ebdf.size();
95  // unsigned int nrSamples=(ebDigis.product())[i].size();
96  for (int is = 0; is < nrSamples; ++is) {
97  // EcalMGPASample sam=((ebDigis.product())[i])[is];
98  EcalMGPASample sam = ebdf[is];
99  histBar->Fill(sam.adc());
100  }
101  }
102  }
103  // endcap
104  if (endcap) {
105  const EEDigiCollection *eedb = eeDigis.product();
106  for (unsigned int i = 0; i < eeDigis->size(); ++i) {
107  EEDataFrame eedf = (*eedb)[i];
108  int nrSamples = eedf.size();
109  for (int is = 0; is < nrSamples; ++is) {
110  EcalMGPASample sam = eedf[is];
111  histEndc->Fill(sam.adc());
112  }
113  }
114  }
115  // // Get input
116  // edm::Handle<EcalTrigPrimDigiCollection> tp;
117  // iEvent.getByLabel(label_,producer_,tp);
118  // for (unsigned int i=0;i<tp.product()->size();i++) {
119  // EcalTriggerPrimitiveDigi d=(*(tp.product()))[i];
120  // int subdet=d.id().subDet()-1;
121  // ecal_et_[subdet]->Fill(d.compressedEt());
122  // ecal_tt_[subdet]->Fill(d.ttFlag());
123  // ecal_fgvb_[subdet]->Fill(d.fineGrain());
124  // }
125 }
126 
128  histEndc->Write();
129  histBar->Write();
130 }
void analyze(const edm::Event &, const edm::EventSetup &) override
int size() const
Definition: EcalDataFrame.h:26
int iEvent
Definition: GenABIO.cc:224
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:500
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
Log< level::Warning, false > LogWarning
EcalTPInputAnalyzer(const edm::ParameterSet &)
int adc() const
get the ADC sample (12 bits)