Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SLambdaJetHunter.ana.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file SLambdaJetHunter.ana.h
1 // ----------------------------------------------------------------------------
2 // 'SLambdaJetHunter.ana.h'
3 // Derek Anderson
4 // 01.25.2024
5 //
6 // A minimal analysis module to find lambda-tagged
7 // jets in pythia events.
8 // ----------------------------------------------------------------------------
9 
10 #ifndef SLAMBDAJETHUNTER_ANA_H
11 #define SLAMBDAJETHUNTER_ANA_H
12 
13 // fastjet libraries
14 #include <fastjet/PseudoJet.hh>
15 #include <fastjet/JetDefinition.hh>
16 #include <fastjet/ClusterSequence.hh>
17 #include <fastjet/FunctionOfPseudoJet.hh>
18 
19 // make common namespaces implicit
20 using namespace std;
21 using namespace fastjet;
22 using namespace SColdQcdCorrelatorAnalysis::SCorrelatorUtilities;
23 
24 
25 
26 namespace SColdQcdCorrelatorAnalysis {
27 
28  // analysis methods ---------------------------------------------------------
29 
30  /* TODO will go here */
31 
32 } // end SColdQcdCorrelatorAnalysis namespace
33 
34 #endif
35 
36 // end ------------------------------------------------------------------------