ATLAS Offline Software
Classes | Public Member Functions | Private Attributes | List of all members
DerivationFramework::RCJetSubstructureAug Class Reference

#include <RCJetSubstructureAug.h>

Inheritance diagram for DerivationFramework::RCJetSubstructureAug:
Collaboration diagram for DerivationFramework::RCJetSubstructureAug:

Classes

struct  moments_t
 

Public Member Functions

 RCJetSubstructureAug (const std::string &t, const std::string &n, const IInterface *p)
 
virtual ~RCJetSubstructureAug ()
 
virtual StatusCode initialize () override
 
virtual StatusCode finalize () override
 
virtual StatusCode addBranches () const override
 

Private Attributes

StringProperty m_streamName { this, "StreamName", "", "Name of the stream" }
 
Gaudi::Property< std::vector< std::string > > m_ghostNames { this, "GhostConstitNames", {"GhostLCTopo"}, "Names of the ghost constituents for substructure computation"}
 
StringProperty m_selectionString { this, "SelectionString", "", "Selection to apply to jet"}
 
StringProperty m_suffix { this, "Suffix", "", "Suffix for variables"}
 
StringProperty m_grooming { this, "Grooming", "", "Name of gromming technic to apply (Trimming or SofDrop)"}
 
Gaudi::Property< float > m_rclus {this, "RClusTrim", 0.3 , "R for reclustering (0 for none)"}
 
Gaudi::Property< float > m_ptfrac {this, "PtFracTrim", 0.03, "pT fraction for retaining subjets"}
 
Gaudi::Property< float > m_beta {this, "BetaSoft", 1. , "How much to consider angular dependence"}
 
Gaudi::Property< float > m_zcut {this, "ZcutSoft", 1. , "pT fraction for retaining subjets"}
 
Gaudi::Property< float > m_R0 {this, "R0Soft", 1. , "Normalization of angular distance, usually the characteristic jet radius (default R0 = 1)"}
 
SG::ReadHandleKey< xAOD::JetContainerm_jetKey { this, "JetContainerKey", ""}
 
moments_tm_moments
 
std::unique_ptr< fastjet::Filter > m_trimmer
 
std::unique_ptr< fastjet::contrib::SoftDrop > m_softdropper
 

Detailed Description

Definition at line 29 of file RCJetSubstructureAug.h.

Constructor & Destructor Documentation

◆ RCJetSubstructureAug()

DerivationFramework::RCJetSubstructureAug::RCJetSubstructureAug ( const std::string &  t,
const std::string &  n,
const IInterface *  p 
)

Definition at line 31 of file RCJetSubstructureAug.cxx.

31  :
32 base_class(t, n, p) {}

◆ ~RCJetSubstructureAug()

DerivationFramework::RCJetSubstructureAug::~RCJetSubstructureAug ( )
virtual

Definition at line 35 of file RCJetSubstructureAug.cxx.

36 {}

Member Function Documentation

◆ addBranches()

StatusCode DerivationFramework::RCJetSubstructureAug::addBranches ( ) const
overridevirtual

Definition at line 70 of file RCJetSubstructureAug.cxx.

