Skip to content
Snippets Groups Projects

Converting JetTrimming into a subclass of JetGroomer

Merged Teng Jian Khoo requested to merge khoo/athena:master-JetGroomer-JetTrimming into master
11 files
+ 198
214
Compare changes
  • Side-by-side
  • Inline
Files
11
@@ -19,13 +19,14 @@
#include "xAODEventInfo/EventInfo.h"
#include "StoreGate/ReadHandleKey.h"
#include "StoreGate/WriteHandleKey.h"
#include "JetInterface/IJetProvider.h"
#include "AsgTools/AsgTool.h"
#include "JetRec/PseudoJetContainer.h"
#include "JetRec/JetFromPseudojet.h"
#include "JetEDM/PseudoJetVector.h"
#include "fastjet/PseudoJet.hh"
#include "fastjet/AreaDefinition.hh"
@@ -61,7 +62,7 @@ protected:
SG::ReadHandleKey<PseudoJetContainer> m_inputPseudoJets {this, "InputPseudoJets", "inputpseudojet", "input constituents"};
/// used to build the key under which the final PJ will be stored in evtStore()
std::string m_finalPseudoJets;
SG::WriteHandleKey<PseudoJetVector> m_finalPseudoJets {this, "FinalPseudoJets_DONOTSET", "", "output pseudojets -- autoconfigured name"};
// Job options.
Gaudi::Property<std::string> m_jetalg {this, "JetAlgorithm", "AntiKt", "alg type : AntiKt, Kt, CA..."};
Loading