33 histogramFile_ = cfg.
getParameter<std::string> (
"histogramFile");
38 file_ =
new TFile(histogramFile_.c_str(),
"RECREATE");
39 mcTruthTree_ =
new TTree(
"mcTruthTree",
"mcTruthTree");
41 mcTruthTree_->Branch(
"ptJet", &ptJet_,
"ptJet_/F");
42 mcTruthTree_->Branch(
"ptGen", &ptGen_,
"ptGen_/F");
43 mcTruthTree_->Branch(
"ptHat", &ptHat_,
"ptHat_/F");
44 mcTruthTree_->Branch(
"chfJet", &chfJet_,
"chfJet_/F");
45 mcTruthTree_->Branch(
"nhfJet", &nhfJet_,
"nhfJet_/F");
46 mcTruthTree_->Branch(
"cemfJet", &cemfJet_,
"cemfJet_/F");
47 mcTruthTree_->Branch(
"nemfJet", &nemfJet_,
"nemfJet_/F");
48 mcTruthTree_->Branch(
"cmultiJet", &cmultiJet_,
"cmultiJet_/I");
49 mcTruthTree_->Branch(
"nmultiJet", &nmultiJet_,
"nmultiJet_/I");
50 mcTruthTree_->Branch(
"etaJet", &etaJet_,
"etaJet_/F");
51 mcTruthTree_->Branch(
"etaGen", &etaGen_,
"etaGen_/F");
52 mcTruthTree_->Branch(
"phiJet", &phiJet_,
"phiJet_/F");
53 mcTruthTree_->Branch(
"phiGen", &phiGen_,
"phiGen_/F");
54 mcTruthTree_->Branch(
"dR", &dR_,
"dR_/F");
55 mcTruthTree_->Branch(
"rank", &rank_,
"rank_/I");
63 mcTruthTree_->Write();
73 PFJetCollection::const_iterator i_jet,i_matched;
74 GenJetCollection::const_iterator i_genjet;
75 event.getByLabel (genjets_,genjets);
76 event.getByLabel (jets_,jets);
77 event.getByLabel(
"generator",hEventInfo);
78 ptHat_ = hEventInfo->binningValues()[0];
81 if (jets->size()>0 && genjets->size()>0)
83 for (i_genjet = genjets->begin(); i_genjet != genjets->end(); i_genjet++)
86 for(i_jet = jets->begin();i_jet != jets->end(); i_jet++)
95 ptGen_ = i_genjet->pt();
96 etaGen_ = i_genjet->eta();
97 phiGen_ = i_genjet->phi();
98 ptJet_ = i_matched->pt();
99 etaJet_ = i_matched->eta();
100 phiJet_ = i_matched->phi();
101 chfJet_ = i_matched->chargedHadronEnergyFraction();
102 nhfJet_ = i_matched->neutralHadronEnergyFraction();
103 cemfJet_ = i_matched->chargedEmEnergyFraction();
104 nemfJet_ = i_matched->neutralEmEnergyFraction();
105 cmultiJet_ = i_matched->chargedMultiplicity();
106 nmultiJet_ = i_matched->neutralMultiplicity();
109 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)