71 {
72  const EventContext& ctx = Gaudi::Hive::currentContext();
73 
75  if (!jets.isValid()) {
76  ATH_MSG_ERROR("No jet collection with name " << m_jetKey.key() << " found in StoreGate!");
77  return StatusCode::FAILURE;
78  }
79  unsigned int nJets(jets->size());
80  std::vector<const xAOD::Jet*> jetToCheck; jetToCheck.clear();
81 
82  // Execute the text parser if requested
83  if (!m_selectionString.empty()) {
84  std::vector<int> entries = m_parser->evaluateAsVector();
85  unsigned int nEntries = entries.size();
86  // check the sizes are compatible
87  if (nJets != nEntries ) {
88  ATH_MSG_ERROR("Sizes incompatible! Are you sure your selection string used jets??");
89  return StatusCode::FAILURE;
90  } else {
91  // identify which jets to keep for the thinning check
92  for (unsigned int i=0; i<nJets; ++i) if (entries[i]==1) jetToCheck.push_back((*jets)[i]);
93  }
94  } else {
95  for (unsigned int i=0; i<nJets; ++i) jetToCheck.push_back((*jets)[i]);
96  }
97 
98  std::vector<const xAOD::IParticle*> mergedGhostConstits;
99  std::vector<const xAOD::IParticle*> ghosts;
100  std::vector<fastjet::PseudoJet> constituents;
101 
102  for (const xAOD::Jet* jet : jetToCheck) {
103 
104  // Get list of ghost constituents
105  mergedGhostConstits.clear();
106  for (std::string ghostName: m_ghostNames) {
107  ghosts.clear();
108  ATH_CHECK(jet->getAssociatedObjects(ghostName, ghosts));
109  mergedGhostConstits.insert(mergedGhostConstits.end(), ghosts.begin(), ghosts.end());
110  }
111 
112  // Construct list of constituent PseudoJets from constituents and compute timing information
113  constituents.clear();
114  double eTot = 0;
115  double time = 0;
116  for (auto constit : mergedGhostConstits){
117  if (constit==nullptr) {
118  ATH_MSG_INFO("Invalid constituent link, skipping ...");
119  continue;
120  }
121  // Filter constituents on negative energy
122  if (constit->e()<0) {ATH_MSG_INFO("################## Negative energy cluster"); continue;}
123  constituents.push_back( fastjet::PseudoJet(constit->p4()) );
124 
125  // Timing info of constituent only for calo constituents
126  if (constit->type() == xAOD::Type::CaloCluster) {
127  auto caloConstit = dynamic_cast<const xAOD::CaloCluster*> (constit);
128  double eConstit = caloConstit->e()* caloConstit->e();
129  time += caloConstit->time()* eConstit;
130  eTot += eConstit;
131  }
132  }
133 
134  // Fill timing info
135  if (eTot==0) {
136  m_moments->dec_timing(*jet) = 0;
137  } else {
139  }
140 
141  // Get number of constituents
142  int nConstits = constituents.size();
143 
144  // Run clustering on constituents if not empty
145  fastjet::PseudoJet groomed_jet;
146  if (nConstits!=0) {
147  auto jet_def = fastjet::JetDefinition(fastjet::antikt_algorithm, 1.5);
148  fastjet::ClusterSequence cs(constituents, jet_def);
149  fastjet::PseudoJet recluster_jet = cs.inclusive_jets(0.0).front();
150 
151  // Apply grooming to reclustered jet
152  if (m_grooming=="Trimming"){
153  groomed_jet = m_trimmer->result(recluster_jet);
154  } else if (m_grooming=="SoftDrop"){
155  groomed_jet = m_softdropper->result(recluster_jet);
156  } else {
157  ATH_MSG_DEBUG(" No grooming requested or wrong one, will not apply grooming");
158  groomed_jet = recluster_jet;
159  }
160 
161  // update nConstit
162  nConstits = groomed_jet.constituents().size();
163  }
164 
165  // Fill substructure vars with default values when no constituents in jet
166  if (nConstits==0) {
167  m_moments->dec_Qw(*jet) = -999;
168 
169  m_moments->dec_Tau1(*jet) = -999;
170  m_moments->dec_Tau2(*jet) = -999;
171  m_moments->dec_Tau3(*jet) = -999;
172  m_moments->dec_Tau4(*jet) = -999;
173 
174  m_moments->dec_Tau21(*jet) = -999;
175  m_moments->dec_Tau32(*jet) = -999;
176 
177  m_moments->dec_Split12(*jet) = -999;
178  m_moments->dec_Split23(*jet) = -999;
179  m_moments->dec_Split34(*jet) = -999;
180 
181  m_moments->dec_ECF1(*jet) = -999;
182  m_moments->dec_ECF2(*jet) = -999;
183  m_moments->dec_ECF3(*jet) = -999;
184  m_moments->dec_ECF4(*jet) = -999;
185 
186  m_moments->dec_C2(*jet) = -999;
187  m_moments->dec_D2(*jet) = -999;
188 
189  m_moments->dec_pT(*jet) = 0;
190  m_moments->dec_m(*jet) = 0;
191  m_moments->dec_NConstits(*jet) = 0;
192  m_moments->dec_eta(*jet) = -999;
193  m_moments->dec_phi(*jet) = -999;
194 
195  return StatusCode::SUCCESS;
196  }
197 
198  // Save reclustered jet infos
199  m_moments->dec_pT(*jet) = groomed_jet.pt();
200  m_moments->dec_m(*jet) = groomed_jet.m();
201  m_moments->dec_NConstits(*jet) = nConstits;
202  m_moments->dec_eta(*jet) = groomed_jet.eta();
203  m_moments->dec_phi(*jet) = groomed_jet.phi() - M_PI;
204 
205  // Qw
207  m_moments->dec_Qw(*jet) = qw.result(groomed_jet);
208 
209  // Nsubjetiness
210  fastjet::contrib::WTA_KT_Axes wta_kt_axes;
211  fastjet::contrib::NormalizedCutoffMeasure normalized_measure(1.0, 1.0, 1000000);
212  JetSubStructureUtils::Nsubjettiness Tau1_wta(1, wta_kt_axes, normalized_measure);
213  JetSubStructureUtils::Nsubjettiness Tau2_wta(2, wta_kt_axes, normalized_measure);
214  JetSubStructureUtils::Nsubjettiness Tau3_wta(3, wta_kt_axes, normalized_measure);
215  JetSubStructureUtils::Nsubjettiness Tau4_wta(4, wta_kt_axes, normalized_measure);
216  float tau1_wta = Tau1_wta.result(groomed_jet);
217  float tau2_wta = Tau2_wta.result(groomed_jet);
218  float tau3_wta = Tau3_wta.result(groomed_jet);
219  float tau4_wta = Tau4_wta.result(groomed_jet);
220  float tau21_wta = -999;
221  float tau32_wta = -999;
222 
223  if( tau1_wta > 1e-8 ) {
224  tau21_wta = tau2_wta / tau1_wta;
225  }
226  if( tau2_wta > 1e-8 ) {
227  tau32_wta = tau3_wta / tau2_wta;
228  }
229 
230  m_moments->dec_Tau1(*jet) = tau1_wta;
231  m_moments->dec_Tau2(*jet) = tau2_wta;
232  m_moments->dec_Tau3(*jet) = tau3_wta;
233  m_moments->dec_Tau4(*jet) = tau4_wta;
234  m_moments->dec_Tau21(*jet) = tau21_wta;
235  m_moments->dec_Tau32(*jet) = tau32_wta;
236 
237  // KtSplittingScale
241  float split12 = Split12.result(groomed_jet);
242  float split23 = Split23.result(groomed_jet);
243  float split34 = Split34.result(groomed_jet);
244 
245  m_moments->dec_Split12(*jet) = split12;
246  m_moments->dec_Split23(*jet) = split23;
247  m_moments->dec_Split34(*jet) = split34;
248 
249  // EnergyCorrelator
250  JetSubStructureUtils::EnergyCorrelator ECF1(1, 1.0, JetSubStructureUtils::EnergyCorrelator::pt_R);
251  JetSubStructureUtils::EnergyCorrelator ECF2(2, 1.0, JetSubStructureUtils::EnergyCorrelator::pt_R);
252  JetSubStructureUtils::EnergyCorrelator ECF3(3, 1.0, JetSubStructureUtils::EnergyCorrelator::pt_R);
253  JetSubStructureUtils::EnergyCorrelator ECF4(4, 1.0, JetSubStructureUtils::EnergyCorrelator::pt_R);
254  float ecf1 = ECF1.result(groomed_jet);
255  float ecf2 = ECF2.result(groomed_jet);
256  float ecf3 = ECF3.result(groomed_jet);
257  float ecf4 = ECF4.result(groomed_jet);
258  float c2 = -999;
259  float d2 = -999;
260 
261  if( ecf2 > 1e-8 ) {
262  c2 = ecf3 * ecf1 / pow( ecf2, 2.0 );
263  d2 = ecf3 * pow( ecf1, 3.0 ) / pow( ecf2, 3.0 );
264  }
265 
266  m_moments->dec_ECF1(*jet) = ecf1;
267  m_moments->dec_ECF2(*jet) = ecf2;
268  m_moments->dec_ECF3(*jet) = ecf3;
269  m_moments->dec_ECF4(*jet) = ecf4;
270  m_moments->dec_C2(*jet) = c2;
271  m_moments->dec_D2(*jet) = d2;
272 
273  }
274 
275  return StatusCode::SUCCESS;
276 }

