111 |
|
|
112 |
|
event_->run(aEvt.run()); |
113 |
|
event_->lumiBlock(aEvt.luminosityBlock()); |
114 |
+ |
event_->isRealData(aEvt.isRealData()); |
115 |
|
|
116 |
|
edm::Handle<reco::GenParticleCollection> lGenParticles; |
117 |
|
try { |
948 |
|
lCommon.rawpT = (*iter).pt(); |
949 |
|
if ((*iter).hasCorrFactors()) |
950 |
|
lCommon.rawpT = (*iter).pt()/((*iter).corrFactor((*iter).corrStep())); |
951 |
+ |
|
952 |
+ |
lCommon.etaMean = (*iter).etaPhiStatistics().etaMean; |
953 |
+ |
lCommon.phiMean = (*iter).etaPhiStatistics().phiMean; |
954 |
+ |
lCommon.etaEtaMoment = (*iter).etaPhiStatistics().etaEtaMoment; |
955 |
+ |
lCommon.phiPhiMoment = (*iter).etaPhiStatistics().phiPhiMoment; |
956 |
+ |
lCommon.etaPhiMoment = (*iter).etaPhiStatistics().etaPhiMoment; |
957 |
+ |
|
958 |
|
//lCommon.rawEta = (*iter).; |
959 |
|
//lCommon.rawPhi = (*iter).; |
960 |
|
// p_hasJetCorrFactors->Fill(aJet.hasJetCorrFactors()); |
1222 |
|
} |
1223 |
|
|
1224 |
|
} |
1225 |
+ |
|
1226 |
+ |
#include "FWCore/Framework/interface/MakerMacros.h" |
1227 |
+ |
DEFINE_FWK_MODULE(HbbTreeMaker); |
1228 |
+ |
|
1229 |
+ |
|