54 ecal_parts_.push_back(
"Barrel");
55 ecal_parts_.push_back(
"Endcap");
57 histfile_=
new TFile(
"histos.root",
"RECREATE");
58 tree_ =
new TTree(
"TPGtree",
"TPGtree");
59 tree_->Branch(
"iphi",&iphi_,
"iphi/I");
60 tree_->Branch(
"ieta",&ieta_,
"ieta/I");
61 tree_->Branch(
"eRec",&eRec_,
"eRec/F");
62 tree_->Branch(
"tpgADC",&tpgADC_,
"tpgADC/I");
63 tree_->Branch(
"tpgGeV",&tpgGeV_,
"tpgGeV/F");
64 tree_->Branch(
"ttf",&ttf_,
"ttf/I");
65 tree_->Branch(
"fg",&fg_,
"fg/I");
66 for (
unsigned int i=0;
i<2;++
i) {
67 ecal_et_[
i]=
new TH1I(ecal_parts_[
i].c_str(),
"Et",255,0,255);
69 sprintf(title,
"%s_ttf",ecal_parts_[
i].c_str());
70 ecal_tt_[
i]=
new TH1I(title,
"TTF",10,0,10);
71 sprintf(title,
"%s_fgvb",ecal_parts_[
i].c_str());
72 ecal_fgvb_[
i]=
new TH1I(title,
"FGVB",10,0,10);
78 hTPvsRechit_=
new TH2F(
"TP_vs_RecHit",
"TP vs rechit",256,-1,255,255,0,255);
79 hTPoverRechit_=
new TH1F(
"TP_over_RecHit",
"TP over rechit",500,0,4);
124 ecal_tt_[subdet]->Fill(d.
ttFlag());
128 if (!recHits_)
return;
132 iEvent.
getByLabel(rechits_labelEB_,rechit_EB_col);
135 iEvent.
getByLabel(rechits_labelEE_,rechit_EE_col);
150 map<EcalTrigTowerDetId, float> mapTow_Et;
157 float Etsum=((*rechit_EB_col.
product())[
i].energy())*
sin(theta);
158 bool test_alreadyin=
false;
159 map<EcalTrigTowerDetId, float>::iterator ittest= mapTow_Et.find(towid1);
160 if (ittest!= mapTow_Et.end()) test_alreadyin=
true;
161 if (test_alreadyin)
continue;
164 unsigned int count=0;
165 while( j<rechit_EB_col.
product()->
size() && !loopend){
169 if( towid1==towid2 ) {
170 float theta=theBarrelGeometry->
getGeometry(myid2)->getPosition().theta();
171 Etsum += (*rechit_EB_col.
product())[j].energy()*
sin(theta);
174 if (count>1800) loopend=
true;
176 mapTow_Et.insert(pair<EcalTrigTowerDetId,float>(towid1, Etsum));
184 float Etsum=(*rechit_EE_col.
product())[
i].energy()*
sin(theta);
185 bool test_alreadyin=
false;
186 map<EcalTrigTowerDetId, float>::iterator ittest= mapTow_Et.find(towid1);
187 if (ittest!= mapTow_Et.end()) test_alreadyin=
true;
188 if (test_alreadyin)
continue;
191 unsigned int count=0;
192 while( j<rechit_EE_col.
product()->
size() && !loopend){
195 if( towid1==towid2 ) {
196 float theta=theEndcapGeometry->
getGeometry(myid2)->getPosition().theta();
197 Etsum += (*rechit_EE_col.
product())[j].energy()*
sin(theta);
201 if (count>500) loopend=
true;
204 mapTow_Et.insert(pair<EcalTrigTowerDetId,float>(towid1, Etsum));
213 map<EcalTrigTowerDetId, float>::iterator it= mapTow_Et.find(TPtowid);
216 iphi_ = TPtowid.
iphi() ;
217 ieta_ = TPtowid.
ieta() ;
222 if (it!= mapTow_Et.end()) {
223 hTPvsRechit_->Fill(it->second,Et);
224 hTPoverRechit_->Fill(Et/it->second);
234 for (
unsigned int i=0;
i<2;++
i) {
235 ecal_et_[
i]->Write();
236 ecal_tt_[
i]->Write();
237 ecal_fgvb_[
i]->Write();
240 hTPvsRechit_->Write();
241 hTPoverRechit_->Write();
T getParameter(std::string const &) const
void setEventSetup(const edm::EventSetup &evtSetup)
Sin< T >::type sin(const T &t)
Geom::Theta< T > theta() const
double getTPGInGeV(const EcalTriggerPrimitiveDigi &tpDigi)
int ieta() const
get the tower ieta
void analyze(const edm::Event &, const edm::EventSetup &) override
int compressedEt() const
get the encoded/compressed Et of interesting sample
~EcalTrigPrimAnalyzer() override
int ietaAbs() const
get the absolute value of the tower ieta
EcalTrigTowerDetId tower() const
get the HCAL/trigger iphi of this crystal
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
EcalTrigPrimAnalyzer(const edm::ParameterSet &)
int iphi() const
get the tower iphi
const EcalTrigTowerDetId & id() const
T const * product() const
virtual std::shared_ptr< const CaloCellGeometry > getGeometry(const DetId &id) const
Get the cell geometry of a given detector id. Should return false if not found.
EcalSubdetector subDet() const
get the subDetector associated to the Trigger Tower
bool fineGrain() const
get the fine-grain bit of interesting sample
int ttFlag() const
get the Trigger tower Flag of interesting sample
T const * product() const