◆ finalize()

StatusCode DerivationFramework::RCJetSubstructureAug::finalize ( )
overridevirtual

Definition at line 63 of file RCJetSubstructureAug.cxx.

64 {
65  ATH_MSG_VERBOSE("finalize() ...");
66  delete m_moments;
67  return StatusCode::SUCCESS;
68 }

◆ initialize()

StatusCode DerivationFramework::RCJetSubstructureAug::initialize ( )
overridevirtual

Definition at line 39 of file RCJetSubstructureAug.cxx.

40 {
41  ATH_MSG_VERBOSE("initialize() ...");
42  if (m_jetKey.key().empty()) {
43  ATH_MSG_FATAL("No jet collection provided for augmentation.");
44  return StatusCode::FAILURE;
45  }
46  ATH_CHECK( m_jetKey.initialize() );
47 
48  // Set up the text-parsing machinery for selectiong the jet directly according to user cuts
49  if (!m_selectionString.empty()) {
50  ATH_CHECK( initializeParser( m_selectionString ));
51  }
52 
53  // Init moment struct
54  m_moments = new moments_t(m_suffix);
55 
56  // Define the trimmer
57  m_trimmer = std::make_unique<fastjet::Filter>(fastjet::JetDefinition(fastjet::kt_algorithm, m_rclus), fastjet::SelectorPtFractionMin(m_ptfrac));
58  m_softdropper = std::make_unique<fastjet::contrib::SoftDrop>(m_beta, m_zcut, m_R0);
59 
60  return StatusCode::SUCCESS;
61 }

