File indexing completed on 2025-08-06 08:13:20
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef SCORRELATORUTILITIES_FLOWINTERFACES_H
0011 #define SCORRELATORUTILITIES_FLOWINTERFACES_H
0012
0013
0014 #include <limits>
0015 #include <vector>
0016 #include <string>
0017 #include <cassert>
0018
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
0025 #include <particleflowreco/ParticleFlowElement.h>
0026 #include <particleflowreco/ParticleFlowElementContainer.h>
0027
0028
0029 using namespace std;
0030
0031
0032
0033 namespace SColdQcdCorrelatorAnalysis {
0034 namespace Interfaces {
0035
0036
0037
0038 ParticleFlowElementContainer* GetFlowStore(PHCompositeNode* topNode);
0039 ParticleFlowElementContainer::ConstRange GetParticleFlowObjects(PHCompositeNode* topNode);
0040
0041 }
0042 }
0043
0044 #endif
0045
0046