1 |
– |
#include<iostream> |
2 |
– |
#include<math.h> |
3 |
– |
#include<string> |
4 |
– |
|
5 |
– |
#include "TSystem.h" |
6 |
– |
|
1 |
|
#include "treeWriter.h" |
2 |
|
|
3 |
|
using namespace std; |
4 |
|
|
5 |
< |
TreeWriter::TreeWriter( TString inputName, TString outputName, int loggingVerbosity_ ) { |
5 |
> |
TreeWriter::TreeWriter( std::string inputName, std::string outputName, int loggingVerbosity_ ) { |
6 |
|
// read the input file |
7 |
|
inputTree = new TChain("susyTree"); |
8 |
|
if (loggingVerbosity_ > 0) |
9 |
|
std::cout << "Add files to chain" << std::endl; |
10 |
< |
inputTree->Add( inputName ); |
10 |
> |
inputTree->Add( inputName.c_str() ); |
11 |
|
Init( outputName, loggingVerbosity_ ); |
12 |
|
} |
13 |
|
|
14 |
< |
TreeWriter::TreeWriter( TChain* inputTree_, TString outputName, int loggingVerbosity_ ) { |
14 |
> |
TreeWriter::TreeWriter( TChain* inputTree_, std::string outputName, int loggingVerbosity_ ) { |
15 |
|
inputTree = inputTree_; |
16 |
|
Init( outputName, loggingVerbosity_ ); |
17 |
|
} |
18 |
|
|
19 |
< |
|
26 |
< |
void TreeWriter::Init( TString outputName, int loggingVerbosity_ ) { |
19 |
> |
void TreeWriter::Init( std::string outputName, int loggingVerbosity_ ) { |
20 |
|
|
21 |
|
if (loggingVerbosity_ > 0) |
22 |
|
std::cout << "Set Branch Address of susy::Event" << std::endl; |
23 |
|
event = new susy::Event; |
24 |
|
inputTree->SetBranchAddress("susyEvent", &event); |
25 |
|
|
26 |
+ |
// Here the number of proceeded events will be stored. For plotting, simply use L*sigma/eventNumber |
27 |
+ |
eventNumbers = new TH1F("eventNumbers", "Histogram containing number of generated events", 1, 0, 1); |
28 |
+ |
eventNumbers->GetXaxis()->SetBinLabel(1,"Number of generated events"); |
29 |
+ |
|
30 |
|
// open the output file |
31 |
|
if (loggingVerbosity_>0) |
32 |
|
std::cout << "Open file " << outputName << " for writing." << std::endl; |
33 |
< |
outFile = new TFile( outputName, "recreate" ); |
33 |
> |
outFile = new TFile( outputName.c_str(), "recreate" ); |
34 |
|
tree = new TTree("susyTree","Tree for single photon analysis"); |
35 |
|
|
36 |
|
// set default parameter |
50 |
|
if (pileupHisto != 0 ) |
51 |
|
delete pileupHisto; |
52 |
|
inputTree->GetCurrentFile()->Close(); |
53 |
+ |
delete inputTree; |
54 |
+ |
delete event; |
55 |
+ |
delete outFile; |
56 |
+ |
delete tree; |
57 |
+ |
} |
58 |
+ |
|
59 |
+ |
template<class Type> |
60 |
+ |
std::vector<Type>* getVectorFromMap( map<TString, vector<Type> > myMap, TString search ){ |
61 |
+ |
// if nothing is found, return a empty vector (which has to be deleted never the less) |
62 |
+ |
std::vector<Type>* vec; |
63 |
+ |
typename map<TString, vector<Type> >::iterator mapIt = myMap.find( search ); |
64 |
+ |
if( mapIt == myMap.end() ) { |
65 |
+ |
cout << "ERROR: Collection \"" << search << "\" not found!" << endl; |
66 |
+ |
vec = new std::vector<Type>; |
67 |
+ |
} else |
68 |
+ |
vec = &mapIt->second; |
69 |
+ |
cout << vec->size() << endl; |
70 |
+ |
return vec; |
71 |
|
} |
72 |
|
|
73 |
|
// useful functions |
74 |
< |
float TreeWriter::deltaR( TLorentzVector v1, TLorentzVector v2 ) { |
74 |
> |
float deltaR( const TLorentzVector& v1, const TLorentzVector& v2 ) { |
75 |
> |
// deltaR = sqrt ( deltaEta^2 + deltaPhi^2 ) |
76 |
|
return sqrt(pow(v1.Eta() - v2.Eta(), 2) + pow(v1.Phi() - v2.Phi(), 2) ); |
77 |
|
} |
78 |
|
|
79 |
|
float effectiveAreaElectron( float eta ) { |
80 |
+ |
// needed by calculating the isolation for electrons |
81 |
|
// see https://twiki.cern.ch/twiki/bin/view/CMS/EgammaEARhoCorrection |
82 |
|
// only for Delta R = 0.3 on 2012 Data |
83 |
|
eta = fabs( eta ); |
93 |
|
} |
94 |
|
|
95 |
|
// correct iso, see https://twiki.cern.ch/twiki/bin/view/CMS/CutBasedPhotonID2012 |
96 |
< |
float chargedHadronIso_corrected(susy::Photon gamma, float rho) { |
96 |
> |
float chargedHadronIso_corrected(const susy::Photon& gamma, float rho) { |
97 |
|
float eta = fabs(gamma.caloPosition.Eta()); |
98 |
|
float ea; |
99 |
|
|
111 |
|
return iso; |
112 |
|
} |
113 |
|
|
114 |
< |
float neutralHadronIso_corrected(susy::Photon gamma, float rho) { |
114 |
> |
float neutralHadronIso_corrected(const susy::Photon& gamma, float rho) { |
115 |
|
float eta = fabs(gamma.caloPosition.Eta()); |
116 |
|
float ea; |
117 |
|
|
129 |
|
return iso; |
130 |
|
} |
131 |
|
|
132 |
< |
float photonIso_corrected(susy::Photon gamma, float rho) { |
132 |
> |
float photonIso_corrected(const susy::Photon& gamma, float rho) { |
133 |
|
float eta = fabs(gamma.caloPosition.Eta()); |
134 |
|
float ea; |
135 |
|
|
147 |
|
return iso; |
148 |
|
} |
149 |
|
|
150 |
< |
float TreeWriter::getPtFromMatchedJet( susy::Photon myPhoton, susy::Event myEvent ) { |
150 |
> |
float d0correction( const susy::Electron& electron, const susy::Event& event ) { |
151 |
> |
// copied from Brian Francis |
152 |
> |
TVector3 beamspot = event.vertices[0].position; |
153 |
> |
susy::Track track = event.tracks[electron.gsfTrackIndex]; |
154 |
> |
float d0 = track.d0() - beamspot.X()*sin(track.phi()) + beamspot.Y()*cos(track.phi()); |
155 |
> |
return d0; |
156 |
> |
} |
157 |
> |
|
158 |
> |
float dZcorrection( const susy::Electron& electron, const susy::Event& event ) { |
159 |
> |
// copied from Brian Francis |
160 |
> |
TVector3 beamspot = event.vertices[0].position; |
161 |
> |
susy::Track track = event.tracks[electron.gsfTrackIndex]; |
162 |
> |
|
163 |
> |
if(track.momentum.Pt() == 0.) return 1.e6; |
164 |
> |
float dz = (track.vertex.Z() - beamspot.Z()) - ((track.vertex.X() - beamspot.X())*track.momentum.Px() + (track.vertex.Y() - beamspot.Y())*track.momentum.Py()) / track.momentum.Pt() * (track.momentum.Pz() / track.momentum.Pt()); |
165 |
> |
return dz; |
166 |
> |
} |
167 |
> |
|
168 |
> |
float getPtFromMatchedJet( const susy::Photon& myPhoton, const susy::PFJetCollection& jetColl, int loggingVerbosity = 0 ) { |
169 |
|
/** |
170 |
|
* \brief Takes jet p_T as photon p_T |
171 |
|
* |
177 |
|
std::vector<susy::PFJet> nearJets; |
178 |
|
nearJets.clear(); |
179 |
|
|
180 |
< |
std::map<TString,susy::PFJetCollection>::iterator pfJets_it = myEvent.pfJets.find("ak5"); |
181 |
< |
if(pfJets_it == myEvent.pfJets.end()){ |
182 |
< |
if(myEvent.pfJets.size() > 0) std::cout << "JetCollection is not available!!!" << std::endl; |
183 |
< |
} else { |
184 |
< |
susy::PFJetCollection& jetColl = pfJets_it->second; |
185 |
< |
for(std::vector<susy::PFJet>::iterator it = jetColl.begin(); |
186 |
< |
it != jetColl.end(); ++it) { |
187 |
< |
std::map<TString,Float_t>::iterator s_it = it->jecScaleFactors.find("L2L3"); |
188 |
< |
if (s_it == it->jecScaleFactors.end()) { |
189 |
< |
std::cout << "JEC is not available for this jet!!!" << std::endl; |
190 |
< |
continue; |
191 |
< |
} |
192 |
< |
float scale = s_it->second; |
193 |
< |
TLorentzVector corrP4 = scale * it->momentum; |
194 |
< |
float deltaR_ = deltaR(myPhoton.momentum, corrP4 ); |
195 |
< |
if (deltaR_ > 0.3) continue; |
196 |
< |
if( loggingVerbosity > 0 ) |
162 |
< |
std::cout << "gamma pt jet matching factor = " << it->momentum.Et() / myPhoton.momentum.Et() << std::endl; |
163 |
< |
nearJets.push_back( *it ); |
164 |
< |
}// for jet |
165 |
< |
}// if, else |
180 |
> |
for(std::vector<susy::PFJet>::const_iterator it = jetColl.begin(); |
181 |
> |
it != jetColl.end(); ++it) { |
182 |
> |
float scale = 1.; |
183 |
> |
std::map<TString,Float_t>::const_iterator s_it = it->jecScaleFactors.find("L2L3"); |
184 |
> |
if (s_it == it->jecScaleFactors.end()) { |
185 |
> |
std::cout << "JEC is not available for this jet!!!" << std::endl; |
186 |
> |
continue; |
187 |
> |
} else { |
188 |
> |
scale = s_it->second; |
189 |
> |
} |
190 |
> |
TLorentzVector corrP4 = scale * it->momentum; |
191 |
> |
float deltaR_ = deltaR(myPhoton.momentum, corrP4 ); |
192 |
> |
if (deltaR_ > 0.3) continue; |
193 |
> |
if( loggingVerbosity > 2 ) |
194 |
> |
std::cout << " pT_jet / pT_gamma = " << it->momentum.Et() / myPhoton.momentum.Et() << std::endl; |
195 |
> |
nearJets.push_back( *it ); |
196 |
> |
}// for jet |
197 |
|
|
198 |
|
if ( nearJets.size() == 0 ) { |
199 |
|
if( loggingVerbosity > 1 ) |
221 |
|
|
222 |
|
|
223 |
|
void TreeWriter::Loop() { |
224 |
+ |
/** |
225 |
+ |
* \brief Loops over input chain and fills tree |
226 |
+ |
* |
227 |
+ |
* This is the major function of treeWriter, which initialize the output, loops |
228 |
+ |
* over all events and fill the tree. In the end, the tree is saved to the |
229 |
+ |
* output File |
230 |
+ |
*/ |
231 |
|
|
232 |
|
// here the event loop is implemented and the tree is filled |
233 |
|
if (inputTree == 0) return; |
234 |
|
|
235 |
|
// get number of events to be proceeded |
236 |
|
Long64_t nentries = inputTree->GetEntries(); |
237 |
+ |
// store them in histo |
238 |
+ |
eventNumbers->Fill( "Number of generated events", nentries ); |
239 |
|
if(processNEvents <= 0 || processNEvents > nentries) processNEvents = nentries; |
240 |
|
|
241 |
|
if( loggingVerbosity > 0 ) |
242 |
|
std::cout << "Processing " << processNEvents << " ouf of " |
243 |
|
<< nentries << " events. " << std::endl; |
244 |
|
|
205 |
– |
tree::Photon *thisphoton = new tree::Photon(); |
206 |
– |
tree::Jet *thisjet = new tree::Jet(); |
207 |
– |
|
245 |
|
tree->Branch("photon", &photon); |
246 |
|
tree->Branch("jet", &jet); |
247 |
|
tree->Branch("electron", &electron); |
255 |
|
tree->Branch("pu_weight", &pu_weight, "pu_weight/F"); |
256 |
|
|
257 |
|
|
258 |
< |
for (long jentry=0; jentry < processNEvents; ++jentry) { |
259 |
< |
if ( loggingVerbosity>0 && jentry%reportEvery==0 ) |
258 |
> |
for (unsigned long jentry=0; jentry < processNEvents; ++jentry) { |
259 |
> |
if ( loggingVerbosity>1 || jentry%reportEvery==0 ) |
260 |
|
std::cout << jentry << " / " << processNEvents << std :: endl; |
261 |
< |
inputTree->GetEntry(jentry); |
261 |
> |
inputTree->LoadTree( jentry ); |
262 |
> |
inputTree->GetEntry( jentry ); |
263 |
|
|
264 |
|
photon.clear(); |
265 |
|
jet.clear(); |
280 |
|
pu_weight = pileupHisto->GetBinContent( pileupHisto->FindBin( trueNumInteractions ) ); |
281 |
|
} |
282 |
|
|
283 |
+ |
// get ak5 jets |
284 |
+ |
std::vector<susy::PFJet> jetVector = event->pfJets["ak5"]; |
285 |
|
|
286 |
|
// photons |
287 |
< |
if( loggingVerbosity > 1 ) |
288 |
< |
std::cout << "Process photons" << std::endl; |
289 |
< |
std::map<TString, std::vector<susy::Photon> >::iterator phoMap = event->photons.find("photons"); |
290 |
< |
for(std::vector<susy::Photon>::iterator it = phoMap->second.begin(); |
291 |
< |
it != phoMap->second.end() && phoMap != event->photons.end(); ++it ) { |
252 |
< |
if( !(it->isEB() || it->isEE()) && skim ) |
287 |
> |
std::vector<susy::Photon> photonVector = event->photons["photons"]; |
288 |
> |
|
289 |
> |
for(std::vector<susy::Photon>::iterator it = photonVector.begin(); |
290 |
> |
it != photonVector.end(); ++it ) { |
291 |
> |
if( !it->isEB() && skim ) |
292 |
|
continue; |
293 |
< |
thisphoton->pt = getPtFromMatchedJet( *it, *event ); |
293 |
> |
tree::Photon thisphoton; |
294 |
> |
thisphoton.pt = getPtFromMatchedJet( *it, jetVector, loggingVerbosity ); |
295 |
|
|
296 |
< |
thisphoton->chargedIso = chargedHadronIso_corrected(*it, event->rho25); |
297 |
< |
thisphoton->neutralIso = neutralHadronIso_corrected(*it, event->rho25); |
298 |
< |
thisphoton->photonIso = photonIso_corrected(*it, event->rho25); |
296 |
> |
thisphoton.chargedIso = chargedHadronIso_corrected(*it, event->rho25); |
297 |
> |
thisphoton.neutralIso = neutralHadronIso_corrected(*it, event->rho25); |
298 |
> |
thisphoton.photonIso = photonIso_corrected(*it, event->rho25); |
299 |
|
|
300 |
< |
bool loose_photon_barrel = thisphoton->pt>20 |
300 |
> |
bool loose_photon_barrel = thisphoton.pt>20 |
301 |
|
&& it->isEB() |
302 |
|
&& it->passelectronveto |
303 |
|
&& it->hadTowOverEm<0.05 |
304 |
|
&& it->sigmaIetaIeta<0.012 |
305 |
< |
&& thisphoton->chargedIso<2.6 |
306 |
< |
&& thisphoton->neutralIso<3.5+0.04*thisphoton->pt |
307 |
< |
&& thisphoton->photonIso<1.3+0.005*thisphoton->pt; |
308 |
< |
bool loose_photon_endcap = thisphoton->pt > 20 |
305 |
> |
&& thisphoton.chargedIso<2.6 |
306 |
> |
&& thisphoton.neutralIso<3.5+0.04*thisphoton.pt |
307 |
> |
&& thisphoton.photonIso<1.3+0.005*thisphoton.pt; |
308 |
> |
/*bool loose_photon_endcap = thisphoton.pt > 20 |
309 |
|
&& it->isEE() |
310 |
|
&& it->passelectronveto |
311 |
|
&& it->hadTowOverEm<0.05 |
312 |
|
&& it->sigmaIetaIeta<0.034 |
313 |
< |
&& thisphoton->chargedIso<2.3 |
314 |
< |
&& thisphoton->neutralIso<2.9+0.04*thisphoton->pt; |
315 |
< |
if(!(loose_photon_endcap || loose_photon_barrel || thisphoton->pt > 75 ) && skim ) |
313 |
> |
&& thisphoton.chargedIso<2.3 |
314 |
> |
&& thisphoton.neutralIso<2.9+0.04*thisphoton.pt; |
315 |
> |
*/ |
316 |
> |
if(!(loose_photon_barrel || thisphoton.pt > 75 ) && skim ) |
317 |
|
continue; |
318 |
< |
thisphoton->eta = it->momentum.Eta(); |
319 |
< |
thisphoton->phi = it->momentum.Phi(); |
320 |
< |
thisphoton->r9 = it->r9; |
321 |
< |
thisphoton->sigmaIetaIeta = it->sigmaIetaIeta; |
322 |
< |
thisphoton->hadTowOverEm = it->hadTowOverEm; |
323 |
< |
thisphoton->pixelseed = it->nPixelSeeds; |
324 |
< |
thisphoton->conversionSafeVeto = it->passelectronveto; |
325 |
< |
photon.push_back( *thisphoton ); |
318 |
> |
thisphoton.eta = it->momentum.Eta(); |
319 |
> |
thisphoton.phi = it->momentum.Phi(); |
320 |
> |
thisphoton.r9 = it->r9; |
321 |
> |
thisphoton.sigmaIetaIeta = it->sigmaIetaIeta; |
322 |
> |
thisphoton.hadTowOverEm = it->hadTowOverEm; |
323 |
> |
thisphoton.pixelseed = it->nPixelSeeds; |
324 |
> |
thisphoton.conversionSafeVeto = it->passelectronveto; |
325 |
> |
photon.push_back( thisphoton ); |
326 |
|
if( loggingVerbosity > 2 ) |
327 |
< |
std::cout << " p_T, gamma = " << thisphoton->pt << std::endl; |
327 |
> |
std::cout << " p_T, gamma = " << thisphoton.pt << std::endl; |
328 |
|
} |
329 |
|
|
330 |
|
if( photon.size() == 0 && skim ) |
334 |
|
std::cout << "Found " << photon.size() << " photons" << std::endl; |
335 |
|
|
336 |
|
// jets |
296 |
– |
std::map<TString,susy::PFJetCollection>::iterator pfJets_it = event->pfJets.find("ak5"); |
297 |
– |
if(pfJets_it == event->pfJets.end()){ |
298 |
– |
if(event->pfJets.size() > 0) std::cout << "JetCollection is not available!!!" << std::endl; |
299 |
– |
} else { |
337 |
|
|
301 |
– |
susy::PFJetCollection& jetColl = pfJets_it->second; |
338 |
|
|
339 |
< |
for(std::vector<susy::PFJet>::iterator it = jetColl.begin(); |
340 |
< |
it != jetColl.end(); ++it) { |
341 |
< |
std::map<TString,Float_t>::iterator s_it = it->jecScaleFactors.find("L2L3"); |
342 |
< |
if (s_it == it->jecScaleFactors.end()) { |
343 |
< |
std::cout << "JEC is not available for this jet!!!" << std::endl; |
344 |
< |
continue; |
345 |
< |
} |
346 |
< |
float scale = s_it->second; |
347 |
< |
TLorentzVector corrP4 = scale * it->momentum; |
339 |
> |
for(std::vector<susy::PFJet>::iterator it = jetVector.begin(); |
340 |
> |
it != jetVector.end(); ++it) { |
341 |
> |
tree::Jet thisjet; |
342 |
> |
|
343 |
> |
// scale with JEC |
344 |
> |
float scale = 1.; |
345 |
> |
if(it->jecScaleFactors.count("L2L3") == 0) |
346 |
> |
std::cout << "ERROR: JEC is not available for this jet" << std::endl; |
347 |
> |
else |
348 |
> |
scale = it->jecScaleFactors.find("L2L3")->second; |
349 |
> |
TLorentzVector corrP4 = scale * it->momentum; |
350 |
> |
|
351 |
> |
// Calculate HT. |
352 |
> |
// The definiton differs from the saved jet, since trigger is described better |
353 |
> |
if( std::abs( corrP4.Eta() ) < 3 && corrP4.Pt > 40 ) |
354 |
> |
ht += thisjet.pt; |
355 |
> |
|
356 |
> |
if(std::abs(corrP4.Eta()) > 2.6 && skim ) continue; |
357 |
> |
if(corrP4.Pt() < 30 && skim ) continue; |
358 |
> |
thisjet.pt = corrP4.Pt(); |
359 |
> |
thisjet.eta = corrP4.Eta(); |
360 |
> |
thisjet.phi = corrP4.Phi(); |
361 |
> |
thisjet.bCSV = it->bTagDiscriminators[susy::kCSV]; |
362 |
> |
// jet composition |
363 |
> |
thisjet.chargedHadronEnergy = it->chargedHadronEnergy; |
364 |
> |
thisjet.neutralHadronEnergy = it->neutralHadronEnergy; |
365 |
> |
thisjet.photonEnergy = it->photonEnergy; |
366 |
> |
thisjet.electronEnergy = it->electronEnergy; |
367 |
> |
thisjet.muonEnergy = it->muonEnergy; |
368 |
> |
thisjet.HFHadronEnergy = it->HFHadronEnergy; |
369 |
> |
thisjet.HFEMEnergy = it->HFEMEnergy; |
370 |
> |
thisjet.chargedEmEnergy = it->chargedEmEnergy; |
371 |
> |
thisjet.chargedMuEnergy = it->chargedMuEnergy; |
372 |
> |
thisjet.neutralEmEnergy = it->neutralEmEnergy; |
373 |
|
|
374 |
< |
if(std::abs(corrP4.Eta()) > 3.0 && skim ) continue; |
375 |
< |
if(corrP4.Et() < 30 && skim ) continue; |
376 |
< |
thisjet->pt = corrP4.Et(); |
377 |
< |
thisjet->eta = corrP4.Eta(); |
378 |
< |
thisjet->phi = corrP4.Phi(); |
318 |
< |
thisjet->bCSV = it->bTagDiscriminators[susy::kCSV]; |
319 |
< |
// jet composition |
320 |
< |
thisjet->chargedHadronEnergy = it->chargedHadronEnergy; |
321 |
< |
thisjet->neutralHadronEnergy = it->neutralHadronEnergy; |
322 |
< |
thisjet->photonEnergy = it->photonEnergy; |
323 |
< |
thisjet->electronEnergy = it->electronEnergy; |
324 |
< |
thisjet->muonEnergy = it->muonEnergy; |
325 |
< |
thisjet->HFHadronEnergy = it->HFHadronEnergy; |
326 |
< |
thisjet->HFEMEnergy = it->HFEMEnergy; |
327 |
< |
thisjet->chargedEmEnergy = it->chargedEmEnergy; |
328 |
< |
thisjet->chargedMuEnergy = it->chargedMuEnergy; |
329 |
< |
thisjet->neutralEmEnergy = it->neutralEmEnergy; |
330 |
< |
|
331 |
< |
if( loggingVerbosity > 2 ) |
332 |
< |
std::cout << " p_T, jet = " << thisjet->pt << std::endl; |
333 |
< |
|
334 |
< |
jet.push_back( *thisjet ); |
335 |
< |
ht += thisjet->pt; |
336 |
< |
}// for jet |
337 |
< |
}// if, else |
374 |
> |
if( loggingVerbosity > 2 ) |
375 |
> |
std::cout << " p_T, jet = " << thisjet.pt << std::endl; |
376 |
> |
|
377 |
> |
jet.push_back( thisjet ); |
378 |
> |
}// for jet |
379 |
|
if( jet.size() < 2 && skim ) |
380 |
|
continue; |
381 |
|
std::sort( jet.begin(), jet.end(), tree::EtGreater); |
399 |
|
std::cout << " type1met = " << type1met << std::endl; |
400 |
|
|
401 |
|
// electrons |
402 |
< |
tree::Particle* thiselectron = new tree::Particle(); |
403 |
< |
map<TString, vector<susy::Electron> >::iterator eleMap = event->electrons.find("gsfElectrons"); |
404 |
< |
if(eleMap == event->electrons.end() && loggingVerbosity > 0) { |
405 |
< |
cout << "gsfElectrons not found!" << endl; |
406 |
< |
} else { |
407 |
< |
for(vector<susy::Electron>::iterator it = eleMap->second.begin(); it < eleMap->second.end(); ++it) { |
408 |
< |
// for cuts see https://twiki.cern.ch/twiki/bin/viewauth/CMS/EgammaCutBasedIdentification |
409 |
< |
if( loggingVerbosity > 0) |
410 |
< |
std::cout << "TODO: piAtVtx is not calculated correctly" << std::endl; |
411 |
< |
//float pAtVtx = it->trackMomentums.find("AtVtxWithConstraint")->second.P(); |
412 |
< |
float pAtVtx = it->ecalEnergy; |
413 |
< |
if( it->momentum.Pt() < 1 || it->momentum.Pt() > 1e6 || pAtVtx == 0 ) |
402 |
> |
std::vector<susy::Electron> eVector = event->electrons["gsfElectrons"]; |
403 |
> |
for(std::vector<susy::Electron>::iterator it = eVector.begin(); it < eVector.end(); ++it) { |
404 |
> |
tree::Particle thiselectron; |
405 |
> |
if( loggingVerbosity > 2 ) |
406 |
> |
cout << " electron pt = " << it->momentum.Pt() << endl; |
407 |
> |
// for cuts see https://twiki.cern.ch/twiki/bin/viewauth/CMS/EgammaCutBasedIdentification |
408 |
> |
// use veto electrons |
409 |
> |
if( it->momentum.Pt() < 20 || it->momentum.Pt() > 1e6 ) |
410 |
> |
continue; // spike rejection |
411 |
> |
float iso = ( it->chargedHadronIso + max(it->neutralHadronIso+it->photonIso |
412 |
> |
- effectiveAreaElectron(it->momentum.Eta())*event->rho25, (float)0. ) |
413 |
> |
) / it->momentum.Pt(); |
414 |
> |
float d0 = d0correction( *it, *event ); |
415 |
> |
float dZ = std::abs( dZcorrection( *it, *event ) ); |
416 |
> |
if ( it->isEB() ){ |
417 |
> |
if ( fabs(it->deltaEtaSuperClusterTrackAtVtx) > 0.007 |
418 |
> |
|| fabs(it->deltaPhiSuperClusterTrackAtVtx) > 0.8 |
419 |
> |
|| it->sigmaIetaIeta > 0.01 |
420 |
> |
|| it->hcalOverEcalBc > 0.15 |
421 |
> |
|| d0 > 0.04 |
422 |
> |
|| dZ > 0.2 |
423 |
> |
|| iso > 0.15 ) |
424 |
|
continue; |
425 |
< |
float iso = ( it->chargedHadronIso + max(it->neutralHadronIso+it->photonIso |
426 |
< |
- effectiveAreaElectron(it->momentum.Eta())*event->rho25, (Float_t)0. ) |
427 |
< |
) / it->momentum.Pt(); |
428 |
< |
if ( it->isEE() ){ |
429 |
< |
if ( fabs(it->deltaEtaSuperClusterTrackAtVtx) > 0.007 |
430 |
< |
|| fabs(it->deltaPhiSuperClusterTrackAtVtx) > 0.15 |
431 |
< |
|| it->sigmaIetaIeta > 0.01 |
432 |
< |
|| it->hcalOverEcalBc > 0.12 |
382 |
< |
|| it->vertex.Perp() > 0.02 |
383 |
< |
|| it->vertex.Z() > 0.2 |
384 |
< |
|| fabs(1./it->ecalEnergy - 1./pAtVtx ) > 0.05 |
385 |
< |
|| iso > 0.15 ) |
386 |
< |
continue; |
387 |
< |
} |
388 |
< |
else if( it->isEB() ) { |
389 |
< |
if ( fabs(it->deltaEtaSuperClusterTrackAtVtx) > 0.009 |
390 |
< |
|| fabs(it->deltaPhiSuperClusterTrackAtVtx) > 0.10 |
391 |
< |
|| it->sigmaIetaIeta > 0.03 |
392 |
< |
|| it->hcalOverEcalBc > 0.10 |
393 |
< |
|| it->vertex.Perp() > 0.02 |
394 |
< |
|| it->vertex.Z() > 0.2 |
395 |
< |
|| fabs(1./it->ecalEnergy - 1./pAtVtx) > 0.05 |
396 |
< |
|| iso > 0.15 ) |
397 |
< |
continue; |
398 |
< |
} |
399 |
< |
else // not in barrel nor in endcap |
425 |
> |
} |
426 |
> |
else if( it->isEE() ) { |
427 |
> |
if ( fabs(it->deltaEtaSuperClusterTrackAtVtx) > 0.01 |
428 |
> |
|| fabs(it->deltaPhiSuperClusterTrackAtVtx) > 0.7 |
429 |
> |
|| it->sigmaIetaIeta > 0.03 |
430 |
> |
|| d0 > 0.04 |
431 |
> |
|| dZ > 0.2 |
432 |
> |
|| iso > 0.15 ) |
433 |
|
continue; |
434 |
< |
// TODO: conversion rejection information not implemented yet, see twiki for more details |
434 |
> |
} |
435 |
> |
else // not in barrel nor in endcap |
436 |
> |
continue; |
437 |
|
|
438 |
< |
thiselectron->pt = it->momentum.Pt(); |
439 |
< |
if( thiselectron->pt < 20 ) |
440 |
< |
continue; |
441 |
< |
if( loggingVerbosity > 2 ) |
442 |
< |
std::cout << " p_T, electron = " << it->momentum.Et() << std::endl; |
443 |
< |
thiselectron->eta = it->momentum.Eta(); |
409 |
< |
thiselectron->phi = it->momentum.Phi(); |
410 |
< |
electron.push_back( *thiselectron ); |
411 |
< |
} |
438 |
> |
thiselectron.pt = it->momentum.Pt(); |
439 |
> |
if( loggingVerbosity > 2 ) |
440 |
> |
std::cout << " p_T, electron = " << it->momentum.Et() << std::endl; |
441 |
> |
thiselectron.eta = it->momentum.Eta(); |
442 |
> |
thiselectron.phi = it->momentum.Phi(); |
443 |
> |
electron.push_back( thiselectron ); |
444 |
|
} |
445 |
|
if( loggingVerbosity > 1 ) |
446 |
|
std::cout << "Found " << electron.size() << " electrons" << std::endl; |
447 |
|
|
448 |
|
// muons |
449 |
+ |
tree::Particle thismuon; |
450 |
|
std::vector<susy::Muon> mVector = event->muons["muons"]; |
418 |
– |
tree::Particle* thismuon = new tree::Particle(); |
451 |
|
for( std::vector<susy::Muon>::iterator it = mVector.begin(); it != mVector.end(); ++it) { |
452 |
|
if( !( it->isPFMuon() && ( it->isGlobalMuon() || it->isTrackerMuon() ) ) ) |
453 |
|
continue; // see https://twiki.cern.ch/twiki/bin/view/CMSPublic/SWGuideMuonId#Loose_Muon |
454 |
< |
thismuon->pt = it->momentum.Et(); |
455 |
< |
if( thismuon->pt < 20 ) |
454 |
> |
thismuon.pt = it->momentum.Et(); |
455 |
> |
if( thismuon.pt < 20 ) |
456 |
|
continue; |
457 |
< |
thismuon->eta = it->momentum.Eta(); |
458 |
< |
thismuon->phi = it->momentum.Phi(); |
459 |
< |
muon.push_back( *thismuon ); |
457 |
> |
thismuon.eta = it->momentum.Eta(); |
458 |
> |
thismuon.phi = it->momentum.Phi(); |
459 |
> |
muon.push_back( thismuon ); |
460 |
|
} |
461 |
|
if( loggingVerbosity > 1 ) |
462 |
|
std::cout << "Found " << muon.size() << " muons" << std::endl; |
463 |
|
|
432 |
– |
|
464 |
|
// vertices |
465 |
|
nVertex = event->vertices.size(); |
466 |
|
|
467 |
|
if( ht < 450 && skim) |
468 |
|
continue; |
469 |
|
|
470 |
+ |
|
471 |
|
tree->Fill(); |
472 |
|
} // for jentry |
473 |
|
|
474 |
|
|
475 |
|
outFile->cd(); |
476 |
+ |
eventNumbers->Write(); |
477 |
|
tree->Write(); |
478 |
|
outFile->Write(); |
479 |
|
outFile->Close(); |