ATLAS Offline Software
Loading...
Searching...
No Matches
Trigger/TrigT1/TrigGepPerf/src/Jet.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3 */
4
5#ifndef TRIGL0GEPPERF_JET_H
6#define TRIGL0GEPPERF_JET_H
7
8#include "TLorentzVector.h"
9
10namespace Gep{
11 struct Jet
12 {
13
14 TLorentzVector vec;
15 // Raw eta/phi as delivered by the seed source, before the TLorentzVector
16 // (SetPtEtaPhiM) round-trip. JetTaggerLRJ digitizes these to match the
17 // emulation, which reads the same values as written (float) to the ntuple.
18 double etaInput {0};
19 double phiInput {0};
20 std::vector<int> constituentsIndices;
22 float radius {0};
23 float seedEta {0}; // Only for Seeded jets
24 float seedPhi {0};
25 float seedEt {0};
26 float ring0_Et {0}; // Only for WTACone4jets
27 float ring1_Et {0};
28 float ring2_Et {0};
29 float ring3_Et {0};
30 float ring4_Et {0};
31 int total_TobN {0};
32 int ring0_TobN {0};
33 int ring1_TobN {0};
34 int ring2_TobN {0};
35 int ring3_TobN {0};
36 int ring4_TobN {0};
37
38 };
39}
40
41#endif //TRIGL0GEPPERF_CUSTOMJET_H
std::vector< int > constituentsIndices