We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8acf11 commit 58cdce5Copy full SHA for 58cdce5
1 file changed
Core/src/FWTableViewManager.cc
@@ -69,13 +69,13 @@ m_tableInfo(nullptr)
69
column("ndof", 1, "i.ndof()");
70
71
72
- m_tableInfo->table("reco::CaloJet").
73
- column("pT", 1, "i.pt()").
74
- column("eta", 3, "i.eta()").
75
- column("phi", 3, "i.phi()").
76
- column("ECAL", 1, "i.p4().E() * i.emEnergyFraction()").
77
- column("HCAL", 1, "i.p4().E() * i.energyFractionHadronic()").
78
- column("emf", 3, "i.emEnergyFraction()");
+
+ m_tableInfo->table("reco::CaloJet")
+ .column("pT", 1, "i.pt()")
+ .column("eta", 3, "i.eta()")
+ .column("phi", 3, "i.phi()")
+ .column("emf", 3, "i.emEnergyFraction()");
79
80
m_tableInfo->table("reco::Muon").
81
column("pT", 1, "i.pt()").
0 commit comments