54 double lheHT = 0, lheHTIncoming = 0;
55 unsigned int lheNj = 0, lheNb = 0, lheNc = 0, lheNuds = 0, lheNglu = 0;
58 const auto & hepeup = lheProd.
hepeup();
59 const auto & pup = hepeup.
PUP;
60 int lep = -1, lepBar = -1, nu = -1, nuBar = -1;
61 std::vector<float> vals_pt;
62 std::vector<float> vals_eta;
63 std::vector<float> vals_phi;
64 std::vector<float> vals_mass;
65 std::vector<int> vals_pid;
66 for (
unsigned int i = 0,
n = pup.size();
i <
n; ++
i) {
70 TLorentzVector
p4(pup[
i][0], pup[i][1], pup[i][2], pup[i][3]);
71 vals_pt.push_back(
p4.Pt());
72 vals_eta.push_back(
p4.Eta());
73 vals_phi.push_back(
p4.Phi());
74 vals_mass.push_back(
p4.M());
75 vals_pid.push_back(hepeup.IDUP[
i]);
77 if ( (status == 1) && ( ( idabs == 21 ) || (idabs > 0 && idabs < 7) ) ) {
80 if (idabs==5) lheNb++;
81 else if (idabs==4) lheNc++;
82 else if (idabs <= 3 ) lheNuds++;
83 else if (idabs == 21) lheNglu++;
85 double pt = std::hypot( pup[
i][0], pup[i][1] );
87 int mothIdx =
std::max(hepeup.MOTHUP[
i].first-1,0);
88 int mothIdxTwo =
std::max(hepeup.MOTHUP[
i].second-1,0);
89 int mothStatus = hepeup.ISTUP[mothIdx];
90 int mothStatusTwo = hepeup.ISTUP[mothIdxTwo];
91 bool hasIncomingAsMother = mothStatus<0 || mothStatusTwo<0;
92 if (hasIncomingAsMother) lheHTIncoming +=
pt;
93 }
else if (idabs == 12 || idabs == 14 || idabs == 16) {
94 (hepeup.IDUP[
i] > 0 ? nu : nuBar) =
i;
95 }
else if (idabs == 11 || idabs == 13 || idabs == 15) {
96 (hepeup.IDUP[
i] > 0 ? lep : lepBar) =
i;
99 std::pair<int,int>
v(0,0);
100 if (lep != -1 && lepBar != -1)
v = std::make_pair(lep,lepBar);
101 else if (lep != -1 && nuBar != -1)
v = std::make_pair(lep, nuBar);
102 else if (nu != -1 && lepBar != -1)
v = std::make_pair(nu ,lepBar);
103 else if (nu != -1 && nuBar != -1)
v = std::make_pair(nu , nuBar);
104 if (
v.first != -1 &&
v.second != -1) {
105 lheVpt = std::hypot( pup[
v.first][0] + pup[
v.second][0], pup[
v.first][1] + pup[
v.second][1] );
120 auto outPart = std::make_unique<nanoaod::FlatTable>(vals_pt.size(),
"LHEPart",
false);
const lhef::HEPEUP & hepeup() const
const unsigned int precision_
std::vector< FiveVector > PUP
Abs< T >::type abs(const T &t)
void addColumnValue(const std::string &name, const C &value, const std::string &docString, ColumnType type=defaultColumnType< T >(), int mantissaBits=-1)