Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:13:20

0001 /// ---------------------------------------------------------------------------
0002 /*! \file   FlowInterfaces.h
0003  *  \author Derek Anderson
0004  *  \date   03.06.2024
0005  *
0006  *  Particle flow-related interfaces.
0007  */
0008 /// ---------------------------------------------------------------------------
0009 
0010 #ifndef SCORRELATORUTILITIES_FLOWINTERFACES_H
0011 #define SCORRELATORUTILITIES_FLOWINTERFACES_H
0012 
0013 // c++ utilities
0014 #include <limits>
0015 #include <vector>
0016 #include <string>
0017 #include <cassert>
0018 // phool libraries
0019 #include <phool/phool.h>
0020 #include <phool/getClass.h>
0021 #include <phool/PHIODataNode.h>
0022 #include <phool/PHNodeIterator.h>
0023 #include <phool/PHCompositeNode.h>
0024 // particle flow libraries
0025 #include <particleflowreco/ParticleFlowElement.h>
0026 #include <particleflowreco/ParticleFlowElementContainer.h>
0027 
0028 // make common namespaces implicit
0029 using namespace std;
0030 
0031 
0032 
0033 namespace SColdQcdCorrelatorAnalysis {
0034   namespace Interfaces {
0035 
0036     // particle flow interfaces -----------------------------------------------
0037 
0038     ParticleFlowElementContainer*            GetFlowStore(PHCompositeNode* topNode);
0039     ParticleFlowElementContainer::ConstRange GetParticleFlowObjects(PHCompositeNode* topNode);
0040 
0041   }  // end Interfaces namespace
0042 }  // end SColdQcdCorrealtorAnalysis namespace
0043 
0044 #endif
0045 
0046 // end ------------------------------------------------------------------------