Member Data Documentation

◆ m_beta

Gaudi::Property<float> DerivationFramework::RCJetSubstructureAug::m_beta {this, "BetaSoft", 1. , "How much to consider angular dependence"}
private

Definition at line 54 of file RCJetSubstructureAug.h.

◆ m_ghostNames

Gaudi::Property< std::vector<std::string> > DerivationFramework::RCJetSubstructureAug::m_ghostNames { this, "GhostConstitNames", {"GhostLCTopo"}, "Names of the ghost constituents for substructure computation"}
private

Definition at line 41 of file RCJetSubstructureAug.h.

◆ m_grooming

StringProperty DerivationFramework::RCJetSubstructureAug::m_grooming { this, "Grooming", "", "Name of gromming technic to apply (Trimming or SofDrop)"}
private

Definition at line 47 of file RCJetSubstructureAug.h.

◆ m_jetKey

SG::ReadHandleKey< xAOD::JetContainer > DerivationFramework::RCJetSubstructureAug::m_jetKey { this, "JetContainerKey", ""}
private

Definition at line 61 of file RCJetSubstructureAug.h.

◆ m_moments

moments_t* DerivationFramework::RCJetSubstructureAug::m_moments
private

Definition at line 65 of file RCJetSubstructureAug.h.

◆ m_ptfrac

