30 gen_ = consumes<GenEventInfoProduct>(
edm::InputTag(
"generator"));
36 file_ =
new TFile(histogramFile_.c_str(),
"RECREATE");
37 mcTruthTree_ =
new TTree(
"mcTruthTree",
"mcTruthTree");
39 mcTruthTree_->Branch(
"ptJet", &ptJet_,
"ptJet_/F");
40 mcTruthTree_->Branch(
"ptGen", &ptGen_,
"ptGen_/F");
41 mcTruthTree_->Branch(
"ptHat", &ptHat_,
"ptHat_/F");
42 mcTruthTree_->Branch(
"chfJet", &chfJet_,
"chfJet_/F");
43 mcTruthTree_->Branch(
"nhfJet", &nhfJet_,
"nhfJet_/F");
44 mcTruthTree_->Branch(
"cemfJet", &cemfJet_,
"cemfJet_/F");
45 mcTruthTree_->Branch(
"nemfJet", &nemfJet_,
"nemfJet_/F");
46 mcTruthTree_->Branch(
"cmultiJet", &cmultiJet_,
"cmultiJet_/I");
47 mcTruthTree_->Branch(
"nmultiJet", &nmultiJet_,
"nmultiJet_/I");
48 mcTruthTree_->Branch(
"etaJet", &etaJet_,
"etaJet_/F");
49 mcTruthTree_->Branch(
"etaGen", &etaGen_,
"etaGen_/F");
50 mcTruthTree_->Branch(
"phiJet", &phiJet_,
"phiJet_/F");
51 mcTruthTree_->Branch(
"phiGen", &phiGen_,
"phiGen_/F");
52 mcTruthTree_->Branch(
"dR", &dR_,
"dR_/F");
53 mcTruthTree_->Branch(
"rank", &rank_,
"rank_/I");
61 mcTruthTree_->Write();
71 PFJetCollection::const_iterator i_jet,i_matched;
72 GenJetCollection::const_iterator i_genjet;
73 event.getByToken (genjets_,genjets);
74 event.getByToken (jets_,jets);
75 event.getByToken(gen_,hEventInfo);
76 ptHat_ = hEventInfo->binningValues()[0];
79 if (jets->size()>0 && genjets->size()>0)
81 for (i_genjet = genjets->begin(); i_genjet != genjets->end(); i_genjet++)
84 for(i_jet = jets->begin();i_jet != jets->end(); i_jet++)
93 ptGen_ = i_genjet->pt();
94 etaGen_ = i_genjet->eta();
95 phiGen_ = i_genjet->phi();
96 ptJet_ = i_matched->pt();
97 etaJet_ = i_matched->eta();
98 phiJet_ = i_matched->phi();
99 chfJet_ = i_matched->chargedHadronEnergyFraction();
100 nhfJet_ = i_matched->neutralHadronEnergyFraction();
101 cemfJet_ = i_matched->chargedEmEnergyFraction();
102 nemfJet_ = i_matched->neutralEmEnergyFraction();
103 cmultiJet_ = i_matched->chargedMultiplicity();
104 nmultiJet_ = i_matched->neutralMultiplicity();
107 mcTruthTree_->Fill();
T getParameter(std::string const &) const
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
virtual void analyze(edm::Event const &e, edm::EventSetup const &iSetup)
PFMCTruthTreeProducer(edm::ParameterSet const &cfg)