File indexing completed on 2025-08-06 08:13:21
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef SCORRELATORUTILITIES_TRKINTERFACES_H
0012 #define SCORRELATORUTILITIES_TRKINTERFACES_H
0013
0014
0015 #include <string>
0016 #include <vector>
0017 #include <utility>
0018 #include <cassert>
0019
0020 #include <TF1.h>
0021
0022 #include <phool/phool.h>
0023 #include <phool/getClass.h>
0024 #include <phool/PHIODataNode.h>
0025 #include <phool/PHNodeIterator.h>
0026 #include <phool/PHCompositeNode.h>
0027
0028 #include <trackbase_historic/SvtxTrack.h>
0029 #include <trackbase_historic/SvtxTrackMap.h>
0030
0031 #include "Constants.h"
0032
0033
0034 using namespace std;
0035
0036
0037
0038 namespace SColdQcdCorrelatorAnalysis {
0039 namespace Interfaces {
0040
0041
0042
0043 TF1* GetSigmaDcaTF1(const string name, const vector<float> params, const pair<float, float> range);
0044 SvtxTrackMap* GetTrackMap(PHCompositeNode* topNode);
0045
0046 }
0047 }
0048
0049 #endif
0050
0051