Gaudi::Property<float> DerivationFramework::RCJetSubstructureAug::m_ptfrac {this, "PtFracTrim", 0.03, "pT fraction for retaining subjets"}
private

Definition at line 52 of file RCJetSubstructureAug.h.

◆ m_R0

Gaudi::Property<float> DerivationFramework::RCJetSubstructureAug::m_R0 {this, "R0Soft", 1. , "Normalization of angular distance, usually the characteristic jet radius (default R0 = 1)"}
private

Definition at line 58 of file RCJetSubstructureAug.h.

◆ m_rclus

Gaudi::Property<float> DerivationFramework::RCJetSubstructureAug::m_rclus {this, "RClusTrim", 0.3 , "R for reclustering (0 for none)"}
private

Definition at line 50 of file RCJetSubstructureAug.h.

◆ m_selectionString

StringProperty DerivationFramework::RCJetSubstructureAug::m_selectionString { this, "SelectionString", "", "Selection to apply to jet"}
private

Definition at line 43 of file RCJetSubstructureAug.h.

◆ m_softdropper

std::unique_ptr<fastjet::contrib::SoftDrop> DerivationFramework::RCJetSubstructureAug::m_softdropper
private

Definition at line 69 of file RCJetSubstructureAug.h.

◆ m_streamName

StringProperty DerivationFramework::RCJetSubstructureAug::m_streamName { this, "StreamName", "", "Name of the stream" }
private

Definition at line 39 of file RCJetSubstructureAug.h.

◆ m_suffix

StringProperty DerivationFramework::RCJetSubstructureAug::m_suffix { this, "Suffix", "", "Suffix for variables"}
private

Definition at line 45 of file RCJetSubstructureAug.h.

◆ m_trimmer

std::unique_ptr<fastjet::Filter> DerivationFramework::RCJetSubstructureAug::m_trimmer
private

Definition at line 68 of file RCJetSubstructureAug.h.

◆ m_zcut

Gaudi::Property<float> DerivationFramework::RCJetSubstructureAug::m_zcut {this, "ZcutSoft", 1. , "pT fraction for retaining subjets"}
private

Definition at line 56 of file RCJetSubstructureAug.h.


The documentation for this class was generated from the following files:
DerivationFramework::RCJetSubstructureAug::m_trimmer
std::unique_ptr< fastjet::Filter > m_trimmer
Definition: RCJetSubstructureAug.h:68
ATH_MSG_FATAL
#define ATH_MSG_FATAL(x)
Definition: AthMsgStreamMacros.h:34
DerivationFramework::RCJetSubstructureAug::moments_t::dec_phi
SG::AuxElement::Decorator< float > dec_phi
Definition: RCJetSubstructureAug.h:103
python.PerfMonSerializer.p
def p
Definition: PerfMonSerializer.py:743
JetSubStructureUtils::KtSplittingScale
Definition: KtSplittingScale.h:11
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
xAOD::JetAlgorithmType::kt_algorithm
@ kt_algorithm
Definition: JetContainerInfo.h:31
SG::ReadHandle
Definition: StoreGate/StoreGate/ReadHandle.h:70
DerivationFramework::RCJetSubstructureAug::moments_t::dec_pT
SG::AuxElement::Decorator< float > dec_pT
Cluster jets informations decorators.
Definition: RCJetSubstructureAug.h:99
conifer::pow
constexpr int pow(int x)
Definition: conifer.h:20
DerivationFramework::RCJetSubstructureAug::moments_t::dec_Tau1
SG::AuxElement::Decorator< float > dec_Tau1
Nsubjetiness decorators.
Definition: RCJetSubstructureAug.h:78
M_PI
#define M_PI
Definition: ActiveFraction.h:11
JetSubStructureUtils::EnergyCorrelator
Definition: EnergyCorrelator.h:14
read_hist_ntuple.t
t
Definition: read_hist_ntuple.py:5
IDTPM::eTot
float eTot(const U &p)
Accessor utility function for getting the value of Energy.
Definition: TrackParametersHelper.h:126
ATH_MSG_VERBOSE
#define ATH_MSG_VERBOSE(x)
Definition: AthMsgStreamMacros.h:28
DerivationFramework::RCJetSubstructureAug::m_beta
Gaudi::Property< float > m_beta
Definition: RCJetSubstructureAug.h:55
DerivationFramework::RCJetSubstructureAug::m_grooming
StringProperty m_grooming
Definition: RCJetSubstructureAug.h:48
DerivationFramework::RCJetSubstructureAug::moments_t::dec_Tau2
SG::AuxElement::Decorator< float > dec_Tau2
Definition: RCJetSubstructureAug.h:79
xAOD::CaloCluster
CaloCluster_v1 CaloCluster
Define the latest version of the calorimeter cluster class.
Definition: Event/xAOD/xAODCaloEvent/xAODCaloEvent/CaloCluster.h:19
DerivationFramework::RCJetSubstructureAug::moments_t::dec_ECF2
SG::AuxElement::Decorator< float > dec_ECF2
Definition: RCJetSubstructureAug.h:92
DerivationFramework::RCJetSubstructureAug::moments_t::dec_C2
SG::AuxElement::Decorator< float > dec_C2
Definition: RCJetSubstructureAug.h:95
DerivationFramework::RCJetSubstructureAug::m_ghostNames
Gaudi::Property< std::vector< std::string > > m_ghostNames
Definition: RCJetSubstructureAug.h:42
DerivationFramework::RCJetSubstructureAug::moments_t::dec_Split12
SG::AuxElement::Decorator< float > dec_Split12
KtSplittingScale decorators.
Definition: RCJetSubstructureAug.h:86
xAOD::CaloCluster_v1
Description of a calorimeter cluster.
Definition: CaloCluster_v1.h:59
DerivationFramework::RCJetSubstructureAug::m_zcut
Gaudi::Property< float > m_zcut
Definition: RCJetSubstructureAug.h:57
jet
Definition: JetCalibTools_PlotJESFactors.cxx:23
DerivationFramework::RCJetSubstructureAug::moments_t::dec_timing
SG::AuxElement::Decorator< float > dec_timing
Timing information.
Definition: RCJetSubstructureAug.h:106
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
DerivationFramework::RCJetSubstructureAug::moments_t::dec_NConstits
SG::AuxElement::Decorator< float > dec_NConstits
Definition: RCJetSubstructureAug.h:101
jet::ClusterSequence
fastjet::ClusterSequence ClusterSequence
Definition: ClusterSequence.h:21
lumiFormat.i
int i
Definition: lumiFormat.py:92
beamspotman.n
n
Definition: beamspotman.py:731
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
DerivationFramework::RCJetSubstructureAug::moments_t::dec_Tau21
SG::AuxElement::Decorator< float > dec_Tau21
Definition: RCJetSubstructureAug.h:82
DerivationFramework::RCJetSubstructureAug::m_R0
Gaudi::Property< float > m_R0
Definition: RCJetSubstructureAug.h:59
DerivationFramework::RCJetSubstructureAug::m_suffix
StringProperty m_suffix
Definition: RCJetSubstructureAug.h:46
DerivationFramework::RCJetSubstructureAug::m_jetKey
SG::ReadHandleKey< xAOD::JetContainer > m_jetKey
Definition: RCJetSubstructureAug.h:61
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
DerivationFramework::RCJetSubstructureAug::m_softdropper
std::unique_ptr< fastjet::contrib::SoftDrop > m_softdropper
Definition: RCJetSubstructureAug.h:69
DerivationFramework::RCJetSubstructureAug::m_rclus
Gaudi::Property< float > m_rclus
Definition: RCJetSubstructureAug.h:51
DerivationFramework::RCJetSubstructureAug::m_ptfrac
Gaudi::Property< float > m_ptfrac
Definition: RCJetSubstructureAug.h:53
DerivationFramework::RCJetSubstructureAug::moments_t::dec_ECF4
SG::AuxElement::Decorator< float > dec_ECF4
Definition: RCJetSubstructureAug.h:94
compileRPVLLRates.c2
c2
Definition: compileRPVLLRates.py:361
DerivationFramework::RCJetSubstructureAug::m_moments
moments_t * m_moments
Definition: RCJetSubstructureAug.h:64
python.StandardJetMods.qw
qw
Definition: StandardJetMods.py:268
xAOD::JetAlgorithmType::antikt_algorithm
@ antikt_algorithm
Definition: JetContainerInfo.h:33
xAOD::Jet_v1
Class describing a jet.
Definition: Jet_v1.h:57
DerivationFramework::RCJetSubstructureAug::moments_t::dec_D2
SG::AuxElement::Decorator< float > dec_D2
Definition: RCJetSubstructureAug.h:96
DerivationFramework::RCJetSubstructureAug::moments_t::dec_Qw
SG::AuxElement::Decorator< float > dec_Qw
Qw decorator.
Definition: RCJetSubstructureAug.h:75
JetSubStructureUtils::Nsubjettiness
Definition: Nsubjettiness.h:14
DiTauMassTools::MaxHistStrategyV2::e
e
Definition: PhysicsAnalysis/TauID/DiTauMassTools/DiTauMassTools/HelperFunctions.h:26
CaloSwCorrections.time
def time(flags, cells_name, *args, **kw)
Definition: CaloSwCorrections.py:242
DerivationFramework::RCJetSubstructureAug::m_selectionString
StringProperty m_selectionString
Definition: RCJetSubstructureAug.h:44
DerivationFramework::RCJetSubstructureAug::moments_t::dec_Split34
SG::AuxElement::Decorator< float > dec_Split34
Definition: RCJetSubstructureAug.h:88
dq_defect_virtual_defect_validation.d2
d2
Definition: dq_defect_virtual_defect_validation.py:81
DerivationFramework::RCJetSubstructureAug::moments_t::dec_ECF1
SG::AuxElement::Decorator< float > dec_ECF1
Energy correlation factors decorators.
Definition: RCJetSubstructureAug.h:91
entries
double entries
Definition: listroot.cxx:49
JetSubStructureUtils::Qw
Definition: Qw.h:34
defineDB.jets
list jets
Definition: JetTagCalibration/share/defineDB.py:24
DerivationFramework::RCJetSubstructureAug::moments_t::dec_ECF3
SG::AuxElement::Decorator< float > dec_ECF3
Definition: RCJetSubstructureAug.h:93
DerivationFramework::RCJetSubstructureAug::moments_t::dec_Tau4
SG::AuxElement::Decorator< float > dec_Tau4
Definition: RCJetSubstructureAug.h:81
DerivationFramework::RCJetSubstructureAug::moments_t::dec_Tau32
SG::AuxElement::Decorator< float > dec_Tau32
Definition: RCJetSubstructureAug.h:83
dqBeamSpot.nEntries
int nEntries
Definition: dqBeamSpot.py:73
DerivationFramework::RCJetSubstructureAug::moments_t::dec_m
SG::AuxElement::Decorator< float > dec_m
Definition: RCJetSubstructureAug.h:100
DerivationFramework::RCJetSubstructureAug::moments_t::dec_Split23
SG::AuxElement::Decorator< float > dec_Split23
Definition: RCJetSubstructureAug.h:87
xAOD::CaloCluster_v1::e
virtual double e() const
The total energy of the particle.
Definition: CaloCluster_v1.cxx:265
DerivationFramework::RCJetSubstructureAug::moments_t::dec_Tau3
SG::AuxElement::Decorator< float > dec_Tau3
Definition: RCJetSubstructureAug.h:80
DerivationFramework::RCJetSubstructureAug::moments_t::dec_eta
SG::AuxElement::Decorator< float > dec_eta
Definition: RCJetSubstructureAug.h:102